Unit test for empty_recycle_bin
(self)
| 736 | self.assertIsInstance(v, Decimal) |
| 737 | |
| 738 | def test_empty_recycle_bin(self): |
| 739 | """Unit test for empty_recycle_bin""" |
| 740 | # check the function basically works |
| 741 | for drive in get_fixed_drives(): |
| 742 | ret = empty_recycle_bin(drive, really_delete=False) |
| 743 | self.assertIsInteger(ret) |
| 744 | |
| 745 | @common.skipUnlessDestructive |
| 746 | def test_empty_recycle_bin_destructive(self): |
nothing calls this directly
no test coverage detected