view tests/test_checkout.txt @ 29:e0cc2fae92bd

much more successfully test call method
author Jeff Hammel <jhammel@mozilla.com>
date Mon, 30 May 2011 21:26:50 -0700
parents 901755a65249
children
line wrap: on
line source

Test Checkout
=============


Boilerplate::

    >>> from buttercup import source

Stub call method to test what is to be done::

    >>> def call_stub(*x, **kwargs): 
    ...     print ' '.join(x[0])
    >>> source.call = call_stub

Test (stubbed) __call__ method:: 

    >>> pyloader = 'http://k0s.org/hg/pyloader'
    >>> hgsource = source.HgSource(pyloader, srcdir='/tmp')
    >>> hgsource()
    hg clone http://k0s.org/hg/pyloader