summaryrefslogtreecommitdiff
path: root/tests/conftest.py
blob: df3384813ff42f1a9879cc74787ab8a08b013773 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
import pytest


@pytest.fixture
def single_var_dict():
    return {'test': 'value'}


@pytest.fixture
def multi_var_dict():
    return {'ext': 'jpg',
            'test': 'value',
            'TEST': 'VALUE',
            'SOMETHING_ELSE': 'something_else'}