aboutsummaryrefslogtreecommitdiff
path: root/flowsample/tests/test_foo.py
blob: 977ad0fe2ce54eafb2c117af1fcaeeefcff567c9 (plain) (blame)
1
2
3
4
5
6
import unittest
from flowsample import foo

class TestFoo(unittest.TestCase):
    def test_foo_returns_foo(self):
        self.assertEquals(foo.foo(), 'foo')