import aws_cdk as core import aws_cdk.assertions as assertions from lf_dr_cdk.lf_dr_cdk_stack import LfDrCdkStack # example tests. To run these tests, uncomment this file along with the example # resource in lf_dr_cdk/lf_dr_cdk_stack.py def test_sqs_queue_created(): app = core.App() stack = LfDrCdkStack(app, "lf-dr-cdk") template = assertions.Template.from_stack(stack) # template.has_resource_properties("AWS::SQS::Queue", { # "VisibilityTimeout": 300 # })