mirror of
https://github.com/python-pillow/Pillow.git
synced 2024-11-13 13:16:52 +03:00
26 lines
544 B
Python
26 lines
544 B
Python
|
from helper import unittest, PillowTestCase
|
||
|
|
||
|
try:
|
||
|
from PIL import ImageGrab
|
||
|
|
||
|
class TestImageCopy(PillowTestCase):
|
||
|
|
||
|
def test_grab(self):
|
||
|
im = ImageGrab.grab()
|
||
|
self.assert_image(im, im.mode, im.size)
|
||
|
|
||
|
def test_grab2(self):
|
||
|
im = ImageGrab.grab()
|
||
|
self.assert_image(im, im.mode, im.size)
|
||
|
|
||
|
except ImportError as v:
|
||
|
class TestImageCopy(PillowTestCase):
|
||
|
def test_skip(self):
|
||
|
self.skipTest(v)
|
||
|
|
||
|
|
||
|
if __name__ == '__main__':
|
||
|
unittest.main()
|
||
|
|
||
|
# End of file
|