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)
|