structure saas with tools
This commit is contained in:
@@ -0,0 +1,9 @@
|
||||
import unittest
|
||||
|
||||
from shapely.geometry import Point
|
||||
from shapely.validation import explain_validity
|
||||
|
||||
|
||||
class ValidationTestCase(unittest.TestCase):
|
||||
def test_valid(self):
|
||||
assert explain_validity(Point(0, 0)) == "Valid Geometry"
|
||||
Reference in New Issue
Block a user