Exemple #1
0
 def test_termination_policy_returns_default(self):
     strategy = InPlace()
     assert_equals(strategy.termination_policy(), ['Default'])
Exemple #2
0
 def test_should_prompt_delete_false(self):
     strategy = InPlace()
     assert_equals(strategy.should_prompt('delete'), False)
Exemple #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)
Exemple #4
0
 def test_should_update_true(self):
     strategy = InPlace()
     assert_equals(strategy.should_update('update'), True)