Coverage for tests/test_main.py: 100%
2 statements
« prev ^ index » next coverage.py v7.8.0, created at 2025-05-14 21:23 +0000
« prev ^ index » next coverage.py v7.8.0, created at 2025-05-14 21:23 +0000
1"""
2Module for testing the main module.
3"""
6def test_example():
7 """
8 Example test function.
10 This function tests that 1 + 1 equals 2.
12 Raises:
13 AssertionError: If the test fails.
15 """
16 assert 1 + 1 == 2