blob: 30b88aecbcd97274af46a4b99b3f91de1f7626f3 [file] [log] [blame]
Aditya Hasef3c22f32019-01-22 18:22:20 +05301from __future__ import unicode_literals
Chillar Anand915b3432021-09-02 16:44:59 +05302
3import json
4import os
Rushabh Mehta919a74a2017-06-22 16:37:04 +05305
6from frappe.desk.page.setup_wizard.setup_wizard import setup_complete
Chillar Anand915b3432021-09-02 16:44:59 +05307
Rushabh Mehta919a74a2017-06-22 16:37:04 +05308
9def complete():
10 with open(os.path.join(os.path.dirname(__file__),
11 'data', 'test_mfg.json'), 'r') as f:
12 data = json.loads(f.read())
13
Rushabh Mehta919a74a2017-06-22 16:37:04 +053014 setup_complete(data)