File: __init__.py

package info (click to toggle)
python-stubserver 1.1-4
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 188 kB
  • sloc: python: 574; sh: 8; makefile: 5
file content (8 lines) | stat: -rwxr-xr-x 502 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
"""A stub webserver used to enable blackbox testing of applications that call external web urls. For example, an application that consumes data from an external REST api. The usage pattern is intended to be very much like using a mock framework."""
from stubserver.webserver import StubServer
from stubserver.ftpserver import FTPStubServer

VERSION = __version__ = '1.1'
__author__ = 'Chris Tarttelin and Point 2 inc'
__email__ = 'chris@pyruby.co.uk'
__url__ = 'http://www.pyruby.com/pythonstubserver'