def test_EffectMatcher_apply_is_working_properly(self):
        """testing if the EffectMatcher.apply() is working properly
        """
        ed_list = List('24')
        event = Event({})
        event.transition = Effect()
        ed_list.append(event)

        e = EffectMatcher()

        test_line = 'EFFECTS NAME IS Constant Power'
        e.apply(ed_list, test_line)

        self.assertEqual(
            'Constant Power',
            event.transition.effect
        )

        test_line = 'EFFECTS NAME IS CROSS DISSOLVE'
        e.apply(ed_list, test_line)

        self.assertEqual(
            'CROSS DISSOLVE',
            event.transition.effect
        )