diff options
author | Joseph Hunkeler <jhunkeler@gmail.com> | 2016-03-02 13:01:11 -0500 |
---|---|---|
committer | Joseph Hunkeler <jhunkeler@gmail.com> | 2016-03-02 13:01:11 -0500 |
commit | bbf8a94fa6af28191ff4abf87edf1b36e9ff8964 (patch) | |
tree | cec661e0998aa21cccbe5a5833a62827764b9a81 /flowsample/tests | |
parent | d318da95cf57d9ce89887080bb6b6151e6ebde04 (diff) | |
parent | 4eb8f58912a479c9e8a6aef01d18332cc7807899 (diff) | |
download | flowsample-master.tar.gz |
Diffstat (limited to 'flowsample/tests')
-rw-r--r-- | flowsample/tests/test_bar.py | 6 | ||||
-rw-r--r-- | flowsample/tests/test_baz.py | 6 | ||||
-rw-r--r-- | flowsample/tests/test_foo.py | 6 |
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') |