added restart command

This commit is contained in:
Kevin Froman 2019-09-20 11:25:12 -05:00
parent fbe1766aea
commit a7a5f88142
8 changed files with 64 additions and 8 deletions

View file

@ -12,5 +12,7 @@ class TestFilePaths(unittest.TestCase):
def test_filepaths_main(self):
home = identifyhome.identify_home()
self.assertTrue(filepaths.home.startswith(home))
def test_app_root_path(self):
self.assertTrue(os.path.exists(filepaths.app_root + '/onionr.sh'))
unittest.main()