File tree Expand file tree Collapse file tree 2 files changed +1
-21
lines changed Expand file tree Collapse file tree 2 files changed +1
-21
lines changed Original file line number Diff line number Diff line change @@ -16,7 +16,7 @@ class OAuthConfig(ABC):
1616 """
1717
1818 @abstractmethod
19- def version (self ):
19+ def version (self ): # pragma: no cover
2020 """
2121 Returns the OAuth version.
2222
Original file line number Diff line number Diff line change @@ -29,26 +29,6 @@ def test_oauth_config_abstract_version_method():
2929 OAuthConfig ()
3030
3131
32- def test_concrete_config_version_method (concrete_config ):
33- # Arrange
34-
35- # Act
36- result = concrete_config .version ()
37-
38- # Assert
39- assert result == "test_version"
40-
41-
42- def test_verify_config_base_implementation (concrete_config ):
43- # Arrange
44-
45- # Act
46- result = concrete_config .verify_config ()
47-
48- # Assert
49- # Base implementation returns None
50- assert result is None
51-
5232
5333def test_copy_method_creates_shallow_copy (concrete_config ):
5434 # Arrange
You can’t perform that action at this time.
0 commit comments