""" Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. SPDX-License-Identifier: MIT-0 """ from datetime import datetime from test.unit.rules import BaseRuleTestCase from cfnlint.rules.resources.lmbd.DeprecatedRuntimeEol import ( DeprecatedRuntimeEol, # pylint: disable=E0401 ) class TestDeprecatedRuntimeEol(BaseRuleTestCase): """Test Lambda Deprecated Runtime usage""" def setUp(self): """Setup""" super(TestDeprecatedRuntimeEol, self).setUp() rule = DeprecatedRuntimeEol() self.collection.register(rule) self.collection.rules[rule.id].current_date = datetime(2019, 6, 29) def test_file_positive(self): """Test Positive""" self.helper_file_positive() def test_file_negative(self): """Test failure""" self.helper_file_negative( "test/fixtures/templates/bad/resources/lambda/runtimes.yaml", 2 )