Coverage report: 86%

Files Functions Classes

coverage.py v7.10.7, created at 2025-09-28 09:59 +0200

File function statements missing excluded coverage
art_studio_tz/__init__.py (no function) 4 0 0 100%
art_studio_tz/api.py Quote.from_dict 1 0 0 100%
art_studio_tz/api.py Quote.to_dict 1 0 0 100%
art_studio_tz/api.py QuoteDB.__init__ 2 0 0 100%
art_studio_tz/api.py QuoteDB.add_quote 7 0 0 100%
art_studio_tz/api.py QuoteDB.get_quote 4 0 0 100%
art_studio_tz/api.py QuoteDB.list_quote 4 0 0 100%
art_studio_tz/api.py QuoteDB.count 1 0 0 100%
art_studio_tz/api.py QuoteDB.update_quote 4 0 0 100%
art_studio_tz/api.py QuoteDB.start 19 19 0 0%
art_studio_tz/api.py QuoteDB.delete_quote 4 0 0 100%
art_studio_tz/api.py QuoteDB.delete_all 1 0 0 100%
art_studio_tz/api.py QuoteDB.path 1 1 0 0%
art_studio_tz/api.py QuoteDBsql.__init__ 1 0 0 100%
art_studio_tz/api.py QuoteDBsql.add_quote_sql 5 0 0 100%
art_studio_tz/api.py QuoteDBsql.list_quote 4 0 0 100%
art_studio_tz/api.py QuoteDBsql.get_some_quotes 15 3 0 80%
art_studio_tz/api.py QuoteDBsql.get_latest 2 0 0 100%
art_studio_tz/api.py QuoteDBsql.delete_all 1 0 0 100%
art_studio_tz/api.py (no function) 45 0 0 100%
art_studio_tz/cli.py version 1 0 0 100%
art_studio_tz/cli.py start 5 2 0 60%
art_studio_tz/cli.py list_quote 13 0 0 100%
art_studio_tz/cli.py add 3 0 0 100%
art_studio_tz/cli.py delete 5 0 0 100%
art_studio_tz/cli.py update 6 2 0 67%
art_studio_tz/cli.py config 2 0 0 100%
art_studio_tz/cli.py count 2 0 0 100%
art_studio_tz/cli.py get 5 2 0 60%
art_studio_tz/cli.py list_sql 13 13 0 0%
art_studio_tz/cli.py delete_all_sql 5 5 0 0%
art_studio_tz/cli.py list_latest_5 13 13 0 0%
art_studio_tz/cli.py main 2 1 0 50%
art_studio_tz/cli.py get_path 5 5 0 0%
art_studio_tz/cli.py quote_db 3 3 0 0%
art_studio_tz/cli.py quote_db_sql 5 5 0 0%
art_studio_tz/cli.py (no function) 42 0 0 100%
art_studio_tz/db.py DB.__init__ 7 0 0 100%
art_studio_tz/db.py DB._read_all_rows 5 0 0 100%
art_studio_tz/db.py DB.create 9 0 0 100%
art_studio_tz/db.py DB.read 5 1 0 80%
art_studio_tz/db.py DB.read_all 1 0 0 100%
art_studio_tz/db.py DB.update 13 0 0 100%
art_studio_tz/db.py DB.delete 5 0 0 100%
art_studio_tz/db.py DB.delete_all 3 0 0 100%
art_studio_tz/db.py DB.count 1 0 0 100%
art_studio_tz/db.py (no function) 13 0 0 100%
art_studio_tz/db_sql.py DBsql.__init__ 4 4 0 0%
art_studio_tz/db_sql.py DBsql._execute 11 4 0 64%
art_studio_tz/db_sql.py DBsql.create 2 0 0 100%
art_studio_tz/db_sql.py DBsql.create._create 3 0 0 100%
art_studio_tz/db_sql.py DBsql.read_all 2 0 0 100%
art_studio_tz/db_sql.py DBsql.read_all._read_all 2 0 0 100%
art_studio_tz/db_sql.py DBsql.delete_all 2 2 0 0%
art_studio_tz/db_sql.py DBsql.delete_all._delete_all 2 2 0 0%
art_studio_tz/db_sql.py DBsql.get_latest 2 0 0 100%
art_studio_tz/db_sql.py DBsql.get_latest._latest 2 0 0 100%
art_studio_tz/db_sql.py (no function) 18 0 0 100%
tests/test_api.py quote_db 4 0 0 100%
tests/test_api.py TestQuote.test_quote_creation 5 0 0 100%
tests/test_api.py TestQuote.test_quote_default_values 5 0 0 100%
tests/test_api.py TestQuote.test_quote_comparison_ignores_id 3 0 0 100%
tests/test_api.py TestQuote.test_quote_different_objects 3 0 0 100%
tests/test_api.py TestQuote.test_to_dict 4 0 0 100%
tests/test_api.py TestQuote.test_from_dict 7 0 0 100%
tests/test_api.py TestQuoteDB.setup 5 0 0 100%
tests/test_api.py TestQuoteDB.test_add_quote_returns_id 8 0 0 100%
tests/test_api.py TestQuoteDB.test_add_quote_missing_text_raises 3 0 0 100%
tests/test_api.py TestQuoteDB.test_get_quote_returns_quote 5 0 0 100%
tests/test_api.py TestQuoteDB.test_get_quote_invalid_id_raises 3 0 0 100%
tests/test_api.py TestQuoteDB.test_list_quote_filters_by_author 3 0 0 100%
tests/test_api.py TestQuoteDB.test_count_calls_db_count 2 0 0 100%
tests/test_api.py TestQuoteDB.test_update_quote_calls_db_update 3 0 0 100%
tests/test_api.py TestQuoteDB.test_update_quote_invalid_id_raises 4 0 0 100%
tests/test_api.py TestQuoteDB.test_delete_quote_calls_db_delete 2 0 0 100%
tests/test_api.py TestQuoteDB.test_delete_quote_invalid_id_raises 3 0 0 100%
tests/test_api.py TestQuoteDB.test_delete_all_calls_db_delete_all 2 0 0 100%
tests/test_api.py TestQuoteDBsql.setup 5 0 0 100%
tests/test_api.py TestQuoteDBsql.test_add_quote_sql 3 0 0 100%
tests/test_api.py TestQuoteDBsql.test_add_quote_sql_missing_text_raises 3 0 0 100%
tests/test_api.py TestQuoteDBsql.test_list_quote 6 0 0 100%
tests/test_api.py TestQuoteDBsql.test_get_some_quotes 7 0 0 100%
tests/test_api.py TestQuoteDBsql.test_get_latest 6 0 0 100%
tests/test_api.py TestQuoteDBsql.test_delete_all 2 0 0 100%
tests/test_api.py test_empty 1 0 0 100%
tests/test_api.py (no function) 49 0 0 100%
tests/test_cli.py mock_quote_db 4 0 0 100%
tests/test_cli.py mock_quote_db_sql 4 0 0 100%
tests/test_cli.py test_version 3 0 0 100%
tests/test_cli.py test_add 6 0 0 100%
tests/test_cli.py test_delete_valid 3 0 0 100%
tests/test_cli.py test_delete_invalid 4 0 0 100%
tests/test_cli.py test_list_quote 10 0 0 100%
tests/test_cli.py test_update 6 0 0 100%
tests/test_cli.py test_start 3 0 0 100%
tests/test_cli.py test_sql_get 3 0 0 100%
tests/test_cli.py test_sql_delete_all 5 5 0 0%
tests/test_cli.py test_sql_list_latest_5 7 7 0 0%
tests/test_cli.py test_sql_list_latest_5.FakeQuote.__init__ 4 4 0 0%
tests/test_cli.py test_config 3 0 0 100%
tests/test_cli.py test_count 4 0 0 100%
tests/test_cli.py (no function) 25 0 0 100%
tests/test_db.py db 1 0 0 100%
tests/test_db.py test_create_and_read 7 0 0 100%
tests/test_db.py test_read_all 6 0 0 100%
tests/test_db.py test_update 5 0 0 100%
tests/test_db.py test_delete 6 0 0 100%
tests/test_db.py test_delete_all 5 0 0 100%
tests/test_db.py test_count 3 0 0 100%
tests/test_db.py test_update_non_existing 4 0 0 100%
tests/test_db.py test_delete_non_existing 3 0 0 100%
tests/test_db.py (no function) 15 0 0 100%
tests/test_db_sql.py dbsql 6 0 0 100%
tests/test_db_sql.py dbsql.TestDBsql.__init__ 2 0 0 100%
tests/test_db_sql.py test_create_and_read_all 7 0 0 100%
tests/test_db_sql.py test_get_latest 8 0 0 100%
tests/test_db_sql.py test_create_multiple 7 0 0 100%
tests/test_db_sql.py test_get_latest_default_number 7 0 0 100%
tests/test_db_sql.py (no function) 12 0 0 100%
Total   722 103 0 86%

No items found using the specified filter.