2
0
mirror of https://github.com/frappe/bench.git synced 2024-09-23 12:39:01 +00:00

[Fix] Fixed drop site test case

This commit is contained in:
shreyas 2016-04-21 14:18:44 +05:30
parent 2eea8b31e9
commit 2c8bed26dd

View File

@ -57,11 +57,10 @@ class TestBenchInit(unittest.TestCase):
})
def test_new_site(self):
self.test_init()
self.new_site("test-site-1.dev")
def new_site(self, site_name):
self.test_init()
new_site_cmd = ["bench", "new-site", site_name, "--admin-password", "admin"]
# set in travis
@ -117,7 +116,7 @@ class TestBenchInit(unittest.TestCase):
# Check with archive_path given to drop-site command
home = os.path.abspath(os.path.expanduser('~'))
archive_path = os.path.join(home, 'archived_sites')
archived_sites_path = os.path.join(home, 'archived_sites')
self.drop_site("test-drop-with-archive-path", archived_sites_path=archived_sites_path)