We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 547065c commit 8e321ccCopy full SHA for 8e321cc
unicorn_properties/tests/unit/conftest.py
@@ -6,7 +6,7 @@
6
import boto3
7
8
import pytest
9
-from moto import mock_dynamodb, mock_events
+from moto import mock_dynamodb, mock_events, mock_stepfunctions
10
11
12
@pytest.fixture(scope='function')
@@ -28,3 +28,9 @@ def dynamodb(aws_credentials):
28
def eventbridge(aws_credentials):
29
with mock_events():
30
yield boto3.client('events', region_name='ap-southeast-2')
31
+
32
33
+@pytest.fixture(scope='function')
34
+def stepfunction(aws_credentials):
35
+ with mock_stepfunctions():
36
+ yield boto3.client("stepfunctions")
0 commit comments