Skip to content

Commit

Permalink
coverage
Browse files Browse the repository at this point in the history
  • Loading branch information
BernhardKoschicek committed Oct 23, 2023
1 parent d3da02b commit f8e3345
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions tests/test_api.py
Original file line number Diff line number Diff line change
Expand Up @@ -86,6 +86,9 @@ def test_api(self) -> None:

rv = self.app.get(url_for('api_03.backend_detail')).get_json()
assert bool(rv['version'] == app.config['VERSION'])
rv = self.app.get(
url_for('api_03.backend_detail', download=True)).get_json()
assert bool(rv['version'] == app.config['VERSION'])

rv = self.app.get(url_for('api_03.system_class_count')).get_json()
assert bool(rv['person'])
Expand Down

0 comments on commit f8e3345

Please sign in to comment.