Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > comp.lang.python.announce > #1367

CaptureMock 1.1 - true record/replay mocking for Python

Path csiph.com!usenet.pasdenom.info!news.franciliens.net!fdn.fr!usenet-fr.net!nerim.net!novso.com!newsfeed.xs4all.nl!newsfeed4a.news.xs4all.nl!xs4all!post.news.xs4all.nl!not-for-mail
Return-Path <geoff.bache@gmail.com>
X-Original-To python-announce-list@python.org
Delivered-To python-announce-list@mail.python.org
X-Spam-Status OK 0.139
X-Spam-Level *
X-Spam-Evidence '*H*': 0.73; '*S*': 0.01; 'url:sourceforge': 0.03; 'subject:Python': 0.06; 'url:github': 0.09; 'python': 0.11; 'language.': 0.14; 'command-line': 0.16; 'examples:': 0.16; 'to:addr:python-announce-list': 0.16; 'written.': 0.16; 'all,': 0.19; 'written': 0.21; 'handles': 0.22; 'separate': 0.22; 'creating': 0.23; 'adds': 0.24; 'subject:/': 0.26; 'thus': 0.29; 'list:': 0.30; 'message-id:@mail.gmail.com': 0.30; 'code': 0.31; 'file': 0.32; 'another': 0.32; 'style': 0.33; 'classes': 0.35; 'tool': 0.35; 'received:google.com': 0.35; 'version': 0.36; 'functions.': 0.36; 'interaction': 0.36; 'url:listinfo': 0.36; 'url:org': 0.36; 'skip:& 10': 0.38; 'skip:& 20': 0.39; 'to:addr:python.org': 0.39; 'mailing': 0.39; 'future': 0.60; 'url:index': 0.63; 'real': 0.63; 'more': 0.64; 'website:': 0.67; 'header:Reply-To:1': 0.67; 'messaging': 0.68; 'reply-to:no real name:2**0': 0.71; 'records': 0.73; 'programs,': 0.74; 'url:page': 0.74; 'calls,': 0.84; 'mock': 0.84; 'replay': 0.84; 'url:php': 0.85; 'approach.': 0.91; 'subject:record': 0.91
DKIM-Signature v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:reply-to:date:message-id:subject:from:to:content-type; bh=eVDs353IId8ZhWlj0uvVf3YTUnuuEBlVCKPhlGtMiB0=; b=w6vPhz+FRgUjopVpsSPcM0zcSbh5w90qRIvIvSRSF2pZwmVcfYnY+p5we/eqUPCENh y0pj2hf5cJMWh9Xr/g8lNPoAiTymDwWiDlZnN0dSRmRO/nY8LglII3tvZZBkyGQcOYna 1tWomHYuizxMYCpUQ/ZmiJ6hQu+UJIxFgh9OIBOn62yNhaGxU1BYNUZD9hLQIn51jIxE 2NzGldNelJMIDbKhod1NHAlyc6Y+GnPVXjLQZpCSLmWe3zP3w/x6U61K/uS0FsozUV7H 6qg1MqgC5BNcoHx4TNpvpzdpfRuttxel4vFJhf4FZ9uYOvbtcFrC3Q+0xsiaTmNz5/Pf 0Swg==
MIME-Version 1.0
X-Received by 10.60.63.166 with SMTP id h6mr886694oes.79.1408956763917; Mon, 25 Aug 2014 01:52:43 -0700 (PDT)
Date Mon, 25 Aug 2014 10:52:43 +0200
Subject CaptureMock 1.1 - true record/replay mocking for Python
From Geoff Bache <geoff.bache@gmail.com>
To python-announce-list@python.org
X-Mailman-Approved-At Tue, 26 Aug 2014 10:32:10 +0200
Content-Type text/plain; charset=UTF-8
X-Content-Filtered-By Mailman/MimeDel 2.1.15
X-BeenThere python-announce-list@python.org
X-Mailman-Version 2.1.15
Precedence list
Reply-To python-list@python.org, geoff.bache@pobox.com
List-Id Announcement-only list for the Python programming language <python-announce-list.python.org>
List-Unsubscribe <https://mail.python.org/mailman/options/python-announce-list>, <mailto:python-announce-list-request@python.org?subject=unsubscribe>
List-Archive <http://mail.python.org/pipermail/python-announce-list/>
List-Post <mailto:python-announce-list@python.org>
List-Help <mailto:python-announce-list-request@python.org?subject=help>
List-Subscribe <https://mail.python.org/mailman/listinfo/python-announce-list>, <mailto:python-announce-list-request@python.org?subject=subscribe>
Approved python-announce-list@python.org
Newsgroups comp.lang.python.announce
Message-ID <mailman.13447.1409041931.18130.python-announce-list@python.org> (permalink)
Lines 22
NNTP-Posting-Host 2001:888:2000:d::a6
X-Trace 1409041931 news.xs4all.nl 2912 [2001:888:2000:d::a6]:39409
X-Complaints-To abuse@xs4all.nl
Xref csiph.com comp.lang.python.announce:1367

Show key headers only | View raw


Hi all,

Version 1.1 adds support for Python3.3, and also directly intercepting
classes as well
as modules or functions.

Regards,
Geoff Bache

More detail:

CaptureMock is a tool for creating mocks via a "true" capture-replay
style approach. It records interactions to a separate file which can
then be used for replay in future runs. It is thus not another
"EasyMock" clone. Interaction can be recaptured from a real
system at any point, and no mock code needs to be written. It handles
Python calls, command-line programs, and synchronous messaging over
networks. Custom clients can now also be written for any language.

Website: http://www.texttest.org/index.php?page=capturemock
Examples: https://github.com/msabramo/capturemock_examples/
Mailing list: https://lists.sourceforge.net/lists/listinfo/texttest-users

Back to comp.lang.python.announce | Previous | Next | Find similar | Unroll thread


Thread

CaptureMock 1.1 - true record/replay mocking for Python Geoff Bache <geoff.bache@gmail.com> - 2014-08-25 10:52 +0200

csiph-web