9 lines
199 B
Python
9 lines
199 B
Python
#!/usr/bin/env python
|
|
# -*- coding: UTF-8 -*-
|
|
|
|
from stacosys.service.rssfeed import Rss
|
|
|
|
|
|
def test_configure():
|
|
rss = Rss()
|
|
rss.configure("comments.xml", "blog", "http", "blog.mydomain.com")
|