Пример #1
0
 def test_with_image(self):
     read(Image.open(EXAMPLES.simple_1.img_res_path))
Пример #2
0
 def test_with_file(self):
     read(open(EXAMPLES.simple_1.img_res_path, 'rb'))
Пример #3
0
 def test_with_path(self):
     read(EXAMPLES.simple_1.img_res_path)
Пример #4
0
 def test_with_image(self):
     read(Image.open(EXAMPLES.simple_1.img_res_path))
Пример #5
0
 def test_with_file(self):
     with open(EXAMPLES.simple_1.img_res_path, 'rb') as f:
         read(f)
Пример #6
0
 def test_with_path(self):
     read(EXAMPLES.simple_1.img_res_path)