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")
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")
def test_set_boom_path_non_abs(self): boom.set_boot_path(BOOT_ROOT_TEST) boom.set_boom_path("boom/")
def test_set_boom_path_bad_path(self): with self.assertRaises(ValueError) as cm: boom.set_boom_path("/the/wrong/path")
def test_set_boom_path(self): boom.set_boom_path(BOOT_ROOT_TEST + "/boom")
def test_parse_btrfs_subvol_bad_subvol(self): with self.assertRaises(ValueError) as cm: boom.parse_btrfs_subvol("foo23foo") boom.set_boom_path("loader")