Example #1
0
    def test_event__load(self):
        '''
        Check that the load event gets called
        '''
        Mediator._load = mock.MagicMock()

        Mediator.load()

        Mediator._load.assert_called_once_with()
Example #2
0
    def test_event__unload(self):
        Mediator._load = mock.MagicMock()

        Mediator.load()

        Mediator._load.assert_called_once_with()