2013-11-20 07:29:58 +00:00
|
|
|
# Copyright (c) 2013, Web Notes Technologies Pvt. Ltd. and Contributors
|
2013-10-08 12:29:11 +00:00
|
|
|
# License: GNU General Public License v3. See license.txt
|
|
|
|
|
|
|
|
from __future__ import unicode_literals
|
|
|
|
import webnotes
|
|
|
|
|
|
|
|
from setup.page.setup_wizard.test_setup_data import args
|
|
|
|
from setup.page.setup_wizard.setup_wizard import setup_account
|
|
|
|
|
|
|
|
if __name__=="__main__":
|
|
|
|
webnotes.connect()
|
|
|
|
webnotes.local.form_dict = webnotes._dict(args)
|
|
|
|
setup_account()
|
|
|
|
|