mirror of
https://github.com/frappe/erpnext.git
synced 2026-05-01 04:28:27 +00:00
11 lines
296 B
Python
11 lines
296 B
Python
from frappe.tests.utils import FrappeTestCase
|
|
|
|
from erpnext.utilities.activation import get_level
|
|
|
|
|
|
class TestActivation(FrappeTestCase):
|
|
def test_activation(self):
|
|
site_info = {"activation": {"activation_level": 0, "sales_data": []}}
|
|
levels = get_level(site_info)
|
|
self.assertTrue(levels)
|