From b210fd668b002426ec18b80ce45c7d715acd4287 Mon Sep 17 00:00:00 2001 From: Hrishabh Tiwari Date: Thu, 19 Dec 2024 13:36:42 +0530 Subject: [PATCH] Add testg --- tests/test_workspaces/test_tasks.py | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/tests/test_workspaces/test_tasks.py b/tests/test_workspaces/test_tasks.py index 71815c2..ae90b0e 100644 --- a/tests/test_workspaces/test_tasks.py +++ b/tests/test_workspaces/test_tasks.py @@ -320,3 +320,10 @@ def test_async_create_admin_subcriptions_2( mock_api.side_effect = Exception('Error') reverse('webhook-callback', kwargs={'workspace_id': workspace_id}) + + +def test_run_import_export_with_no_bc_creds(db): + workspace_id = 10 + response = run_import_export(workspace_id=workspace_id) + + assert response is None