diff tests/test_source.txt @ 28:51b62e96ab51

name doctest files more sensibly
author Jeff Hammel <jhammel@mozilla.com>
date Mon, 30 May 2011 21:23:20 -0700
parents tests/doctest.txt@901755a65249
children
line wrap: on
line diff
--- /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']
+