Skip to content

Commit

Permalink
Debugging
Browse files Browse the repository at this point in the history
  • Loading branch information
josemiguel-rodrigueznaranjo committed Aug 2, 2024
1 parent 01b4b7a commit 34f6c7f
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions toolium/test/utils/test_dataset_map_param_context.py
Original file line number Diff line number Diff line change
Expand Up @@ -68,6 +68,9 @@ class Context(object):
context.feature_storage = {"feature_storage_key": "feature storage entry value"}
dataset.behave_context = context

print(f'{context.storage=}')
print(f'{context.feature_storage=}')

result_st = map_param("[CONTEXT:feature_storage_key]")
expected_st = "feature storage entry value"
assert expected_st == result_st
Expand All @@ -85,6 +88,9 @@ class Context(object):
context.feature_storage = {"storage_key": "feature storage entry value"}
dataset.behave_context = context

print(f'{context.storage=}')
print(f'{context.feature_storage=}')

result_st = map_param("[CONTEXT:storage_key]")
expected_st = "storage entry value"
assert expected_st == result_st
Expand Down

0 comments on commit 34f6c7f

Please sign in to comment.