Exemplo n.º 1
0
 def test_init_fs_stats_weighted_io_time(self):
     fs_stats = FsStats({'weighted_io_time': 123})
     self.assertEqual(fs_stats.weighted_io_time, 123)
Exemplo n.º 2
0
 def test_init_fs_stats_io_in_progress(self):
     fs_stats = FsStats({'io_in_progress': 123})
     self.assertEqual(fs_stats.io_in_progress, 123)
Exemplo n.º 3
0
 def test_init_fs_stats_io_time(self):
     fs_stats = FsStats({'io_time': 123})
     self.assertEqual(fs_stats.io_time, 123)
Exemplo n.º 4
0
 def test_init_fs_stats_sectors_written(self):
     fs_stats = FsStats({'sectors_written': 123})
     self.assertEqual(fs_stats.sectors_written, 123)
Exemplo n.º 5
0
 def test_init_fs_stats_write_time(self):
     fs_stats = FsStats({'write_time': 123})
     self.assertEqual(fs_stats.write_time, 123)
Exemplo n.º 6
0
 def test_init_fs_stats_read_time(self):
     fs_stats = FsStats({'read_time': 123})
     self.assertEqual(fs_stats.read_time, 123)
Exemplo n.º 7
0
 def test_init_fs_stats_writes_merged(self):
     fs_stats = FsStats({'writes_merged': 123})
     self.assertEqual(fs_stats.writes_merged, 123)
Exemplo n.º 8
0
 def test_init_fs_stats_reads_merged(self):
     fs_stats = FsStats({'reads_merged': 123})
     self.assertEqual(fs_stats.reads_merged, 123)
Exemplo n.º 9
0
 def test_init_fs_stats_sectors_read(self):
     fs_stats = FsStats({'sectors_read': 123})
     self.assertEqual(fs_stats.sectors_read, 123)
Exemplo n.º 10
0
 def test_init_fs_stats_has_inodes(self):
     fs_stats = FsStats({'has_inodes': 123})
     self.assertEqual(fs_stats.has_inodes, 123)
Exemplo n.º 11
0
 def test_init_fs_stats_inodes_free(self):
     fs_stats = FsStats({'inodes_free': 123})
     self.assertEqual(fs_stats.inodes_free, 123)
Exemplo n.º 12
0
 def test_init_fs_stats_available(self):
     fs_stats = FsStats({'available': 123})
     self.assertEqual(fs_stats.available, 123)
Exemplo n.º 13
0
 def test_init_fs_stats_base_usage(self):
     fs_stats = FsStats({'base_usage': 123})
     self.assertEqual(fs_stats.base_usage, 123)
Exemplo n.º 14
0
 def test_init_fs_stats_capacity(self):
     fs_stats = FsStats({'capacity': 123})
     self.assertEqual(fs_stats.capacity, 123)
Exemplo n.º 15
0
 def test_init_fs_stats_type(self):
     fs_stats = FsStats({'type': 123})
     self.assertEqual(fs_stats.type, 123)
Exemplo n.º 16
0
 def test_init_fs_stats_device(self):
     fs_stats = FsStats({'device': 123})
     self.assertEqual(fs_stats.device, 123)