コード例 #1
0
 def test_parsemount(self):
     '''
     All test case have prefix `test_`
     '''
     result = parse_mounts()
     self.assertIsInstance(result, list)
     self.assertIsInstance(result[0], tuple)
コード例 #2
0
ファイル: mount_test.py プロジェクト: treasureb/Python
def test_rootext4(self):
    """
    测试找出根文件系统
    """
    result = parse_mounts()
    for line in result:
        if line[1] == '/' and line[2] != 'rootfs':
            self.assertEqual(line[2], 'ext4')
コード例 #3
0
ファイル: mount_test.py プロジェクト: treasureb/Python
 def test_parsemount(self):
     """
     实际测试
     任何以'test_'开头的方法都被视作测试用例
     """
     result = parse_mounts()
     self.assertIsInstance(result, list)
     self.assertIsInstance(result[0], tuple)
コード例 #4
0
 def test_roottext4(self):
     '''
     Find the root file system
     '''
     result = parse_mounts()
     for line in result:
         if line[1] == '/' and line[2] != 'rootfs':
             self.assertEqual(line[2], 'ext4')
コード例 #5
0
ファイル: mounttab_test.py プロジェクト: sjyfok/shiyanlou
 def test_parsemount(self):
     result = parse_mounts()
     self.assertIsInstance(result, list)
     self.assertIsInstance(result[0], tuple)