Test for method count_linux_swap
(self)
| 70 | |
| 71 | @common.skipIfWindows |
| 72 | def test_count_linux_swap(self): |
| 73 | """Test for method count_linux_swap""" |
| 74 | n_swaps = count_swap_linux() |
| 75 | self.assertIsInteger(n_swaps) |
| 76 | self.assertTrue(0 <= n_swaps < 10) |
| 77 | |
| 78 | @common.skipIfWindows |
| 79 | def test_physical_free_darwin(self): |
nothing calls this directly
no test coverage detected