예제 #1
0
 def test_set_boom_path_no_profiles(self):
     boom.set_boot_path(BOOT_ROOT_TEST)
     with self.assertRaises(ValueError) as cm:
         boom.set_boom_path("loader")
예제 #2
0
 def test_set_boom_path_non_abs_bad(self):
     boom.set_boot_path(BOOT_ROOT_TEST + "/boom")
     with self.assertRaises(ValueError) as cm:
         boom.set_boom_path("absolutely/the/wrong/path")
예제 #3
0
 def test_set_boom_path_non_abs(self):
     boom.set_boot_path(BOOT_ROOT_TEST)
     boom.set_boom_path("boom/")
예제 #4
0
 def test_set_boom_path_bad_path(self):
     with self.assertRaises(ValueError) as cm:
         boom.set_boom_path("/the/wrong/path")
예제 #5
0
 def test_set_boom_path(self):
     boom.set_boom_path(BOOT_ROOT_TEST + "/boom")
예제 #6
0
 def test_parse_btrfs_subvol_bad_subvol(self):
     with self.assertRaises(ValueError) as cm:
         boom.parse_btrfs_subvol("foo23foo")
         boom.set_boom_path("loader")