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_bar.py | 6 ++++++ flowsample/tests/test_baz.py | 6 ++++++ flowsample/tests/test_foo.py | 6 ++++++ 3 files changed, 18 insertions(+) create mode 100644 flowsample/tests/test_bar.py create mode 100644 flowsample/tests/test_baz.py create mode 100644 flowsample/tests/test_foo.py 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') -- cgit