예제 #1
0
 def test_pixel_parser_case_three():
     # pylint: disable=W0212
     with pytest.raises(ValueError):
         util._parse_pixels('1920, 1080')
예제 #2
0
 def test_pixel_parser_case_two():
     # pylint: disable=W0212
     window_size = util._parse_pixels('1920X1080')
     assert window_size == ('1920', '1080')