Mercurial > hg > PaInt
annotate tests/doctest.txt @ 35:e8d73f9e99fb
extension checking
author | Jeff Hammel <jhammel@mozilla.com> |
---|---|
date | Fri, 30 Mar 2012 14:24:20 -0700 |
parents | 90ef5d1ebff3 |
children | daa35ff485c2 |
rev | line source |
---|---|
0 | 1 Test PaInt |
23 | 2 ========== |
0 | 3 |
11 | 4 The obligatory imports:: |
0 | 5 |
6 >>> import paint | |
7 | |
11 | 8 Get the dependencies of a package:: |
0 | 9 |
10 | 10 >>> jetperf = paint.Package('http://k0s.org/mozilla/hg/jetperf/archive/tip.tar.gz') |
11 | 11 >>> dependencies = jetperf.dependencies() |
21
4df3e715817d
now have passing tests again
Jeff Hammel <jhammel@mozilla.com>
parents:
11
diff
changeset
|
12 >>> dependencies == {'mozharness': 'http://hg.mozilla.org/build/mozharness/archive/tip.tar.gz#egg=mozharness', 'talos': 'http://hg.mozilla.org/build/talos/archive/tip.tar.gz#egg=talos'} |
4df3e715817d
now have passing tests again
Jeff Hammel <jhammel@mozilla.com>
parents:
11
diff
changeset
|
13 True |
11 | 14 >>> jetperf.cleanup() |