diff options
Diffstat (limited to 'flowsample/tests/test_baz.py')
-rw-r--r-- | flowsample/tests/test_baz.py | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/flowsample/tests/test_baz.py b/flowsample/tests/test_baz.py new file mode 100644 index 0000000..2ca30c3 --- /dev/null +++ b/flowsample/tests/test_baz.py @@ -0,0 +1,6 @@ +import unittest +from flowsample import baz + +class TestBaz(unittest.TestCase): + def test_baz_returns_baz(self): + self.assertEquals(baz.baz(), 'baz') |