Test for method physical_free
(self)
| 108 | |
| 109 | @common.skipIfWindows |
| 110 | def test_physical_free(self): |
| 111 | """Test for method physical_free""" |
| 112 | ret = physical_free() |
| 113 | self.assertIsInteger( |
| 114 | ret, 'physical_free() returns variable type %s' % type(ret)) |
| 115 | self.assertGreater(physical_free(), 0) |
| 116 | report_free() |
| 117 | |
| 118 | @common.skipIfWindows |
| 119 | def test_get_swap_size_linux(self): |
nothing calls this directly
no test coverage detected