mirror of
https://github.com/frappe/erpnext.git
synced 2026-04-14 12:25:09 +00:00
10 lines
300 B
Python
10 lines
300 B
Python
from erpnext.tests.utils import ERPNextTestSuite
|
|
from erpnext.utilities.activation import get_level
|
|
|
|
|
|
class TestActivation(ERPNextTestSuite):
|
|
def test_activation(self):
|
|
site_info = {"activation": {"activation_level": 0, "sales_data": []}}
|
|
levels = get_level(site_info)
|
|
self.assertTrue(levels)
|