class FilterVowelEndingTestCase(unittest.TestCase):

    def test_filter_none(self):
        words = ['bar', 'baz']
        res = [w for w in words if strain.filter_vowel_ending(w)]