~abentley/bzrtools/bzrtools.dev

« back to all changes in this revision

Viewing changes to tests/test_cbranch.py

  • Committer: Aaron Bentley
  • Date: 2013-08-20 03:02:43 UTC
  • Revision ID: aaron@aaronbentley.com-20130820030243-r8v1xfbcnd8f10p4
Fix zap command for 2.6/7

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.assertPathExists('directory/subdirectory/target_branch')
 
19
 
 
20
 
 
21
def test_suite():
 
22
    return makeSuite(TestBzrTools)