From 503c6b8163269d6056e8694d78a032097a28c252 Mon Sep 17 00:00:00 2001 From: "Soroosh.Mani" Date: Fri, 6 Oct 2023 11:17:47 -0400 Subject: [PATCH] Placeholder for tests before merge --- tests/api/mesh.py | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/tests/api/mesh.py b/tests/api/mesh.py index 0f2e8804..326fab23 100644 --- a/tests/api/mesh.py +++ b/tests/api/mesh.py @@ -317,5 +317,13 @@ def test_specify_boundary_on_mesh_with_no_boundary(self): self.assertEqual(bdry.open().iloc[0]['index_id'], [1, 2, 3]) +class RasterInterpolation(unittest.TestCase): + + def test_interpolation_io(self): + self.assert(False) + + def test_interpolation_band(self): + self.assert(False) + if __name__ == '__main__': unittest.main()