Start new tests

run_tests will collect and run the tests on python 2.6+ (need to test 2.5)
without nose.
This commit is contained in:
Ian Cordasco 2013-07-04 13:47:01 -04:00
parent 3fbfd0b2d7
commit 1e59072600
2 changed files with 40 additions and 0 deletions

View file

@ -0,0 +1,8 @@
from flake8 import engine
import unittest
class TestEngine(unittest.TestCase):
def test_get_style_guide(self):
g = engine.get_style_guide()
self.assertTrue(isinstance(g, engine.StyleGuide))