aboutsummaryrefslogtreecommitdiff
path: root/flowsample/tests
diff options
context:
space:
mode:
Diffstat (limited to 'flowsample/tests')
-rw-r--r--flowsample/tests/test_bar.py6
-rw-r--r--flowsample/tests/test_baz.py6
-rw-r--r--flowsample/tests/test_foo.py6
3 files changed, 18 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')
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')
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')