We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6c14ffb commit b609117Copy full SHA for b609117
tests/test_context.py
@@ -11,11 +11,11 @@
11
from tests.coveragetest import CoverageTest
12
13
14
-class GlobalContextTest(CoverageTest):
15
- """Tests of the global context."""
+class StaticContextTest(CoverageTest):
+ """Tests of the static context."""
16
17
def setUp(self):
18
- super(GlobalContextTest, self).setUp()
+ super(StaticContextTest, self).setUp()
19
self.skip_unless_data_storage_is("sql")
20
21
def test_no_context(self):
@@ -25,7 +25,7 @@ def test_no_context(self):
25
data = cov.get_data()
26
self.assertCountEqual(data.measured_contexts(), [""])
27
28
- def test_global_context(self):
+ def test_static_context(self):
29
self.make_file("main.py", "a = 1")
30
cov = coverage.Coverage(context="gooey")
31
self.start_import_stop(cov, "main")
0 commit comments