(self)
| 449 | self.__assert_field(fp, 'exists_in_wd', True, exists_in_wd) |
| 450 | |
| 451 | def test_status_equivalence(self): |
| 452 | for f_st in self.curr_b.status(): |
| 453 | self.assertEqual(f_st, self.curr_b.status_file(f_st.fp)) |
| 454 | |
| 455 | def test_status_nonexistent_fp(self): |
| 456 | self.assertRaises(KeyError, self.curr_b.status_file, NONEXISTENT_FP) |
nothing calls this directly
no test coverage detected