Mercurial > hg > buttercup
changeset 28:51b62e96ab51
name doctest files more sensibly
author | Jeff Hammel <jhammel@mozilla.com> |
---|---|
date | Mon, 30 May 2011 21:23:20 -0700 |
parents | 901755a65249 |
children | e0cc2fae92bd |
files | tests/doctest.txt tests/test_source.txt |
diffstat | 2 files changed, 27 insertions(+), 27 deletions(-) [+] |
line wrap: on
line diff
--- a/tests/doctest.txt Mon May 30 21:21:42 2011 -0700 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,27 +0,0 @@ -Test Buttercup -============== - -The obligatory imports:: - - >>> import os - >>> from buttercup import source - >>> cwd = os.getcwd() - -Test source resolution:: - - >>> pyloader = 'http://k0s.org/hg/pyloader' - >>> hgsource = source.HgSource(pyloader) - >>> hgsource.directory() == os.path.join(cwd, 'pyloader') - True - >>> toolbox = 'git://github.com/mozilla/toolbox.git' - >>> gitsource = source.GitSource(toolbox) - >>> gitsource.directory() == os.path.join(cwd, 'toolbox') - True - -Test source resolution with a dictionary:: - - >>> source_dict = {'hg': [pyloader], 'git': [toolbox]} - >>> sources = source.sources(source_dict, srcdir='/tmp') - >>> sorted([i.directory() for i in sources]) - ['/tmp/pyloader', '/tmp/toolbox'] -
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/tests/test_source.txt Mon May 30 21:23:20 2011 -0700 @@ -0,0 +1,27 @@ +Test Sources +============ + +The obligatory imports:: + + >>> import os + >>> from buttercup import source + >>> cwd = os.getcwd() + +Test source resolution:: + + >>> pyloader = 'http://k0s.org/hg/pyloader' + >>> hgsource = source.HgSource(pyloader) + >>> hgsource.directory() == os.path.join(cwd, 'pyloader') + True + >>> toolbox = 'git://github.com/mozilla/toolbox.git' + >>> gitsource = source.GitSource(toolbox) + >>> gitsource.directory() == os.path.join(cwd, 'toolbox') + True + +Test source resolution with a dictionary:: + + >>> source_dict = {'hg': [pyloader], 'git': [toolbox]} + >>> sources = source.sources(source_dict, srcdir='/tmp') + >>> sorted([i.directory() for i in sources]) + ['/tmp/pyloader', '/tmp/toolbox'] +