~abentley/bzrtools/bzrtools.dev

« back to all changes in this revision

Viewing changes to tests/test_cbranch.py

  • Committer: Aaron Bentley
  • Date: 2006-06-13 02:31:28 UTC
  • mfrom: (0.1.119 shelf)
  • Revision ID: aaron.bentley@utoronto.ca-20060613023128-20f2ff3a212a6ea2
Pull in latest shelf stuff

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
from unittest import makeSuite
2
 
 
3
 
from bzrlib.config import LocationConfig
4
 
from bzrlib import osutils
5
 
from bzrlib.tests import TestCaseWithTransport
6
 
 
7
 
from bzrlib.plugins.bzrtools.cbranch import cbranch
8
 
 
9
 
 
10
 
class TestCBranch(TestCaseWithTransport):
11
 
 
12
 
    def test_cbranch_creates_containing_dirs(self):
13
 
        source = self.make_branch_and_tree('source')
14
 
        config = LocationConfig(osutils.abspath('target'))
15
 
        config.set_user_option('cbranch_target',
16
 
                               'directory/subdirectory/target_branch')
17
 
        cbranch('source', 'target')
18
 
        self.failUnlessExists('directory/subdirectory/target_branch')
19
 
 
20
 
 
21
 
def test_suite():
22
 
    return makeSuite(TestBzrTools)