From 4eb8f58912a479c9e8a6aef01d18332cc7807899 Mon Sep 17 00:00:00 2001 From: Joseph Hunkeler Date: Wed, 2 Mar 2016 13:00:43 -0500 Subject: Added tests --- flowsample/tests/test_foo.py | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 flowsample/tests/test_foo.py (limited to 'flowsample/tests/test_foo.py') diff --git a/flowsample/tests/test_foo.py b/flowsample/tests/test_foo.py new file mode 100644 index 0000000..977ad0f --- /dev/null +++ b/flowsample/tests/test_foo.py @@ -0,0 +1,6 @@ +import unittest +from flowsample import foo + +class TestFoo(unittest.TestCase): + def test_foo_returns_foo(self): + self.assertEquals(foo.foo(), 'foo') -- cgit