~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/tests/blackbox/test_init.py

  • Committer: Vincent Ladeuil
  • Date: 2011-09-28 15:06:42 UTC
  • mto: This revision was merged to the branch mainline in revision 6175.
  • Revision ID: v.ladeuil+lp@free.fr-20110928150642-e5m0w1oqc0effxr8
Allows bzr shelve to be used in test scripts and under emacs shells

Show diffs side-by-side

added added

removed removed

Lines of Context:
48
48
        self.assertIsDirectory('.bzr/checkout/lock', t)
49
49
 
50
50
    def test_init_format_2a(self):
51
 
        """Smoke test for constructing a format 2a repository."""
 
51
        """Smoke test for constructing a format 2a repoistory."""
52
52
        out, err = self.run_bzr('init --format=2a')
53
53
        self.assertEqual("""Created a standalone tree (format: 2a)\n""",
54
54
            out)
55
55
        self.assertEqual('', err)
56
56
 
57
 
    def test_init_colocated(self):
58
 
        """Smoke test for constructing a colocated branch."""
59
 
        out, err = self.run_bzr('init --format=development-colo file:,branch=abranch')
60
 
        self.assertEqual("""Created a standalone tree (format: development-colo)\n""",
61
 
            out)
62
 
        self.assertEqual('', err)
63
 
        out, err = self.run_bzr('branches')
64
 
        self.assertEqual(" abranch\n", out)
65
 
        self.assertEqual('', err)
66
 
 
67
57
    def test_init_at_repository_root(self):
68
58
        # bzr init at the root of a repository should create a branch
69
59
        # and working tree even when creation of working trees is disabled.