Fixed travis to run lint instead of pep8 and moved test reqs to own file

This commit is contained in:
Kevin Fronczak
2017-03-10 14:33:51 -05:00
parent dad1aec874
commit afa7b2259f
5 changed files with 10 additions and 7 deletions
+3 -1
View File
@@ -7,7 +7,7 @@ import constants as const
USERNAME = 'foobar'
PASSWORD = 'deadbeef'
class TestBlinkSystem(unittest.TestCase):
class TestBlinkSetup(unittest.TestCase):
"""Test the Blink class in blinkpy."""
def test_initialization(self):
"""Verify we can initialize blink."""
@@ -38,4 +38,6 @@ class TestBlinkSystem(unittest.TestCase):
blink.login()
self.assertEqual(blink._username, USERNAME)
self.assertEqual(blink._password, PASSWORD)
# NEXT NEED ACTUAL REQUEST TESTS