forked from fudge-py/fudge
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
71 lines (61 loc) · 2.42 KB
/
setup.py
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
import re
import sys
from setuptools import setup, find_packages
version = None
for line in open("./fudge/__init__.py"):
m = re.search("__version__\s*=\s*(.*)", line)
if m:
version = m.group(1).strip()[1:-1] # quotes
break
assert version
extra_setup = {}
if sys.version_info >= (3,):
extra_setup['use_2to3'] = True
# extra_setup['use_2to3_fixers'] = ['your.fixers']
setup(
name='fudge',
version=version,
description="Replace real objects with fakes (mocks, stubs, etc) while testing.",
long_description="""
Complete documentation is available at https://fudge.readthedocs.org/en/latest/
Fudge is a Python module for using fake objects (mocks and stubs) to test real ones.
In readable Python code, you declare what methods are available on your fake and
how they should be called. Then you inject that into your application and start
testing. This declarative approach means you don't have to record and playback
actions and you don't have to inspect your fakes after running code. If the fake
object was used incorrectly then you'll see an informative exception message
with a traceback that points to the culprit.
Here is a quick preview of how you can test code that sends
email without actually sending email::
@fudge.patch('smtplib.SMTP')
def test_mailer(FakeSMTP):
# Declare how the SMTP class should be used:
(FakeSMTP.expects_call()
.expects('connect')
.expects('sendmail').with_arg_count(3))
# Run production code:
send_mail()
# ...expectations are verified automatically at the end of the test
""",
author='Kumar McMillan',
author_email='kumar.mcmillan@gmail.com',
license="The MIT License",
packages=find_packages(exclude=['ez_setup']),
install_requires=[],
url='https://github.com/fudge-py/fudge',
include_package_data=True,
classifiers = [
'Intended Audience :: Developers',
'Natural Language :: English',
'Operating System :: OS Independent',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 2.5',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.1',
'Programming Language :: Python :: 3.2',
'Topic :: Software Development :: Testing'
],
**extra_setup
)