aboutsummaryrefslogtreecommitdiff
path: root/flowsample/tests/test_baz.py
blob: 2ca30c3e4ebc2b0b6ad9cb3416b8a0f0112de80f (plain) (blame)
1
2
3
4
5
6
import unittest
from flowsample import baz

class TestBaz(unittest.TestCase):
    def test_baz_returns_baz(self):
        self.assertEquals(baz.baz(), 'baz')