add configfiles
This commit is contained in:
1
src/config/__init__.py
Normal file
1
src/config/__init__.py
Normal file
@@ -0,0 +1 @@
|
||||
__author__ = 'dev'
|
||||
1
src/config/config.py
Normal file
1
src/config/config.py
Normal file
@@ -0,0 +1 @@
|
||||
__author__ = 'dev'
|
||||
1
src/feed/__init__.py
Normal file
1
src/feed/__init__.py
Normal file
@@ -0,0 +1 @@
|
||||
__author__ = 'dev'
|
||||
1
src/feed/feed.py
Normal file
1
src/feed/feed.py
Normal file
@@ -0,0 +1 @@
|
||||
__author__ = 'dev'
|
||||
0
testenv/testfeeds/podcast/sbk-config.json
Normal file
0
testenv/testfeeds/podcast/sbk-config.json
Normal file
1
testenv/tests/config/__init__.py
Normal file
1
testenv/tests/config/__init__.py
Normal file
@@ -0,0 +1 @@
|
||||
__author__ = 'dev'
|
||||
12
testenv/tests/config/testconfig.py
Normal file
12
testenv/tests/config/testconfig.py
Normal file
@@ -0,0 +1,12 @@
|
||||
__author__ = 'dev'
|
||||
|
||||
import unittest
|
||||
|
||||
|
||||
class MyTestCase(unittest.TestCase):
|
||||
def test_something(self):
|
||||
self.assertEqual(True, False)
|
||||
|
||||
|
||||
if __name__ == '__main__':
|
||||
unittest.main()
|
||||
1
testenv/tests/feed/__init__.py
Normal file
1
testenv/tests/feed/__init__.py
Normal file
@@ -0,0 +1 @@
|
||||
__author__ = 'dev'
|
||||
26
testenv/tests/feed/testfeed.py
Normal file
26
testenv/tests/feed/testfeed.py
Normal file
@@ -0,0 +1,26 @@
|
||||
__author__ = 'dev'
|
||||
|
||||
import unittest
|
||||
from feed.feed import Feed
|
||||
|
||||
|
||||
class TestFeed(unittest.TestCase):
|
||||
|
||||
def test_load_new_feed(self, url):
|
||||
self.assertTrue(False)
|
||||
|
||||
def test_load_existing_feed(self, path):
|
||||
self.assertTrue(False)
|
||||
|
||||
def test_load_feed(self, path):
|
||||
self.assertTrue(False)
|
||||
|
||||
def test_setup_feed(self, name, url, feed_type):
|
||||
self.assertTrue(False)
|
||||
|
||||
def test_setup_feed(self, name, url, feed_type):
|
||||
self.assertTrue(False)
|
||||
|
||||
|
||||
if __name__ == '__main__':
|
||||
unittest.main()
|
||||
Reference in New Issue
Block a user