Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
"""Tests the query that performs the arithmetic for the calculator CLI app."""

import pytest

from calculation_query import CalculationQuery
Expand Down
2 changes: 2 additions & 0 deletions python/calculator_cli_app/test/test_application.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
"""Tests the calculator CLI application entry point."""

import pytest

from application import Application
Expand Down
2 changes: 2 additions & 0 deletions python/fibonacci_sequence/test/test_application.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
"""Tests the Fibonacci sequence generator."""

from application import fibonacci


Expand Down
2 changes: 2 additions & 0 deletions python/fizzbuzz/test/test_application.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
"""Tests every FizzBuzz implementation variant."""

from collections.abc import Callable

from application import (
Expand Down
2 changes: 2 additions & 0 deletions python/letter_matching_inspection/test/test_application.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
"""Tests the letter-matching inspection application."""

from application import Application


Expand Down
2 changes: 2 additions & 0 deletions python/nabeatsu/test/test_application.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
"""Tests every Nabeatsu implementation variant."""

from collections.abc import Callable

from application import go_crazy_in_if, go_crazy_in_ternary
Expand Down