diff --git a/tests/tests_integration/test_get_rates.py b/tests/tests_integration/test_get_rates.py index 6920bf5..f12def2 100644 --- a/tests/tests_integration/test_get_rates.py +++ b/tests/tests_integration/test_get_rates.py @@ -25,6 +25,8 @@ def test_get_rates_for_hardcoded_case_returns_expected_output(): When commented, the test should always pass to not bother automated test runs. """ + + """ # Unstring this to activate test runner = CliRunner() with runner.isolated_filesystem(): @@ -47,6 +49,9 @@ def test_get_rates_for_hardcoded_case_returns_expected_output(): # Write code here to read output file and compare it against expected # output assert False + """ + + assert True def test_get_rates_dry_run_always_returns_42_as_rates(): @@ -64,9 +69,7 @@ def test_get_rates_dry_run_always_returns_42_as_rates(): ).date() some_random_currencies = [ - # Get the last 3 right characters, which are the actual - # currency code - str(some_currency)[-3:] + some_currency.value for some_currency in random.sample(population=list(Currency), k=3) ]