Exemplo n.º 1
0
    def test_1_thing(self, mock_thing):
        obj = Foo()

        # BEGIN
        # END

        self.assertEqual(obj.thing(), 'xyzzy')
Exemplo n.º 2
0
    def test_1_thing(self, mock_thing):
        obj = Foo()

        # BEGIN
        mock_thing.return_value = 'xyzzy'
        # END

        self.assertEqual(obj.thing(), 'xyzzy')