コード例 #1
0
ファイル: tests.py プロジェクト: lokespotify/mockaccino
    def test_mix_any_matcher_with_exact_value_fails_on_different_value(self):
        '''
        Mixed any matcher and exact value parameter expectation must fail
        if exact value is different
        '''
        mock = mockaccino.create_mock(self.MockedClass)

        mock.method_with_two_parameters(1, any(basestring)).always()

        mockaccino.replay(mock)

        mock.method_with_two_parameters(2, "a")
コード例 #2
0
ファイル: tests.py プロジェクト: lokespotify/mockaccino
    def test_matcher_any_int(self):
        '''
        The "any" type matcher should also work for primitive types
        '''
        mock = mockaccino.create_mock(self.MockedClass)

        mock.method_with_parameter(any(int)).always()

        mockaccino.replay(mock)

        mock.method_with_parameter(0)
        mock.method_with_parameter(1)
コード例 #3
0
ファイル: tests.py プロジェクト: lokespotify/mockaccino
    def test_mix_any_matcher_with_exact_value(self):
        '''
        Any matcher and exact value parameter expectations can be mixed
        '''
        mock = mockaccino.create_mock(self.MockedClass)

        mock.method_with_two_parameters(1, any(basestring)).always()

        mockaccino.replay(mock)

        mock.method_with_two_parameters(1, "a")
        mock.method_with_two_parameters(1, "cat")
        mock.method_with_two_parameters(1, "dog")
コード例 #4
0
ファイル: tests.py プロジェクト: lokespotify/mockaccino
    def test_matcher_any_fails_on_different_class(self):
        '''
        The "any" type matcher should not match values with different classes
        '''
        def function_to_mock(self, cls):
            pass

        mock = mockaccino.create_mock(function_to_mock)
        mock(any(self.MockedClass))

        mockaccino.replay(mock)

        mock("not a mocked class!")
コード例 #5
0
ファイル: tests.py プロジェクト: lokespotify/mockaccino
    def test_matcher_any_class(self):
        '''
        Tests "any" type matcher for classes
        '''
        def function_to_mock(self, cls):
            pass

        mock = mockaccino.create_mock(function_to_mock)
        mock(any(self.MockedClass)).times(2)

        mockaccino.replay(mock)

        mock(self.MockedClass())
        mock(self.MockedClass())