def test_GetDefaultArgpath_2(self): """Test SConsArguments.Importer.GetDefaultArgpath() using mocks""" def init_argpath(): tested._defaultArgpath = ['bar'] with mock.patch('SConsArguments.Importer._initDefaultArgpath', side_effect=init_argpath) as m: tested._defaultArgpath = None self.assertEqual(tested.GetDefaultArgpath(), ['bar']) m.assert_called_once_with()
def test_GetDefaultArgpath_1(self): """Test SConsArguments.Importer.GetDefaultArgpath()""" tested._defaultArgpath = 'asd' self.assertEqual(tested.GetDefaultArgpath(), 'asd')