def test_build_pattern(self):

        # short term
        build('en')

        hyphenate = build('en_US')
        assert hyphenate('Airplane') == ['Air', 'plane']
    def test_build_pattern(self):

        # short term
        build('en')

        hyphenate = build('en_US')
        assert hyphenate('Airplane') == ['Air', 'plane']
    def test_hyphenation_build(self):

        # short term
        build('en')

        hyphenate = build('en_US')
        self.assertEqual(hyphenate('Airplane'), ['Air', 'plane'])