2023-11-26 17:51:51 +01:00
|
|
|
#!/usr/bin/env python
|
2022-11-29 15:54:11 +01:00
|
|
|
# -*- coding: UTF-8 -*-
|
|
|
|
|
|
2024-04-12 21:35:15 +02:00
|
|
|
from stacosys.service.rssfeed import Rss
|
2022-11-29 15:54:11 +01:00
|
|
|
|
2022-12-02 08:59:55 +01:00
|
|
|
|
2022-11-29 15:54:11 +01:00
|
|
|
def test_configure():
|
2024-04-12 21:35:15 +02:00
|
|
|
rss = Rss()
|
2022-12-02 08:59:55 +01:00
|
|
|
rss.configure("comments.xml", "blog", "http", "blog.mydomain.com")
|