Mercurial > hg > carton
comparison tests/doctest.txt @ 25:e2db2913123d
test to ensure we are bringing along virtualenv
author | Jeff Hammel <jhammel@mozilla.com> |
---|---|
date | Sun, 10 Jul 2011 18:23:28 -0700 |
parents | bb19d3dac4c5 |
children | dace84448c25 |
comparison
equal
deleted
inserted
replaced
24:bb19d3dac4c5 | 25:e2db2913123d |
---|---|
37 >>> os.path.isdir(bin) | 37 >>> os.path.isdir(bin) |
38 True | 38 True |
39 >>> os.path.exists(os.path.join(bin, 'packageA')) or os.path.exists(os.path.join(bin, 'packageA.exe')) | 39 >>> os.path.exists(os.path.join(bin, 'packageA')) or os.path.exists(os.path.join(bin, 'packageA.exe')) |
40 True | 40 True |
41 | 41 |
42 Ensure you're bringing along virtualenv:: | |
43 | |
44 >>> os.path.exists(os.path.join(bin, 'virtualenv')) or os.path.exists(os.path.join(bin, 'virtualenv.exe')) | |
45 True | |
46 | |
42 Show that non-package files get carried along too:: | 47 Show that non-package files get carried along too:: |
43 | 48 |
44 >>> os.path.exists(os.path.join('foo', 'src', 'packageA', 'foo.txt')) | 49 >>> os.path.exists(os.path.join('foo', 'src', 'packageA', 'foo.txt')) |
45 True | 50 True |
46 | 51 |