We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 318d736 commit b24ed1aCopy full SHA for b24ed1a
tests/features/steps/steps.py
@@ -10,6 +10,7 @@
10
from openfeature.provider.in_memory_provider import InMemoryProvider
11
from tests.features.data import IN_MEMORY_FLAGS
12
13
+
14
# Common step definitions
15
16
@@ -30,6 +31,12 @@ def step_impl(context):
30
31
context.client = get_client()
32
33
34
+@given("a provider is registered")
35
+def step_impl(context):
36
+ set_provider(InMemoryProvider(IN_MEMORY_FLAGS))
37
+ context.client = get_client()
38
39
40
@when(
41
'a {flag_type} flag with key "{key}" is evaluated with details and default value '
42
'"{default_value}"'
0 commit comments