Ejemplo n.º 1
0
 def test_termination_policy_returns_default(self):
     strategy = InPlace()
     assert_equals(strategy.termination_policy(), ['Default'])
Ejemplo n.º 2
0
 def test_should_prompt_delete_false(self):
     strategy = InPlace()
     assert_equals(strategy.should_prompt('delete'), False)
Ejemplo n.º 3
0
 def test_allowed_update_should_not_match_invalid(self):
     strategy = InPlace()
     match = strategy.allowed_update()
     matcher = 'anything, really, nothing will match'
     assert_equals(match.match(matcher), None)
Ejemplo n.º 4
0
 def test_should_update_true(self):
     strategy = InPlace()
     assert_equals(strategy.should_update('update'), True)