mirror of
https://github.com/frappe/erpnext.git
synced 2026-02-18 17:15:04 +00:00
10 lines
215 B
Python
10 lines
215 B
Python
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)
|