コード例 #1
0
 def test_supported_modules(self):
     self.assertIsInstance(features.get_supported_modules(), list)
     self.assertIsInstance(features.get_supported_codecs(), list)
     self.assertIsInstance(features.get_supported_features(), list)
     self.assertIsInstance(features.get_supported(), list)
コード例 #2
0
ファイル: test_features.py プロジェクト: Perkville/Pillow
 def test_supported_features(self):
     self.assertTrue(type(features.get_supported_modules()) is list)
     self.assertTrue(type(features.get_supported_codecs()) is list)
コード例 #3
0
ファイル: test_features.py プロジェクト: anntzer/Pillow
 def test_supported_modules(self):
     self.assertIsInstance(features.get_supported_modules(), list)
     self.assertIsInstance(features.get_supported_codecs(), list)
     self.assertIsInstance(features.get_supported_features(), list)
     self.assertIsInstance(features.get_supported(), list)
コード例 #4
0
def test_supported_modules():
    assert isinstance(features.get_supported_modules(), list)
    assert isinstance(features.get_supported_codecs(), list)
    assert isinstance(features.get_supported_features(), list)
    assert isinstance(features.get_supported(), list)
コード例 #5
0
 def test_supported_features(self):
     self.assertTrue(type(features.get_supported_modules()) is list)
     self.assertTrue(type(features.get_supported_codecs()) is list)