def test__stack_updatable_limit_exceeded_does_not_exist(self):
     cfno = AWSCFNOutput()
     cfn = boto.connect_cloudformation(
         aws_access_key_id='access',
         aws_secret_access_key='secret'
     )
     assert_equals(False, cfno._stack_updatable(cfn, 'test'))
 def test__stack_updatable_exists(self):
     cfno = AWSCFNOutput()
     cfn = boto.connect_cloudformation(
         aws_access_key_id='access',
         aws_secret_access_key='secret'
     )
     assert_equals(True, cfno._stack_updatable(cfn, 'test'))