aboutsummaryrefslogtreecommitdiff
path: root/flowsample/tests/test_bar.py
diff options
context:
space:
mode:
Diffstat (limited to 'flowsample/tests/test_bar.py')
-rw-r--r--flowsample/tests/test_bar.py6
1 files changed, 6 insertions, 0 deletions
diff --git a/flowsample/tests/test_bar.py b/flowsample/tests/test_bar.py
new file mode 100644
index 0000000..bd87b6a
--- /dev/null
+++ b/flowsample/tests/test_bar.py
@@ -0,0 +1,6 @@
+import unittest
+from flowsample import bar
+
+class TestBar(unittest.TestCase):
+ def test_bar_returns_bar(self):
+ self.assertEquals(bar.bar(), 'bar')