Tests for the configuration getters.

replay_error
Pedro de Oliveira Guedes 2022-01-18 08:29:19 -03:00
parent fb43dccea6
commit b8c78bef76
2 changed files with 12 additions and 2 deletions

View File

@ -11,3 +11,7 @@ Feature: The Replay API client
And a Log created
When the log method is called
Then this new log must be registered in the Replay Data Base
# Since this is a remote repository, it is impossible to test the config getters methods.
# They have to be runned inside a local repository wich contains Replay, so, unfortunatelly, they will not be tested, at least not for now.

View File

@ -32,3 +32,9 @@ def step_impl(context):
@then(u'this new log must be registered in the Replay Data Base')
def step_impl(context):
assert (context.client.sql("select * from logs")["data"][-1]["dtlogend"] == context.dt_log_end and context.log_return == "ok")
# ============================= CONFIGURATION GETTERS =============================
# Since this is a remote repository, it is impossible to test the config getters methods.
# They have to be runned inside a local repository wich contains Replay, so, unfortunatelly, they will not be tested, at least not for now.