def test_role_newer_than_x_days_false(self): from consoleme.lib.aws import role_newer_than_x_days self.assertFalse(role_newer_than_x_days(ROLE, 1))
def test_role_newer_than_x_days(self): from consoleme.lib.aws import role_newer_than_x_days self.assertTrue(role_newer_than_x_days(ROLE, 30))