Skip to content

Commit 2a1be6c

Browse files
committed
Fixed packaging and using tox for testing
Using builtin mock in Python >= 3.3
1 parent 811db49 commit 2a1be6c

File tree

5 files changed

+29
-5
lines changed

5 files changed

+29
-5
lines changed

MANIFEST.in

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
include README.md
2+
include LICENSE

pytest_mock.py

+8-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
1+
import sys
2+
13
import pytest
2-
import mock as mock_module
4+
5+
6+
if sys.version_info >= (3, 3):
7+
import unittest.mock as mock_module
8+
else:
9+
import mock as mock_module
310

411

512
class MockFixture(object):

setup.py

+9-2
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,21 @@
1+
import sys
2+
13
from setuptools import setup
24

35

6+
dependencies = ['pytest>=2.4']
7+
if sys.version_info < (3, 3):
8+
dependencies.append('mock')
9+
410
setup(
511
name='pytest-mock',
612
version='0.1.0',
713
entry_points={
814
'pytest11': ['pytest-mock = pytest_mock'],
915
},
10-
modules=['pytest_mock'],
11-
install_requires=['pytest>=2.3.4', 'mock'],
16+
py_modules=['pytest_mock'],
17+
platforms='any',
18+
install_requires=dependencies,
1219
url='https://github.com/nicoddemus/pytest-mock/',
1320
license='LGPL',
1421
author='Bruno Oliveira',

test_pytest_mock.py

+3-2
Original file line numberDiff line numberDiff line change
@@ -58,9 +58,10 @@ def mock_using_patch(mock):
5858

5959

6060
def mock_using_patch_multiple(mock):
61-
from mock import DEFAULT
61+
from pytest_mock import mock_module
6262

63-
r = mock.patch.multiple('os', remove=DEFAULT, listdir=DEFAULT)
63+
r = mock.patch.multiple('os', remove=mock_module.DEFAULT,
64+
listdir=mock_module.DEFAULT)
6465
return r['remove'], r['listdir']
6566

6667

tox.ini

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
[tox]
2+
# note that tox expects interpreters to be found at C:\PythonXY,
3+
# with XY being python version ("27" or "34") for instance
4+
envlist = py26, py27, py32, py33, py34
5+
6+
[testenv]
7+
commands = py.test test_pytest_mock.py

0 commit comments

Comments
 (0)