We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 758fa20 commit 2940c1cCopy full SHA for 2940c1c
python/jupytergis_lab/jupytergis_lab/notebook/tests/test_api.py
@@ -1,18 +1,14 @@
1
import os
2
-import unittest
3
4
from jupytergis_lab import GISDocument
5
6
7
-class VectorTileTests(unittest.TestCase):
8
- def setUp(self):
+class TestDocument:
+ def setup_method(self):
9
self.doc = GISDocument()
10
11
12
-class TiffLayerTests(unittest.TestCase):
13
14
- self.doc = GISDocument()
15
-
+class TestTiffLayer(TestDocument):
16
def test_sourcelayer(self):
17
color = self.doc.create_color_expr(
18
interpolation_type="linear",
0 commit comments