class FilterConsonantEndingTestCase(unittest.TestCase):

    def test_filter_none(self):
        words = ['foo', 'neato']
        res = [w for w in words if strain.filter_consonant_ending(w)]