comparison tests/doctest.txt @ 21:0706968f01bb

stub testing
author Jeff Hammel <jhammel@mozilla.com>
date Wed, 09 Nov 2011 19:59:04 -0800
parents 3497a30190d2
children 63ff1b00ec05
comparison
equal deleted inserted replaced
20:738d84b4de52 21:0706968f01bb
1 Test fetch 1 Test fetch
2 ================ 2 ================
3 3
4 The obligatory imports: 4 The obligatory imports::
5 5
6 >>> import fetch 6 >>> import fetch
7 7
8 Run some tests. This test will fail, please fix it: 8 Create a Fetch object::
9 9
10 >>> assert True == False 10 >>> f = fetch.Fetch(strict=True)
11 11