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