Пример #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")