More streamlining of tests

This commit is contained in:
Ric Harvey
2017-01-04 14:56:45 +00:00
parent d4014323c4
commit 9c7c30a9ef
3 changed files with 2 additions and 4 deletions

View File

@@ -11,9 +11,6 @@ install:
before_script: before_script:
- pip install -r requirements.txt - pip install -r requirements.txt
- pip install mock
- pip install requests
- pip install feedparser
script: script:
- docker ps - docker ps

View File

@@ -0,0 +1 @@
requests

View File

@@ -9,7 +9,7 @@ class ContentTest(unittest.TestCase):
def setUp(self): def setUp(self):
''' Create some starter data to be used in tests ''' ''' Create some starter data to be used in tests '''
self.domain = "http://127.0.0.1" self.domain = "http://127.0.0.1"
self.search_string = "flibble" self.search_string = "Version"
def tearDown(self): def tearDown(self):
''' Destroy starter data ''' ''' Destroy starter data '''