From ad7c113c0db87fe619089073419556cf6b1989dd Mon Sep 17 00:00:00 2001 From: Ankush Menat Date: Thu, 5 May 2022 11:02:23 +0530 Subject: [PATCH] test: activation --- erpnext/tests/test_activation.py | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 erpnext/tests/test_activation.py diff --git a/erpnext/tests/test_activation.py b/erpnext/tests/test_activation.py new file mode 100644 index 0000000000..b56e2332cf --- /dev/null +++ b/erpnext/tests/test_activation.py @@ -0,0 +1,9 @@ +from frappe.tests.utils import FrappeTestCase + +from erpnext.utilities.activation import get_level + + +class TestActivation(FrappeTestCase): + def test_activation(self): + levels = get_level() + self.assertTrue(levels)