Skip to content

feat: Update the folder integrationtests #128

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Apr 19, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions tests/integrationtest/test_folder.py
Original file line number Diff line number Diff line change
Expand Up @@ -133,6 +133,11 @@ def test_get_folder_id_by_dashboard_path(self):
72, self.folder.get_folder_id_by_dashboard_path("Github Integrationtest")
)

def test_get_folder_id_by_dashboard_path_general_folder(self):
self.assertEqual(
0, self.folder.get_folder_id_by_dashboard_path("General")
)

def test_get_all_folder_ids_and_names(self):
self.assertEqual(
list([{"id": 72, "title": "Github Integrationtest"}]),
Expand Down