예제 #1
0
파일: test_api.py 프로젝트: ewino/qreader
 def test_with_image(self):
     read(Image.open(EXAMPLES.simple_1.img_res_path))
예제 #2
0
파일: test_api.py 프로젝트: ewino/qreader
 def test_with_file(self):
     read(open(EXAMPLES.simple_1.img_res_path, 'rb'))
예제 #3
0
파일: test_api.py 프로젝트: ewino/qreader
 def test_with_path(self):
     read(EXAMPLES.simple_1.img_res_path)
예제 #4
0
파일: test_api.py 프로젝트: Hemie143/qrverb
 def test_with_image(self):
     read(Image.open(EXAMPLES.simple_1.img_res_path))
예제 #5
0
파일: test_api.py 프로젝트: Hemie143/qrverb
 def test_with_file(self):
     with open(EXAMPLES.simple_1.img_res_path, 'rb') as f:
         read(f)
예제 #6
0
파일: test_api.py 프로젝트: Hemie143/qrverb
 def test_with_path(self):
     read(EXAMPLES.simple_1.img_res_path)