-
Notifications
You must be signed in to change notification settings - Fork 1.3k
Expand file tree
/
Copy pathtest_gif.py
More file actions
36 lines (24 loc) · 960 Bytes
/
test_gif.py
File metadata and controls
36 lines (24 loc) · 960 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
"""Unit test suite for docx.image.gif module."""
import io
import pytest
from docx.image.constants import MIME_TYPE
from docx.image.gif import Gif
from ..unitutil.mock import ANY, initializer_mock
class DescribeGif:
def it_can_construct_from_a_gif_stream(self, Gif__init__):
cx, cy = 42, 24
bytes_ = b"filler\x2a\x00\x18\x00"
stream = io.BytesIO(bytes_)
gif = Gif.from_stream(stream)
Gif__init__.assert_called_once_with(ANY, cx, cy, 72, 72)
assert isinstance(gif, Gif)
def it_knows_its_content_type(self):
gif = Gif(None, None, None, None)
assert gif.content_type == MIME_TYPE.GIF
def it_knows_its_default_ext(self):
gif = Gif(None, None, None, None)
assert gif.default_ext == "gif"
# fixture components ---------------------------------------------
@pytest.fixture
def Gif__init__(self, request):
return initializer_mock(request, Gif)