Skip to content

Commit

Permalink
feat: Well Done! Now you are familiar with manually wrote path!
Browse files Browse the repository at this point in the history
  • Loading branch information
LaoshuBaby committed Mar 5, 2024
1 parent b2ab919 commit 87a4308
Showing 1 changed file with 30 additions and 3 deletions.
33 changes: 30 additions & 3 deletions tests/cases/plugin_stat_metadata.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,12 +11,39 @@
from yuheng.plugin.stat_metadata_clustering.__main__ import main


class TestPluginVisualizationFolium(unittest.TestCase):
class TestPluginStatMetadata(unittest.TestCase):
def setUp(self) -> None:
pass

def test_plugin_viz_folium_display_invalid_argument(self):
pass
def test_plugin_stat_metadata_argument(self):
os.system(
" ".join(
[
"python",
os.path.join(
os.path.realpath(__file__),
"..",
"..",
"src",
"yuheng",
"plugin",
"stat_metadata_clustering",
"__main__.py",
),
os.path.join(
os.path.realpath(__file__),
"..",
"assets",
"osm",
"xtract_osmwebsite_bbox_buctcampus.osm",
),
]
)
)

def test_plugin_stat_metadata_import(self):
world = Carto()
result = main(world)


if __name__ == "__main__":
Expand Down

0 comments on commit 87a4308

Please sign in to comment.