Merge lp:~jelmer/brz/python3-drop-whitelist into lp:brz

Proposed by Jelmer Vernooij
Status: Merged
Approved by: Jelmer Vernooij
Approved revision: no longer in the source branch.
Merge reported by: The Breezy Bot
Merged at revision: not available
Proposed branch: lp:~jelmer/brz/python3-drop-whitelist
Merge into: lp:brz
Diff against target: 31103 lines (+5/-31003)
8 files modified
.bzrignore (+0/-3)
.travis.yml (+0/-4)
Makefile (+2/-17)
breezy/git/remote.py (+0/-1)
breezy/git/tests/test_fetch.py (+2/-0)
breezy/plugins/launchpad/lp_api.py (+1/-1)
python3.flapping (+0/-17)
python3.passing (+0/-30960)
To merge this branch: bzr merge lp:~jelmer/brz/python3-drop-whitelist
Reviewer Review Type Date Requested Status
Martin Packman Approve
Review via email: mp+353755@code.launchpad.net

Commit message

Drop the whitelist for Python 3 now that all tests are passing.

Description of the change

Drop the whitelist for Python 3 now that all tests are passing.

(obviously all other currently proposed merge proposals are prerequisites for this one)

To post a comment you must log in.
Revision history for this message
Martin Packman (gz) wrote :

Looks good, just needs conflict resolving.

review: Approve
Revision history for this message
The Breezy Bot (the-breezy-bot) wrote :
Revision history for this message
The Breezy Bot (the-breezy-bot) wrote :

Running landing tests failed
https://ci.breezy-vcs.org/job/land-brz/459/

Revision history for this message
The Breezy Bot (the-breezy-bot) wrote :

Running landing tests failed
https://ci.breezy-vcs.org/job/land-brz/467/

Revision history for this message
The Breezy Bot (the-breezy-bot) wrote :

Running landing tests failed
https://ci.breezy-vcs.org/job/land-brz/470/

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
=== modified file '.bzrignore'
--- .bzrignore 2018-07-19 22:32:54 +0000
+++ .bzrignore 2018-09-14 02:28:36 +0000
@@ -71,8 +71,5 @@
71breezy/_*.pyd71breezy/_*.pyd
72./.ccache72./.ccache
73.testrepository73.testrepository
74python3.passing.old
75python3.passing.new
76python3.passing.new.solid
77selftest.log74selftest.log
78.coverage75.coverage
7976
=== modified file '.travis.yml'
--- .travis.yml 2018-07-01 10:52:00 +0000
+++ .travis.yml 2018-09-14 02:28:36 +0000
@@ -10,10 +10,6 @@
10 - 3.610 - 3.6
11 - 3.6-dev11 - 3.6-dev
1212
13env:
14 - SELFTEST_OPTIONS="--load-list python3.passing"
15 EXTRA_MAKE_ARGS=""
16
17matrix:13matrix:
18 include:14 include:
19 - python: 2.715 - python: 2.7
2016
=== modified file 'Makefile'
--- Makefile 2018-08-21 20:27:40 +0000
+++ Makefile 2018-09-14 02:28:36 +0000
@@ -52,7 +52,7 @@
52 -$(RM) -f selftest.log52 -$(RM) -f selftest.log
53 echo `date` ": selftest starts" 1>&253 echo `date` ": selftest starts" 1>&2
54 set -o pipefail; BRZ_PLUGIN_PATH=$(BRZ_PLUGIN_PATH) $(PYTHON3) -Werror -Wignore::ImportWarning -Wignore::PendingDeprecationWarning -Wignore::DeprecationWarning -O \54 set -o pipefail; BRZ_PLUGIN_PATH=$(BRZ_PLUGIN_PATH) $(PYTHON3) -Werror -Wignore::ImportWarning -Wignore::PendingDeprecationWarning -Wignore::DeprecationWarning -O \
55 ./brz selftest -Oselftest.timeout=120 --load-list=python3.passing --strict \55 ./brz selftest -Oselftest.timeout=120 --strict \
56 --subunit2 $(tests) | tee selftest.log | subunit-2to156 --subunit2 $(tests) | tee selftest.log | subunit-2to1
57 echo `date` ": selftest ends" 1>&257 echo `date` ": selftest ends" 1>&2
58 # An empty log file should catch errors in the $(PYTHON3)58 # An empty log file should catch errors in the $(PYTHON3)
@@ -62,21 +62,6 @@
62 # Check that there were no errors reported.62 # Check that there were no errors reported.
63 subunit-stats < selftest.log63 subunit-stats < selftest.log
6464
65update-python3-passing:
66 # Generate a stream for PQM to watch.
67 -$(RM) -f selftest.log
68 -BRZ_PLUGIN_PATH=$(BRZ_PLUGIN_PATH) $(PYTHON3) -Werror -Wignore::ImportWarning -Wignore::DeprecationWarning -O \
69 ./brz selftest -Oselftest.timeout=120 --strict \
70 --subunit2 $(tests) > selftest.log
71 grep -v "^#" python3.passing > python3.passing.new
72 cat selftest.log | \
73 subunit-filter --no-failure --no-error --success | \
74 subunit-ls --no-passthrough >> python3.passing.new
75 cp python3.passing python3.passing.old
76 grep "^#" python3.passing.old > python3.passing
77 grep -Fvxf python3.flapping python3.passing.new > python3.passing.new.solid
78 sort -u python3.passing.new.solid >> python3.passing
79
80check-nodocs2: extensions65check-nodocs2: extensions
81 # Generate a stream for PQM to watch.66 # Generate a stream for PQM to watch.
82 -$(RM) -f selftest.log67 -$(RM) -f selftest.log
@@ -101,7 +86,7 @@
101 ./brz selftest -v --parallel=fork -Oselftest.timeout=120 --subunit2 \86 ./brz selftest -v --parallel=fork -Oselftest.timeout=120 --subunit2 \
102 | subunit-filter -s --passthrough --rename "^" "python2."; \87 | subunit-filter -s --passthrough --rename "^" "python2."; \
103 BRZ_PLUGIN_PATH=$(BRZ_PLUGIN_PATH) $(PYTHON3) -Werror -Wignore::FutureWarning -Wignore::DeprecationWarning -Wignore::PendingDeprecationWarning -Wignore::ImportWarning -Wignore::ResourceWarning -O \88 BRZ_PLUGIN_PATH=$(BRZ_PLUGIN_PATH) $(PYTHON3) -Werror -Wignore::FutureWarning -Wignore::DeprecationWarning -Wignore::PendingDeprecationWarning -Wignore::ImportWarning -Wignore::ResourceWarning -O \
104 ./brz selftest -v --parallel=fork -Oselftest.timeout=120 --load-list=python3.passing --subunit2 \89 ./brz selftest -v --parallel=fork -Oselftest.timeout=120 --subunit2 \
105 | subunit-filter -s --passthrough --rename "^" "python3."90 | subunit-filter -s --passthrough --rename "^" "python3."
10691
107# Run Python style checker (apt-get install pyflakes)92# Run Python style checker (apt-get install pyflakes)
10893
=== modified file 'breezy/git/remote.py'
--- breezy/git/remote.py 2018-09-13 12:30:11 +0000
+++ breezy/git/remote.py 2018-09-14 02:28:36 +0000
@@ -932,7 +932,6 @@
932 peeled[k[:-3]] = v932 peeled[k[:-3]] = v
933 else:933 else:
934 base[k] = v934 base[k] = v
935 peeled[k] = v
936 for name, target in symrefs_dict.items():935 for name, target in symrefs_dict.items():
937 base[name] = SYMREF + target936 base[name] = SYMREF + target
938 ret = DictRefsContainer(base)937 ret = DictRefsContainer(base)
939938
=== modified file 'breezy/git/tests/test_fetch.py'
--- breezy/git/tests/test_fetch.py 2018-08-21 20:16:18 +0000
+++ breezy/git/tests/test_fetch.py 2018-09-14 02:28:36 +0000
@@ -137,6 +137,7 @@
137 bb = GitBranchBuilder()137 bb = GitBranchBuilder()
138 bb.set_file("mylink/somefile", b"foo\nbar\n", False)138 bb.set_file("mylink/somefile", b"foo\nbar\n", False)
139 mark1 = bb.commit(b"Somebody <somebody@someorg.org>", b"mymsg1")139 mark1 = bb.commit(b"Somebody <somebody@someorg.org>", b"mymsg1")
140 bb.delete_entry("mylink")
140 bb.set_symlink("mylink", "target/")141 bb.set_symlink("mylink", "target/")
141 mark2 = bb.commit(b"Somebody <somebody@someorg.org>", b"mymsg2")142 mark2 = bb.commit(b"Somebody <somebody@someorg.org>", b"mymsg2")
142 marks = bb.finish()143 marks = bb.finish()
@@ -162,6 +163,7 @@
162 bb = GitBranchBuilder()163 bb = GitBranchBuilder()
163 bb.set_symlink("mylink", "target/")164 bb.set_symlink("mylink", "target/")
164 mark1 = bb.commit(b"Somebody <somebody@someorg.org>", b"mymsg1")165 mark1 = bb.commit(b"Somebody <somebody@someorg.org>", b"mymsg1")
166 bb.delete_entry("mylink")
165 bb.set_file("mylink/somefile", b"foo\nbar\n", False)167 bb.set_file("mylink/somefile", b"foo\nbar\n", False)
166 mark2 = bb.commit(b"Somebody <somebody@someorg.org>", b"mymsg2")168 mark2 = bb.commit(b"Somebody <somebody@someorg.org>", b"mymsg2")
167 marks = bb.finish()169 marks = bb.finish()
168170
=== modified file 'breezy/plugins/launchpad/lp_api.py'
--- breezy/plugins/launchpad/lp_api.py 2017-09-26 00:55:04 +0000
+++ breezy/plugins/launchpad/lp_api.py 2018-09-14 02:28:36 +0000
@@ -182,7 +182,7 @@
182 return False182 return False
183 if url.startswith('lp:'):183 if url.startswith('lp:'):
184 return True184 return True
185 regex = re.compile('([a-z]*\+)*(bzr\+ssh|http)'185 regex = re.compile('([a-z]*\\+)*(bzr\\+ssh|http)'
186 '://bazaar.*.launchpad.net')186 '://bazaar.*.launchpad.net')
187 return bool(regex.match(url))187 return bool(regex.match(url))
188188
189189
=== removed file 'python3.flapping'
--- python3.flapping 2018-08-21 00:23:35 +0000
+++ python3.flapping 1970-01-01 00:00:00 +0000
@@ -1,17 +0,0 @@
1# Tests in this file are known to be flapping; i.e. they fail on some platforms or in some cases
2# (i.e. with certain values of PYTHONHASHSEED).
3breezy.tests.per_repository_chk.test_supported.TestCommitWriteGroupIntegrityCheck.test_missing_chk_leaf_for_inventory(RemoteRepositoryFormat-default(Supported))
4breezy.tests.per_repository_chk.test_supported.TestCommitWriteGroupIntegrityCheck.test_missing_chk_leaf_for_inventory(RemoteRepositoryFormat-v2(Supported))
5breezy.tests.per_repository_chk.test_supported.TestCommitWriteGroupIntegrityCheck.test_missing_chk_leaf_for_inventory(RepositoryFormat2a)
6breezy.tests.per_repository_chk.test_supported.TestCommitWriteGroupIntegrityCheck.test_missing_chk_leaf_for_inventory(RepositoryFormat2aSubtree)
7breezy.git.tests.test_fetch.LocalRepositoryFetchTests.test_symlink_becomes_dir
8breezy.git.tests.test_fetch.LocalRepositoryFetchTests.test_dir_becomes_symlink
9breezy.tests.blackbox.test_shared_repository.TestSharedRepo.test_init_repo_without_username
10breezy.tests.blackbox.test_shared_repository.TestSharedRepo.test_make_repository
11breezy.tests.blackbox.test_shared_repository.TestSharedRepo.test_make_repository_quiet
12breezy.git.tests.test_remote.FetchFromRemoteToBzrTests.test_sprout_with_annotated_tag
13breezy.git.tests.test_remote.FetchFromRemoteToGitTests.test_sprout_with_annotated_tag
14breezy.git.tests.test_remote.RemoteControlDirTests.test_annotated_tag
15breezy.tests.test_sftp_transport.SFTPNonServerTest.test_get_paramiko_vendor
16breezy.tests.test_sftp_transport.SSHVendorBadConnection.test_bad_connection_ssh
17breezy.tests.test_repository.TestPacker.test_pack_optimizes_pack_order
180
=== removed file 'python3.passing'
--- python3.passing 2018-09-12 18:20:02 +0000
+++ python3.passing 1970-01-01 00:00:00 +0000
@@ -1,30960 +0,0 @@
1# This is the list of tests that are known to pass with Python3.
2# "make check-nodocs3" verifies that these pass.
3breezy.git.tests.test_blackbox.ShallowTests.test_log_shallow
4breezy.git.tests.test_blackbox.ShallowTests.test_version_info_custom_without_revno
5breezy.git.tests.test_blackbox.ShallowTests.test_version_info_custom_with_revno
6breezy.git.tests.test_blackbox.ShallowTests.test_version_info_python
7breezy.git.tests.test_blackbox.ShallowTests.test_version_info_rio
8breezy.git.tests.test_blackbox.TestGitBlackBox.test_branch
9breezy.git.tests.test_blackbox.TestGitBlackBox.test_branches
10breezy.git.tests.test_blackbox.TestGitBlackBox.test_branch_ls
11breezy.git.tests.test_blackbox.TestGitBlackBox.test_check
12breezy.git.tests.test_blackbox.TestGitBlackBox.test_checkout
13breezy.git.tests.test_blackbox.TestGitBlackBox.test_diff_format
14breezy.git.tests.test_blackbox.TestGitBlackBox.test_git_import
15breezy.git.tests.test_blackbox.TestGitBlackBox.test_git_import_colo
16breezy.git.tests.test_blackbox.TestGitBlackBox.test_git_import_incremental
17breezy.git.tests.test_blackbox.TestGitBlackBox.test_git_import_tags
18breezy.git.tests.test_blackbox.TestGitBlackBox.test_git_import_uncolocated
19breezy.git.tests.test_blackbox.TestGitBlackBox.test_git_refs_from_bzr
20breezy.git.tests.test_blackbox.TestGitBlackBox.test_git_refs_from_git
21breezy.git.tests.test_blackbox.TestGitBlackBox.test_info
22breezy.git.tests.test_blackbox.TestGitBlackBox.test_info_verbose
23breezy.git.tests.test_blackbox.TestGitBlackBox.test_init
24breezy.git.tests.test_blackbox.TestGitBlackBox.test_init_repo
25breezy.git.tests.test_blackbox.TestGitBlackBox.test_log
26breezy.git.tests.test_blackbox.TestGitBlackBox.test_log_verbose
27breezy.git.tests.test_blackbox.TestGitBlackBox.test_nick
28breezy.git.tests.test_blackbox.TestGitBlackBox.test_tag
29breezy.git.tests.test_blackbox.TestGitBlackBox.test_tags
30breezy.git.tests.test_branch.BranchTests.test_interbranch_pull
31breezy.git.tests.test_branch.BranchTests.test_interbranch_pull_noop
32breezy.git.tests.test_branch.BranchTests.test_interbranch_pull_stop_revision
33breezy.git.tests.test_branch.BranchTests.test_interbranch_pull_with_tags
34breezy.git.tests.test_branch.BranchTests.test_single_rev
35breezy.git.tests.test_branch.BranchTests.test_sprouted_tags
36breezy.git.tests.test_branch.TestGitBranch.test_last_revision_info
37breezy.git.tests.test_branch.TestGitBranch.test_last_revision_is_null
38breezy.git.tests.test_branch.TestGitBranch.test_last_revision_is_valid
39breezy.git.tests.test_branch.TestGitBranch.test_open_by_ref
40breezy.git.tests.test_branch.TestGitBranch.test_open_existing
41breezy.git.tests.test_branch.TestGitBranch.test_repr
42breezy.git.tests.test_branch.TestGitBranch.test_tag
43breezy.git.tests.test_branch.TestGitBranch.test_tag_annotated
44breezy.git.tests.test_branch.TestLocalGitBranchFormat.test_get_format_description
45breezy.git.tests.test_branch.TestLocalGitBranchFormat.test_get_network_name
46breezy.git.tests.test_branch.TestLocalGitBranchFormat.test_supports_tags
47breezy.git.tests.test_branch.TestWithGitBranch.test_get_parent
48breezy.git.tests.test_branch.TestWithGitBranch.test_get_physical_lock_status
49breezy.git.tests.test_branch.TestWithGitBranch.test_get_stacked_on_url
50breezy.git.tests.test_builder.TestGitBranchBuilderReal.test_create_real_branch
51breezy.git.tests.test_builder.TestGitBranchBuilder.test_add_and_commit
52breezy.git.tests.test_builder.TestGitBranchBuilder.test_auto_timestamp
53breezy.git.tests.test_builder.TestGitBranchBuilder.test_commit_base
54breezy.git.tests.test_builder.TestGitBranchBuilder.test_commit_merge
55breezy.git.tests.test_builder.TestGitBranchBuilder.test__create_blob
56breezy.git.tests.test_builder.TestGitBranchBuilder.test_delete_entry
57breezy.git.tests.test_builder.TestGitBranchBuilder.test_delete_entry_newline
58breezy.git.tests.test_builder.TestGitBranchBuilder.test_encode_path
59breezy.git.tests.test_builder.TestGitBranchBuilder.test_reset
60breezy.git.tests.test_builder.TestGitBranchBuilder.test_reset_named_ref
61breezy.git.tests.test_builder.TestGitBranchBuilder.test_reset_revision
62breezy.git.tests.test_builder.TestGitBranchBuilder.test_set_file
63breezy.git.tests.test_builder.TestGitBranchBuilder.test_set_file_executable
64breezy.git.tests.test_builder.TestGitBranchBuilder.test_set_file_newline
65breezy.git.tests.test_builder.TestGitBranchBuilder.test_set_file_unicode
66breezy.git.tests.test_builder.TestGitBranchBuilder.test_set_symlink
67breezy.git.tests.test_builder.TestGitBranchBuilder.test_set_symlink_newline
68breezy.git.tests.test_cache.DictGitShaMapTests.test_blob
69breezy.git.tests.test_cache.DictGitShaMapTests.test_commit
70breezy.git.tests.test_cache.DictGitShaMapTests.test_lookup_notfound
71breezy.git.tests.test_cache.DictGitShaMapTests.test_missing_revisions
72breezy.git.tests.test_cache.DictGitShaMapTests.test_revids
73breezy.git.tests.test_cache.DictGitShaMapTests.test_tree
74breezy.git.tests.test_cache.IndexGitShaMapTests.test_blob
75breezy.git.tests.test_cache.IndexGitShaMapTests.test_commit
76breezy.git.tests.test_cache.IndexGitShaMapTests.test_lookup_notfound
77breezy.git.tests.test_cache.IndexGitShaMapTests.test_missing_revisions
78breezy.git.tests.test_cache.IndexGitShaMapTests.test_revids
79breezy.git.tests.test_cache.IndexGitShaMapTests.test_tree
80breezy.git.tests.test_cache.SqliteGitShaMapTests.test_blob
81breezy.git.tests.test_cache.SqliteGitShaMapTests.test_commit
82breezy.git.tests.test_cache.SqliteGitShaMapTests.test_lookup_notfound
83breezy.git.tests.test_cache.SqliteGitShaMapTests.test_missing_revisions
84breezy.git.tests.test_cache.SqliteGitShaMapTests.test_revids
85breezy.git.tests.test_cache.SqliteGitShaMapTests.test_tree
86breezy.git.tests.test_cache.TdbGitShaMapTests.test_blob
87breezy.git.tests.test_cache.TdbGitShaMapTests.test_commit
88breezy.git.tests.test_cache.TdbGitShaMapTests.test_lookup_notfound
89breezy.git.tests.test_cache.TdbGitShaMapTests.test_missing_revisions
90breezy.git.tests.test_cache.TdbGitShaMapTests.test_revids
91breezy.git.tests.test_cache.TdbGitShaMapTests.test_tree
92breezy.git.tests.test_dir.TestGitDirFormat.test_eq
93breezy.git.tests.test_dir.TestGitDirFormat.test_get_format_description
94breezy.git.tests.test_dir.TestGitDir.test_get_head_branch_reference
95breezy.git.tests.test_dir.TestGitDir.test_git_file
96breezy.git.tests.test_dir.TestGitDir.test_open_existing
97breezy.git.tests.test_dir.TestGitDir.test_open_workingtree
98breezy.git.tests.test_dir.TestGitDir.test_open_workingtree_bare
99breezy.git.tests.test_fetch.ImportObjects.test_directory_converted_to_submodule
100breezy.git.tests.test_fetch.ImportObjects.test_import_blob_simple
101breezy.git.tests.test_fetch.ImportObjects.test_import_tree_empty
102breezy.git.tests.test_fetch.ImportObjects.test_import_tree_empty_root
103breezy.git.tests.test_fetch.ImportObjects.test_import_tree_with_file
104breezy.git.tests.test_fetch.ImportObjects.test_import_tree_with_file_exe
105breezy.git.tests.test_fetch.ImportObjects.test_import_tree_with_unusual_mode_file
106breezy.git.tests.test_fetch.LocalRepositoryFetchTests.test_becomes_executable
107breezy.git.tests.test_fetch.LocalRepositoryFetchTests.test_changing_symlink
108breezy.git.tests.test_fetch.LocalRepositoryFetchTests.test_empty
109breezy.git.tests.test_fetch.LocalRepositoryFetchTests.test_executable
110breezy.git.tests.test_fetch.LocalRepositoryFetchTests.test_incremental
111breezy.git.tests.test_fetch.LocalRepositoryFetchTests.test_into_stacked_on
112breezy.git.tests.test_fetch.LocalRepositoryFetchTests.test_non_ascii_characters
113breezy.git.tests.test_fetch.LocalRepositoryFetchTests.test_single_rev
114breezy.git.tests.test_fetch.LocalRepositoryFetchTests.test_single_rev_specific
115breezy.git.tests.test_fetch.LocalRepositoryFetchTests.test_tagged_tree
116breezy.git.tests.test_git_remote_helper.FetchTests.test_no_wants
117breezy.git.tests.test_git_remote_helper.FetchTests.test_simple
118breezy.git.tests.test_git_remote_helper.OpenLocalDirTests.test_from_dir
119breezy.git.tests.test_git_remote_helper.OpenLocalDirTests.test_from_env_dir
120breezy.git.tests.test_git_remote_helper.RemoteHelperTests.test_capabilities
121breezy.git.tests.test_git_remote_helper.RemoteHelperTests.test_import
122breezy.git.tests.test_git_remote_helper.RemoteHelperTests.test_list_basic
123breezy.git.tests.test_git_remote_helper.RemoteHelperTests.test_option
124breezy.git.tests.test_mapping.FileidTests.test_escape_control_l
125breezy.git.tests.test_mapping.FileidTests.test_escape_space
126breezy.git.tests.test_mapping.FileidTests.test_escape_underscore
127breezy.git.tests.test_mapping.FileidTests.test_escape_underscore_space
128breezy.git.tests.test_mapping.FileidTests.test_unescape_control_l
129breezy.git.tests.test_mapping.FileidTests.test_unescape_underscore
130breezy.git.tests.test_mapping.FileidTests.test_unescape_underscore_space
131breezy.git.tests.test_mapping.FixPersonIdentifierTests.test_fix
132breezy.git.tests.test_mapping.FixPersonIdentifierTests.test_valid
133breezy.git.tests.test_mapping.RoundtripRevisionsFromBazaar.test_custom_property
134breezy.git.tests.test_mapping.RoundtripRevisionsFromBazaar.test_ghost_parent
135breezy.git.tests.test_mapping.RoundtripRevisionsFromBazaar.test_revision_id
136breezy.git.tests.test_mapping.RoundtripRevisionsFromBazaar.test_simple_commit
137breezy.git.tests.test_mapping.RoundtripRevisionsFromGit.test_commit
138breezy.git.tests.test_mapping.RoundtripRevisionsFromGit.test_commit_double_negative_timezone
139breezy.git.tests.test_mapping.RoundtripRevisionsFromGit.test_commit_encoding
140breezy.git.tests.test_mapping.RoundtripRevisionsFromGit.test_commit_extra
141breezy.git.tests.test_mapping.RoundtripRevisionsFromGit.test_commit_mergetag
142breezy.git.tests.test_mapping.RoundtripRevisionsFromGit.test_commit_zero_utc_timezone
143breezy.git.tests.test_mapping.TestImportCommit.test_commit
144breezy.git.tests.test_mapping.TestImportCommit.test_explicit_encoding
145breezy.git.tests.test_mapping.TestImportCommit.test_implicit_encoding_fallback
146breezy.git.tests.test_mapping.TestImportCommit.test_implicit_encoding_utf8
147breezy.git.tests.test_mapping.TestImportCommit.test_mergetag
148breezy.git.tests.test_mapping.TestImportCommit.test_unknown_extra
149breezy.git.tests.test_mapping.TestRevidConversionV1.test_generate_file_id
150breezy.git.tests.test_mapping.TestRevidConversionV1.test_is_control_file
151breezy.git.tests.test_mapping.TestRevidConversionV1.test_simple_bzr_to_git_revision_id
152breezy.git.tests.test_mapping.TestRevidConversionV1.test_simple_git_to_bzr_revision_id
153breezy.git.tests.test_memorytree.TestMemoryTree.test_add_in_subdir
154breezy.git.tests.test_memorytree.TestMemoryTree.test_add_with_kind
155breezy.git.tests.test_memorytree.TestMemoryTree.test_commit_trivial
156breezy.git.tests.test_memorytree.TestMemoryTree.test_create_on_branch
157breezy.git.tests.test_memorytree.TestMemoryTree.test_create_on_branch_with_content
158breezy.git.tests.test_memorytree.TestMemoryTree.test_last_revision
159breezy.git.tests.test_memorytree.TestMemoryTree.test_lock_tree_write
160breezy.git.tests.test_memorytree.TestMemoryTree.test_lock_tree_write_after_read_fails
161breezy.git.tests.test_memorytree.TestMemoryTree.test_lock_write
162breezy.git.tests.test_memorytree.TestMemoryTree.test_lock_write_after_read_fails
163breezy.git.tests.test_memorytree.TestMemoryTree.test_put_existing_file
164breezy.git.tests.test_memorytree.TestMemoryTree.test_put_new_file
165breezy.git.tests.test_memorytree.TestMemoryTree.test_rename_file
166breezy.git.tests.test_memorytree.TestMemoryTree.test_rename_file_to_subdir
167breezy.git.tests.test_memorytree.TestMemoryTree.test_unversion
168breezy.git.tests.test_object_store.BazaarObjectStoreTests.test_contains
169breezy.git.tests.test_object_store.BazaarObjectStoreTests.test_get_blob
170breezy.git.tests.test_object_store.BazaarObjectStoreTests.test_get_raw
171breezy.git.tests.test_object_store.DirectoryToTreeTests.test_empty
172breezy.git.tests.test_object_store.DirectoryToTreeTests.test_empty_dir
173breezy.git.tests.test_object_store.DirectoryToTreeTests.test_empty_dir_dummy_files
174breezy.git.tests.test_object_store.DirectoryToTreeTests.test_empty_root
175breezy.git.tests.test_object_store.DirectoryToTreeTests.test_with_file
176breezy.git.tests.test_object_store.DirectoryToTreeTests.test_with_gitdir
177breezy.git.tests.test_object_store.ExpectedShaTests.test_binary
178breezy.git.tests.test_object_store.ExpectedShaTests.test_hex
179breezy.git.tests.test_object_store.ExpectedShaTests.test_none
180breezy.git.tests.test_object_store.FindMissingBzrRevidsTests.test_one_missing
181breezy.git.tests.test_object_store.FindMissingBzrRevidsTests.test_simple
182breezy.git.tests.test_object_store.FindMissingBzrRevidsTests.test_two_missing
183breezy.git.tests.test_object_store.FindMissingBzrRevidsTests.test_two_missing_history
184breezy.git.tests.test_object_store.FindMissingBzrRevidsTests.test_up_to_date
185breezy.git.tests.test_object_store.LRUTreeCacheTests.test_get
186breezy.git.tests.test_object_store.LRUTreeCacheTests.test_get_not_present
187breezy.git.tests.test_object_store.LRUTreeCacheTests.test_iter_revision_trees
188breezy.git.tests.test_object_store.LRUTreeCacheTests.test_revision_trees
189breezy.git.tests.test_object_store.TreeToObjectsTests.test_no_changes
190breezy.git.tests.test_object_store.TreeToObjectsTests.test_with_gitdir
191breezy.git.tests.test_pristine_tar.ReadPristineTarData.test_read_pristine_tar_data
192breezy.git.tests.test_pristine_tar.ReadPristineTarData.test_read_pristine_tar_data_no_branch
193breezy.git.tests.test_pristine_tar.ReadPristineTarData.test_read_pristine_tar_data_no_file
194breezy.git.tests.test_pristine_tar.RevisionPristineTarDataTests.test_pristine_tar_delta_gz
195breezy.git.tests.test_pristine_tar.RevisionPristineTarDataTests.test_pristine_tar_delta_unknown
196breezy.git.tests.test_pristine_tar.StoreGitPristineTarData.test_store_new
197breezy.git.tests.test_push.InterToGitRepositoryTests.test_instance
198breezy.git.tests.test_push.InterToGitRepositoryTests.test_missing_revisions_unknown_stop_rev
199breezy.git.tests.test_push.InterToGitRepositoryTests.test_odd_rename
200breezy.git.tests.test_push.InterToGitRepositoryTests.test_pointless_fetch_refs
201breezy.git.tests.test_push.InterToGitRepositoryTests.test_pointless_fetch_refs_old_mapping
202breezy.git.tests.test_push.InterToGitRepositoryTests.test_pointless_lossy_fetch_refs
203breezy.git.tests.test_push.InterToGitRepositoryTests.test_pointless_missing_revisions
204breezy.git.tests.test_refs.BazaarRefsContainerTests.test_empty
205breezy.git.tests.test_refs.BazaarRefsContainerTests.test_some_branch
206breezy.git.tests.test_refs.BazaarRefsContainerTests.test_some_commit
207breezy.git.tests.test_refs.BazaarRefsContainerTests.test_some_tag
208breezy.git.tests.test_refs.BranchNameRefConversionTests.test_branch
209breezy.git.tests.test_refs.BranchNameRefConversionTests.test_head
210breezy.git.tests.test_refs.BranchNameRefConversionTests.test_tag
211breezy.git.tests.test_remote.FetchFromRemoteToBzrTests.test_sprout_simple
212breezy.git.tests.test_remote.FetchFromRemoteToBzrTests.test_sprout_with_tags
213breezy.git.tests.test_remote.FetchFromRemoteToGitTests.test_sprout_simple
214breezy.git.tests.test_remote.FetchFromRemoteToGitTests.test_sprout_with_tags
215breezy.git.tests.test_remote.ParseGitErrorTests.test_notbrancherror
216breezy.git.tests.test_remote.ParseGitErrorTests.test_unknown
217breezy.git.tests.test_remote.PushToRemoteFromBzrTests.test_push
218breezy.git.tests.test_remote.PushToRemoteFromBzrTests.test_push_branch_new
219breezy.git.tests.test_remote.PushToRemoteFromBzrTests.test_push_diverged
220breezy.git.tests.test_remote.PushToRemoteFromGitTests.test_push
221breezy.git.tests.test_remote.PushToRemoteFromGitTests.test_push_branch_new
222breezy.git.tests.test_remote.PushToRemoteFromGitTests.test_push_diverged
223breezy.git.tests.test_remote.RemoteControlDirTests.test_get_branches
224breezy.git.tests.test_remote.RemoteControlDirTests.test_list_branches
225breezy.git.tests.test_remote.RemoteControlDirTests.test_remove_branch
226breezy.git.tests.test_remote.RemoteControlDirTests.test_remove_tag
227breezy.git.tests.test_remote.RemoteControlDirTests.test_set_tag
228breezy.git.tests.test_remote.SplitUrlTests.test_homedir
229breezy.git.tests.test_remote.SplitUrlTests.test_nopath
230breezy.git.tests.test_remote.SplitUrlTests.test_port
231breezy.git.tests.test_remote.SplitUrlTests.test_simple
232breezy.git.tests.test_remote.SplitUrlTests.test_slashpath
233breezy.git.tests.test_remote.SplitUrlTests.test_username
234breezy.git.tests.test_remote.TestRemoteGitBranchFormat.test_get_format_description
235breezy.git.tests.test_remote.TestRemoteGitBranchFormat.test_get_network_name
236breezy.git.tests.test_remote.TestRemoteGitBranchFormat.test_supports_tags
237breezy.git.tests.test_repository.GitRepositoryFormat.test_get_format_description
238breezy.git.tests.test_repository.RevisionGistImportTests.test_pointless
239breezy.git.tests.test_repository.SigningGitRepository.test_signed_commit
240breezy.git.tests.test_repository.TestGitRepositoryFeatures.test_get_revision
241breezy.git.tests.test_repository.TestGitRepositoryFeatures.test_get_revision_unknown
242breezy.git.tests.test_repository.TestGitRepositoryFeatures.test_has_git_repo
243breezy.git.tests.test_repository.TestGitRepositoryFeatures.test_has_revision
244breezy.git.tests.test_repository.TestGitRepositoryFeatures.test_has_revisions
245breezy.git.tests.test_repository.TestGitRepositoryFeatures.test_open_existing
246breezy.git.tests.test_repository.TestGitRepositoryFeatures.test_pack
247breezy.git.tests.test_repository.TestGitRepositoryFeatures.test_revision_tree
248breezy.git.tests.test_repository.TestGitRepository.test_all_revision_ids
249breezy.git.tests.test_repository.TestGitRepository.test_all_revision_ids_none
250breezy.git.tests.test_repository.TestGitRepository.test_get_known_graph_ancestry
251breezy.git.tests.test_repository.TestGitRepository.test_get_parent_map_null
252breezy.git.tests.test_repository.TestGitRepository.test_get_signature_text
253breezy.git.tests.test_repository.TestGitRepository.test_has_signature_for_revision_id
254breezy.git.tests.test_repository.TestGitRepository.test_revision_tree_none
255breezy.git.tests.test_repository.TestGitRepository.test_supports_rich_root
256breezy.git.tests.test_revspec.Sha1ValidTests.test_invalid
257breezy.git.tests.test_revspec.Sha1ValidTests.test_valid
258breezy.git.tests.test_roundtrip.ExtractMetadataTests.test_roundtrip
259breezy.git.tests.test_roundtrip.FileIdRoundTripTests.test_deserialize
260breezy.git.tests.test_roundtrip.FileIdRoundTripTests.test_serialize
261breezy.git.tests.test_roundtrip.FormatTests.test_empty
262breezy.git.tests.test_roundtrip.FormatTests.test_parent_ids
263breezy.git.tests.test_roundtrip.FormatTests.test_properties
264breezy.git.tests.test_roundtrip.FormatTests.test_revid
265breezy.git.tests.test_roundtrip.GenerateMetadataTests.test_no_metadata
266breezy.git.tests.test_roundtrip.GenerateMetadataTests.test_roundtrip
267breezy.git.tests.test_roundtrip.RoundtripTests.test_parent_ids
268breezy.git.tests.test_roundtrip.RoundtripTests.test_properties
269breezy.git.tests.test_roundtrip.RoundtripTests.test_revid
270breezy.git.tests.test_server.TestPlainFetch.test_fetch_from_native_git
271breezy.git.tests.test_server.TestPlainFetch.test_fetch_from_non_git
272breezy.git.tests.test_server.TestPlainFetch.test_fetch_nothing
273breezy.git.tests.test_server.TestPresent.test_present
274breezy.git.tests.test_transportgit.TransportObjectStoreTests.test_add_commit
275breezy.git.tests.test_transportgit.TransportObjectStoreTests.test_add_object
276breezy.git.tests.test_transportgit.TransportObjectStoreTests.test_add_objects
277breezy.git.tests.test_transportgit.TransportObjectStoreTests.test_add_objects_empty
278breezy.git.tests.test_transportgit.TransportObjectStoreTests.test_close
279breezy.git.tests.test_transportgit.TransportObjectStoreTests.test_contains_nonexistant
280breezy.git.tests.test_transportgit.TransportObjectStoreTests.test_determine_wants_all
281breezy.git.tests.test_transportgit.TransportObjectStoreTests.test_determine_wants_all_zero
282breezy.git.tests.test_transportgit.TransportObjectStoreTests.test_empty_packs
283breezy.git.tests.test_transportgit.TransportObjectStoreTests.test_get_nonexistant
284breezy.git.tests.test_transportgit.TransportObjectStoreTests.test_get_raw
285breezy.git.tests.test_transportgit.TransportObjectStoreTests.test_iter
286breezy.git.tests.test_transportgit.TransportObjectStoreTests.test_iter_tree_contents
287breezy.git.tests.test_transportgit.TransportObjectStoreTests.test_iter_tree_contents_include_trees
288breezy.git.tests.test_transportgit.TransportObjectStoreTests.test_pack_loose_objects
289breezy.git.tests.test_transportgit.TransportObjectStoreTests.test_peel_sha
290breezy.git.tests.test_transportgit.TransportObjectStoreTests.test_remembers_packs
291breezy.git.tests.test_transportgit.TransportObjectStoreTests.test_repack
292breezy.git.tests.test_transportgit.TransportObjectStoreTests.test_repack_existing
293breezy.git.tests.test_transportgit.TransportObjectStoreTests.test_store_resilience
294breezy.git.tests.test_transportgit.TransportObjectStoreTests.test_tree_changes
295breezy.git.tests.test_unpeel_map.TestUnpeelMap.test_load
296breezy.git.tests.test_unpeel_map.TestUnpeelMap.test_new
297breezy.git.tests.test_unpeel_map.TestUnpeelMap.test_update
298breezy.git.tests.test_urls.TestConvertURL.test_path
299breezy.git.tests.test_urls.TestConvertURL.test_regular
300breezy.git.tests.test_urls.TestConvertURL.test_simple
301breezy.git.tests.test_workingtree.ChangesBetweenGitTreeAndWorkingCopyTests.test_added_file
302breezy.git.tests.test_workingtree.ChangesBetweenGitTreeAndWorkingCopyTests.test_added_unknown_file
303breezy.git.tests.test_workingtree.ChangesBetweenGitTreeAndWorkingCopyTests.test_empty
304breezy.git.tests.test_workingtree.ChangesBetweenGitTreeAndWorkingCopyTests.test_extra
305breezy.git.tests.test_workingtree.ChangesBetweenGitTreeAndWorkingCopyTests.test_missing_added_file
306breezy.git.tests.test_workingtree.ChangesBetweenGitTreeAndWorkingCopyTests.test_missing_versioned_file
307breezy.git.tests.test_workingtree.ChangesBetweenGitTreeAndWorkingCopyTests.test_versioned_replace_by_dir
308breezy.git.tests.test_workingtree.GitWorkingTreeTests.test_add_conflict
309breezy.git.tests.test_workingtree.GitWorkingTreeTests.test_conflict_list
310breezy.git.tests.test_workingtree.GitWorkingTreeTests.test_is_ignored_directory
311breezy.git.tests.test_workingtree.GitWorkingTreeTests.test_revert_empty
312breezy.git.tests.test_workingtree.TreeDeltaFromGitChangesTests.test_empty
313breezy.git.tests.test_workingtree.TreeDeltaFromGitChangesTests.test_missing
314breezy.plugins.bash_completion.tests.test_bashcomp.BlackboxTests.test_bash_completion
315breezy.plugins.bash_completion.tests.test_bashcomp.TestBashCodeGen.test_brz_version
316breezy.plugins.bash_completion.tests.test_bashcomp.TestBashCodeGen.test_command_case
317breezy.plugins.bash_completion.tests.test_bashcomp.TestBashCodeGen.test_command_cases
318breezy.plugins.bash_completion.tests.test_bashcomp.TestBashCodeGen.test_command_names
319breezy.plugins.bash_completion.tests.test_bashcomp.TestBashCodeGen.test_debug_output
320breezy.plugins.bash_completion.tests.test_bashcomp.TestBashCodeGen.test_global_options
321breezy.plugins.bash_completion.tests.test_bashcomp.TestBashCompletionInvoking.test_revspec_tag_all
322breezy.plugins.bash_completion.tests.test_bashcomp.TestBashCompletionInvoking.test_revspec_tag_endrange
323breezy.plugins.bash_completion.tests.test_bashcomp.TestBashCompletionInvoking.test_revspec_tag_prefix
324breezy.plugins.bash_completion.tests.test_bashcomp.TestBashCompletionInvoking.test_revspec_tag_spaces
325breezy.plugins.bash_completion.tests.test_bashcomp.TestBashCompletion.test_cmd_ini
326breezy.plugins.bash_completion.tests.test_bashcomp.TestBashCompletion.test_commit_dashm
327breezy.plugins.bash_completion.tests.test_bashcomp.TestBashCompletion.test_global_opts
328breezy.plugins.bash_completion.tests.test_bashcomp.TestBashCompletion.test_init_format_2
329breezy.plugins.bash_completion.tests.test_bashcomp.TestBashCompletion.test_init_format_any
330breezy.plugins.bash_completion.tests.test_bashcomp.TestBashCompletion.test_init_opts
331breezy.plugins.bash_completion.tests.test_bashcomp.TestBashCompletion.test_simple_scipt
332breezy.plugins.bash_completion.tests.test_bashcomp.TestBashCompletion.test_status_negated
333breezy.plugins.bash_completion.tests.test_bashcomp.TestDataCollector.test_commands
334breezy.plugins.bash_completion.tests.test_bashcomp.TestDataCollector.test_commands_from_plugins
335breezy.plugins.bash_completion.tests.test_bashcomp.TestDataCollector.test_commit_dashm
336breezy.plugins.bash_completion.tests.test_bashcomp.TestDataCollector.test_global_options
337breezy.plugins.bash_completion.tests.test_bashcomp.TestDataCollector.test_init_format
338breezy.plugins.bash_completion.tests.test_bashcomp.TestDataCollector.test_status_negated
339breezy.plugins.changelog_merge.tests.test_changelog_merge.TestChangeLogMerger.test_merge_text_returns_not_applicable
340breezy.plugins.changelog_merge.tests.test_changelog_merge.TestChangeLogMerger.test_merge_text_returns_success
341breezy.plugins.changelog_merge.tests.test_changelog_merge.TestMergeCoreLogic.test_acceptance_bug_723968
342breezy.plugins.changelog_merge.tests.test_changelog_merge.TestMergeCoreLogic.test_default_guess_edits
343breezy.plugins.changelog_merge.tests.test_changelog_merge.TestMergeCoreLogic.test_more_complex_conflict
344breezy.plugins.changelog_merge.tests.test_changelog_merge.TestMergeCoreLogic.test_new_in_other_floats_to_top
345breezy.plugins.changelog_merge.tests.test_changelog_merge.TestMergeCoreLogic.test_too_hard
346breezy.plugins.commitfromnews.tests.test_committemplate.TestCommitTemplate.test_added_NEWS
347breezy.plugins.commitfromnews.tests.test_committemplate.TestCommitTemplate.test_changed_NEWS
348breezy.plugins.commitfromnews.tests.test_committemplate.TestCommitTemplate.test_fix_bug
349breezy.plugins.commitfromnews.tests.test_committemplate.TestCommitTemplate.test_initial
350breezy.plugins.commitfromnews.tests.test_msgeditor.TestRegisters.test_registered_at_import
351breezy.plugins.commitfromnews.tests.test_msgeditor.TestRegisters.test_register_registers_for_commit_message_template
352breezy.plugins.email.tests.testemail.TestEmailerWithLocal.test_local_has_revision
353breezy.plugins.email.tests.testemail.TestEmailerWithLocal.test_local_missing_revision
354breezy.plugins.email.tests.testemail.TestGetTo.test_body
355breezy.plugins.email.tests.testemail.TestGetTo.test_command_line
356breezy.plugins.email.tests.testemail.TestGetTo.test_custom_body
357breezy.plugins.email.tests.testemail.TestGetTo.test_custom_subject
358breezy.plugins.email.tests.testemail.TestGetTo.test_diff_filename
359breezy.plugins.email.tests.testemail.TestGetTo.test_from
360breezy.plugins.email.tests.testemail.TestGetTo.test_from_default
361breezy.plugins.email.tests.testemail.TestGetTo.test_headers
362breezy.plugins.email.tests.testemail.TestGetTo.test_public_url_set
363breezy.plugins.email.tests.testemail.TestGetTo.test_send_to_multiple
364breezy.plugins.email.tests.testemail.TestGetTo.test_should_not_send
365breezy.plugins.email.tests.testemail.TestGetTo.test_should_not_send_sender_configured
366breezy.plugins.email.tests.testemail.TestGetTo.test_should_not_send_to_configured
367breezy.plugins.email.tests.testemail.TestGetTo.test_should_send
368breezy.plugins.email.tests.testemail.TestGetTo.test_subject
369breezy.plugins.email.tests.testemail.TestGetTo.test_to
370breezy.plugins.email.tests.testemail.TestGetTo.test_url_precedence
371breezy.plugins.email.tests.testemail.TestGetTo.test_url_set
372breezy.plugins.email.tests.testemail.TestGetTo.test_url_unset
373breezy.plugins.fastimport.tests.test_branch_mapper.TestBranchMapper.test_git_to_bzr
374breezy.plugins.fastimport.tests.test_branch_mapper.TestBranchMapper.test_git_to_bzr_for_trunk
375breezy.plugins.fastimport.tests.test_branch_mapper.TestBranchMapper.test_git_to_bzr_with_slashes
376breezy.plugins.fastimport.tests.test_commands.TestFastExport.test_baseline_option
377breezy.plugins.fastimport.tests.test_commands.TestFastExport.test_empty
378breezy.plugins.fastimport.tests.test_commands.TestFastExport.test_file
379breezy.plugins.fastimport.tests.test_commands.TestFastExport.test_no_tags
380breezy.plugins.fastimport.tests.test_commands.TestFastExport.test_pointless
381breezy.plugins.fastimport.tests.test_commands.TestFastExport.test_tag_rewriting
382breezy.plugins.fastimport.tests.test_commands.TestFastImport.test_empty
383breezy.plugins.fastimport.tests.test_commands.TestFastImport.test_file
384breezy.plugins.fastimport.tests.test_commands.TestFastImport.test_missing_bytes
385breezy.plugins.fastimport.tests.test_commands.TestSourceStream.test_get_source_file
386breezy.plugins.fastimport.tests.test_commands.TestSourceStream.test_get_source_gz
387breezy.plugins.fastimport.tests.test_commands.TestSourceStream.test_get_source_stream_stdin
388breezy.plugins.fastimport.tests.test_exporter.CheckRefFormatTests.test_invalid
389breezy.plugins.fastimport.tests.test_exporter.CheckRefFormatTests.test_valid
390breezy.plugins.fastimport.tests.test_exporter.CheckRefnameRewriting.test_passthrough_valid
391breezy.plugins.fastimport.tests.test_exporter.CheckRefnameRewriting.test_rewrite_invalid
392breezy.plugins.fastimport.tests.test_exporter.TestOutputStream.test_get_output_stream_stdout
393breezy.plugins.fastimport.tests.test_exporter.TestOutputStream.test_get_source_file
394breezy.plugins.fastimport.tests.test_exporter.TestOutputStream.test_get_source_gz
395breezy.plugins.fastimport.tests.test_generic_processor.TestAddNonUtf8InBranch.test_add(1.9-rich-root)
396breezy.plugins.fastimport.tests.test_generic_processor.TestAddNonUtf8InBranch.test_add(2a)
397breezy.plugins.fastimport.tests.test_generic_processor.TestAddNonUtf8InBranch.test_add(pack-0.92)
398breezy.plugins.fastimport.tests.test_generic_processor.TestCommitCommands.test_non_utf8_commit_message(1.9-rich-root)
399breezy.plugins.fastimport.tests.test_generic_processor.TestCommitCommands.test_non_utf8_commit_message(2a)
400breezy.plugins.fastimport.tests.test_generic_processor.TestCommitCommands.test_non_utf8_commit_message(pack-0.92)
401breezy.plugins.fastimport.tests.test_generic_processor.TestImportToPackCopyModified.test_copy_of_modified_file_in_root(1.9-rich-root)
402breezy.plugins.fastimport.tests.test_generic_processor.TestImportToPackCopyModified.test_copy_of_modified_file_in_root(2a)
403breezy.plugins.fastimport.tests.test_generic_processor.TestImportToPackCopyModified.test_copy_of_modified_file_in_root(pack-0.92)
404breezy.plugins.fastimport.tests.test_generic_processor.TestImportToPackCopyModified.test_copy_of_modified_file_in_subdir(1.9-rich-root)
405breezy.plugins.fastimport.tests.test_generic_processor.TestImportToPackCopyModified.test_copy_of_modified_file_in_subdir(2a)
406breezy.plugins.fastimport.tests.test_generic_processor.TestImportToPackCopyModified.test_copy_of_modified_file_in_subdir(pack-0.92)
407breezy.plugins.fastimport.tests.test_generic_processor.TestImportToPackCopyModified.test_copy_of_modified_file_to_new_dir(1.9-rich-root)
408breezy.plugins.fastimport.tests.test_generic_processor.TestImportToPackCopyModified.test_copy_of_modified_file_to_new_dir(2a)
409breezy.plugins.fastimport.tests.test_generic_processor.TestImportToPackCopyModified.test_copy_of_modified_file_to_new_dir(pack-0.92)
410breezy.plugins.fastimport.tests.test_generic_processor.TestImportToPackCopyModified.test_copy_of_modified_symlink_in_root(1.9-rich-root)
411breezy.plugins.fastimport.tests.test_generic_processor.TestImportToPackCopyModified.test_copy_of_modified_symlink_in_root(2a)
412breezy.plugins.fastimport.tests.test_generic_processor.TestImportToPackCopyModified.test_copy_of_modified_symlink_in_root(pack-0.92)
413breezy.plugins.fastimport.tests.test_generic_processor.TestImportToPackCopyModified.test_copy_of_modified_symlink_in_subdir(1.9-rich-root)
414breezy.plugins.fastimport.tests.test_generic_processor.TestImportToPackCopyModified.test_copy_of_modified_symlink_in_subdir(2a)
415breezy.plugins.fastimport.tests.test_generic_processor.TestImportToPackCopyModified.test_copy_of_modified_symlink_in_subdir(pack-0.92)
416breezy.plugins.fastimport.tests.test_generic_processor.TestImportToPackCopyModified.test_copy_of_modified_symlink_to_new_dir(1.9-rich-root)
417breezy.plugins.fastimport.tests.test_generic_processor.TestImportToPackCopyModified.test_copy_of_modified_symlink_to_new_dir(2a)
418breezy.plugins.fastimport.tests.test_generic_processor.TestImportToPackCopyModified.test_copy_of_modified_symlink_to_new_dir(pack-0.92)
419breezy.plugins.fastimport.tests.test_generic_processor.TestImportToPackCopyNew.test_copy_new_file_in_root(1.9-rich-root)
420breezy.plugins.fastimport.tests.test_generic_processor.TestImportToPackCopyNew.test_copy_new_file_in_root(2a)
421breezy.plugins.fastimport.tests.test_generic_processor.TestImportToPackCopyNew.test_copy_new_file_in_root(pack-0.92)
422breezy.plugins.fastimport.tests.test_generic_processor.TestImportToPackCopyNew.test_copy_new_file_in_subdir(1.9-rich-root)
423breezy.plugins.fastimport.tests.test_generic_processor.TestImportToPackCopyNew.test_copy_new_file_in_subdir(2a)
424breezy.plugins.fastimport.tests.test_generic_processor.TestImportToPackCopyNew.test_copy_new_file_in_subdir(pack-0.92)
425breezy.plugins.fastimport.tests.test_generic_processor.TestImportToPackCopyNew.test_copy_new_file_to_new_dir(1.9-rich-root)
426breezy.plugins.fastimport.tests.test_generic_processor.TestImportToPackCopyNew.test_copy_new_file_to_new_dir(2a)
427breezy.plugins.fastimport.tests.test_generic_processor.TestImportToPackCopyNew.test_copy_new_file_to_new_dir(pack-0.92)
428breezy.plugins.fastimport.tests.test_generic_processor.TestImportToPackCopyNew.test_copy_new_symlink_in_root(1.9-rich-root)
429breezy.plugins.fastimport.tests.test_generic_processor.TestImportToPackCopyNew.test_copy_new_symlink_in_root(2a)
430breezy.plugins.fastimport.tests.test_generic_processor.TestImportToPackCopyNew.test_copy_new_symlink_in_root(pack-0.92)
431breezy.plugins.fastimport.tests.test_generic_processor.TestImportToPackCopyNew.test_copy_new_symlink_in_subdir(1.9-rich-root)
432breezy.plugins.fastimport.tests.test_generic_processor.TestImportToPackCopyNew.test_copy_new_symlink_in_subdir(2a)
433breezy.plugins.fastimport.tests.test_generic_processor.TestImportToPackCopyNew.test_copy_new_symlink_in_subdir(pack-0.92)
434breezy.plugins.fastimport.tests.test_generic_processor.TestImportToPackCopyNew.test_copy_new_symlink_to_new_dir(1.9-rich-root)
435breezy.plugins.fastimport.tests.test_generic_processor.TestImportToPackCopyNew.test_copy_new_symlink_to_new_dir(2a)
436breezy.plugins.fastimport.tests.test_generic_processor.TestImportToPackCopyNew.test_copy_new_symlink_to_new_dir(pack-0.92)
437breezy.plugins.fastimport.tests.test_generic_processor.TestImportToPackCopy.test_copy_file_in_root(1.9-rich-root)
438breezy.plugins.fastimport.tests.test_generic_processor.TestImportToPackCopy.test_copy_file_in_root(2a)
439breezy.plugins.fastimport.tests.test_generic_processor.TestImportToPackCopy.test_copy_file_in_root(pack-0.92)
440breezy.plugins.fastimport.tests.test_generic_processor.TestImportToPackCopy.test_copy_file_in_subdir(1.9-rich-root)
441breezy.plugins.fastimport.tests.test_generic_processor.TestImportToPackCopy.test_copy_file_in_subdir(2a)
442breezy.plugins.fastimport.tests.test_generic_processor.TestImportToPackCopy.test_copy_file_in_subdir(pack-0.92)
443breezy.plugins.fastimport.tests.test_generic_processor.TestImportToPackCopy.test_copy_file_to_new_dir(1.9-rich-root)
444breezy.plugins.fastimport.tests.test_generic_processor.TestImportToPackCopy.test_copy_file_to_new_dir(2a)
445breezy.plugins.fastimport.tests.test_generic_processor.TestImportToPackCopy.test_copy_file_to_new_dir(pack-0.92)
446breezy.plugins.fastimport.tests.test_generic_processor.TestImportToPackCopy.test_copy_symlink_in_root(1.9-rich-root)
447breezy.plugins.fastimport.tests.test_generic_processor.TestImportToPackCopy.test_copy_symlink_in_root(2a)
448breezy.plugins.fastimport.tests.test_generic_processor.TestImportToPackCopy.test_copy_symlink_in_root(pack-0.92)
449breezy.plugins.fastimport.tests.test_generic_processor.TestImportToPackCopy.test_copy_symlink_in_subdir(1.9-rich-root)
450breezy.plugins.fastimport.tests.test_generic_processor.TestImportToPackCopy.test_copy_symlink_in_subdir(2a)
451breezy.plugins.fastimport.tests.test_generic_processor.TestImportToPackCopy.test_copy_symlink_in_subdir(pack-0.92)
452breezy.plugins.fastimport.tests.test_generic_processor.TestImportToPackCopy.test_copy_symlink_to_new_dir(1.9-rich-root)
453breezy.plugins.fastimport.tests.test_generic_processor.TestImportToPackCopy.test_copy_symlink_to_new_dir(2a)
454breezy.plugins.fastimport.tests.test_generic_processor.TestImportToPackCopy.test_copy_symlink_to_new_dir(pack-0.92)
455breezy.plugins.fastimport.tests.test_generic_processor.TestImportToPackCopyToDeleted.test_copy_to_deleted_file_in_root(1.9-rich-root)
456breezy.plugins.fastimport.tests.test_generic_processor.TestImportToPackCopyToDeleted.test_copy_to_deleted_file_in_root(2a)
457breezy.plugins.fastimport.tests.test_generic_processor.TestImportToPackCopyToDeleted.test_copy_to_deleted_file_in_root(pack-0.92)
458breezy.plugins.fastimport.tests.test_generic_processor.TestImportToPackCopyToDeleted.test_copy_to_deleted_file_in_subdir(1.9-rich-root)
459breezy.plugins.fastimport.tests.test_generic_processor.TestImportToPackCopyToDeleted.test_copy_to_deleted_file_in_subdir(2a)
460breezy.plugins.fastimport.tests.test_generic_processor.TestImportToPackCopyToDeleted.test_copy_to_deleted_file_in_subdir(pack-0.92)
461breezy.plugins.fastimport.tests.test_generic_processor.TestImportToPackCopyToDeleted.test_copy_to_deleted_symlink_in_root(1.9-rich-root)
462breezy.plugins.fastimport.tests.test_generic_processor.TestImportToPackCopyToDeleted.test_copy_to_deleted_symlink_in_root(2a)
463breezy.plugins.fastimport.tests.test_generic_processor.TestImportToPackCopyToDeleted.test_copy_to_deleted_symlink_in_root(pack-0.92)
464breezy.plugins.fastimport.tests.test_generic_processor.TestImportToPackCopyToDeleted.test_copy_to_deleted_symlink_in_subdir(1.9-rich-root)
465breezy.plugins.fastimport.tests.test_generic_processor.TestImportToPackCopyToDeleted.test_copy_to_deleted_symlink_in_subdir(2a)
466breezy.plugins.fastimport.tests.test_generic_processor.TestImportToPackCopyToDeleted.test_copy_to_deleted_symlink_in_subdir(pack-0.92)
467breezy.plugins.fastimport.tests.test_generic_processor.TestImportToPackDeleteDirectory.test_delete_dir(1.9-rich-root)
468breezy.plugins.fastimport.tests.test_generic_processor.TestImportToPackDeleteDirectory.test_delete_dir(2a)
469breezy.plugins.fastimport.tests.test_generic_processor.TestImportToPackDeleteDirectory.test_delete_dir(pack-0.92)
470breezy.plugins.fastimport.tests.test_generic_processor.TestImportToPackDeleteDirectoryThenAddFile.test_delete_dir_then_add_file(1.9-rich-root)
471breezy.plugins.fastimport.tests.test_generic_processor.TestImportToPackDeleteDirectoryThenAddFile.test_delete_dir_then_add_file(2a)
472breezy.plugins.fastimport.tests.test_generic_processor.TestImportToPackDeleteDirectoryThenAddFile.test_delete_dir_then_add_file(pack-0.92)
473breezy.plugins.fastimport.tests.test_generic_processor.TestImportToPackDeleteDirectoryThenAddFile.test_delete_dir_then_add_symlink(1.9-rich-root)
474breezy.plugins.fastimport.tests.test_generic_processor.TestImportToPackDeleteDirectoryThenAddFile.test_delete_dir_then_add_symlink(2a)
475breezy.plugins.fastimport.tests.test_generic_processor.TestImportToPackDeleteDirectoryThenAddFile.test_delete_dir_then_add_symlink(pack-0.92)
476breezy.plugins.fastimport.tests.test_generic_processor.TestImportToPackDeleteMultiLevel.test_delete_file_complex_level(1.9-rich-root)
477breezy.plugins.fastimport.tests.test_generic_processor.TestImportToPackDeleteMultiLevel.test_delete_file_complex_level(2a)
478breezy.plugins.fastimport.tests.test_generic_processor.TestImportToPackDeleteMultiLevel.test_delete_file_complex_level(pack-0.92)
479breezy.plugins.fastimport.tests.test_generic_processor.TestImportToPackDeleteMultiLevel.test_delete_file_single_level(1.9-rich-root)
480breezy.plugins.fastimport.tests.test_generic_processor.TestImportToPackDeleteMultiLevel.test_delete_file_single_level(2a)
481breezy.plugins.fastimport.tests.test_generic_processor.TestImportToPackDeleteMultiLevel.test_delete_file_single_level(pack-0.92)
482breezy.plugins.fastimport.tests.test_generic_processor.TestImportToPackDeleteMultiLevel.test_delete_files_in_multiple_levels(1.9-rich-root)
483breezy.plugins.fastimport.tests.test_generic_processor.TestImportToPackDeleteMultiLevel.test_delete_files_in_multiple_levels(2a)
484breezy.plugins.fastimport.tests.test_generic_processor.TestImportToPackDeleteMultiLevel.test_delete_files_in_multiple_levels(pack-0.92)
485breezy.plugins.fastimport.tests.test_generic_processor.TestImportToPackDeleteNew.test_delete_new_file_in_deep_subdir(1.9-rich-root)
486breezy.plugins.fastimport.tests.test_generic_processor.TestImportToPackDeleteNew.test_delete_new_file_in_deep_subdir(2a)
487breezy.plugins.fastimport.tests.test_generic_processor.TestImportToPackDeleteNew.test_delete_new_file_in_deep_subdir(pack-0.92)
488breezy.plugins.fastimport.tests.test_generic_processor.TestImportToPackDeleteNew.test_delete_new_file_in_root(1.9-rich-root)
489breezy.plugins.fastimport.tests.test_generic_processor.TestImportToPackDeleteNew.test_delete_new_file_in_root(2a)
490breezy.plugins.fastimport.tests.test_generic_processor.TestImportToPackDeleteNew.test_delete_new_file_in_root(pack-0.92)
491breezy.plugins.fastimport.tests.test_generic_processor.TestImportToPackDeleteNew.test_delete_new_file_in_subdir(1.9-rich-root)
492breezy.plugins.fastimport.tests.test_generic_processor.TestImportToPackDeleteNew.test_delete_new_file_in_subdir(2a)
493breezy.plugins.fastimport.tests.test_generic_processor.TestImportToPackDeleteNew.test_delete_new_file_in_subdir(pack-0.92)
494breezy.plugins.fastimport.tests.test_generic_processor.TestImportToPackDeleteNew.test_delete_new_symlink_in_root(1.9-rich-root)
495breezy.plugins.fastimport.tests.test_generic_processor.TestImportToPackDeleteNew.test_delete_new_symlink_in_root(2a)
496breezy.plugins.fastimport.tests.test_generic_processor.TestImportToPackDeleteNew.test_delete_new_symlink_in_root(pack-0.92)
497breezy.plugins.fastimport.tests.test_generic_processor.TestImportToPackDeleteNew.test_delete_new_symlink_in_subdir(1.9-rich-root)
498breezy.plugins.fastimport.tests.test_generic_processor.TestImportToPackDeleteNew.test_delete_new_symlink_in_subdir(2a)
499breezy.plugins.fastimport.tests.test_generic_processor.TestImportToPackDeleteNew.test_delete_new_symlink_in_subdir(pack-0.92)
500breezy.plugins.fastimport.tests.test_generic_processor.TestImportToPackDeleteRenameThenModify.test_delete_rename_then_modify_file_in_new_dir(1.9-rich-root)
501breezy.plugins.fastimport.tests.test_generic_processor.TestImportToPackDeleteRenameThenModify.test_delete_rename_then_modify_file_in_new_dir(2a)
502breezy.plugins.fastimport.tests.test_generic_processor.TestImportToPackDeleteRenameThenModify.test_delete_rename_then_modify_file_in_new_dir(pack-0.92)
503breezy.plugins.fastimport.tests.test_generic_processor.TestImportToPackDeleteRenameThenModify.test_delete_rename_then_modify_file_in_root(1.9-rich-root)
504breezy.plugins.fastimport.tests.test_generic_processor.TestImportToPackDeleteRenameThenModify.test_delete_rename_then_modify_file_in_root(2a)
505breezy.plugins.fastimport.tests.test_generic_processor.TestImportToPackDeleteRenameThenModify.test_delete_rename_then_modify_file_in_root(pack-0.92)
506breezy.plugins.fastimport.tests.test_generic_processor.TestImportToPackDeleteRenameThenModify.test_delete_rename_then_modify_file_in_subdir(1.9-rich-root)
507breezy.plugins.fastimport.tests.test_generic_processor.TestImportToPackDeleteRenameThenModify.test_delete_rename_then_modify_file_in_subdir(2a)
508breezy.plugins.fastimport.tests.test_generic_processor.TestImportToPackDeleteRenameThenModify.test_delete_rename_then_modify_file_in_subdir(pack-0.92)
509breezy.plugins.fastimport.tests.test_generic_processor.TestImportToPackDeleteRenameThenModify.test_delete_rename_then_modify_symlink_in_new_dir(1.9-rich-root)
510breezy.plugins.fastimport.tests.test_generic_processor.TestImportToPackDeleteRenameThenModify.test_delete_rename_then_modify_symlink_in_new_dir(2a)
511breezy.plugins.fastimport.tests.test_generic_processor.TestImportToPackDeleteRenameThenModify.test_delete_rename_then_modify_symlink_in_new_dir(pack-0.92)
512breezy.plugins.fastimport.tests.test_generic_processor.TestImportToPackDeleteRenameThenModify.test_delete_rename_then_modify_symlink_in_root(1.9-rich-root)
513breezy.plugins.fastimport.tests.test_generic_processor.TestImportToPackDeleteRenameThenModify.test_delete_rename_then_modify_symlink_in_root(2a)
514breezy.plugins.fastimport.tests.test_generic_processor.TestImportToPackDeleteRenameThenModify.test_delete_rename_then_modify_symlink_in_root(pack-0.92)
515breezy.plugins.fastimport.tests.test_generic_processor.TestImportToPackDeleteRenameThenModify.test_delete_rename_then_modify_symlink_in_subdir(1.9-rich-root)
516breezy.plugins.fastimport.tests.test_generic_processor.TestImportToPackDeleteRenameThenModify.test_delete_rename_then_modify_symlink_in_subdir(2a)
517breezy.plugins.fastimport.tests.test_generic_processor.TestImportToPackDeleteRenameThenModify.test_delete_rename_then_modify_symlink_in_subdir(pack-0.92)
518breezy.plugins.fastimport.tests.test_generic_processor.TestImportToPackDelete.test_delete_file_in_deep_subdir(1.9-rich-root)
519breezy.plugins.fastimport.tests.test_generic_processor.TestImportToPackDelete.test_delete_file_in_deep_subdir(2a)
520breezy.plugins.fastimport.tests.test_generic_processor.TestImportToPackDelete.test_delete_file_in_deep_subdir(pack-0.92)
521breezy.plugins.fastimport.tests.test_generic_processor.TestImportToPackDelete.test_delete_file_in_root(1.9-rich-root)
522breezy.plugins.fastimport.tests.test_generic_processor.TestImportToPackDelete.test_delete_file_in_root(2a)
523breezy.plugins.fastimport.tests.test_generic_processor.TestImportToPackDelete.test_delete_file_in_root(pack-0.92)
524breezy.plugins.fastimport.tests.test_generic_processor.TestImportToPackDelete.test_delete_file_in_subdir(1.9-rich-root)
525breezy.plugins.fastimport.tests.test_generic_processor.TestImportToPackDelete.test_delete_file_in_subdir(2a)
526breezy.plugins.fastimport.tests.test_generic_processor.TestImportToPackDelete.test_delete_file_in_subdir(pack-0.92)
527breezy.plugins.fastimport.tests.test_generic_processor.TestImportToPackDelete.test_delete_symlink_in_root(1.9-rich-root)
528breezy.plugins.fastimport.tests.test_generic_processor.TestImportToPackDelete.test_delete_symlink_in_root(2a)
529breezy.plugins.fastimport.tests.test_generic_processor.TestImportToPackDelete.test_delete_symlink_in_root(pack-0.92)
530breezy.plugins.fastimport.tests.test_generic_processor.TestImportToPackDelete.test_delete_symlink_in_subdir(1.9-rich-root)
531breezy.plugins.fastimport.tests.test_generic_processor.TestImportToPackDelete.test_delete_symlink_in_subdir(2a)
532breezy.plugins.fastimport.tests.test_generic_processor.TestImportToPackDelete.test_delete_symlink_in_subdir(pack-0.92)
533breezy.plugins.fastimport.tests.test_generic_processor.TestImportToPackDeleteThenAdd.test_delete_then_add_file_in_root(1.9-rich-root)
534breezy.plugins.fastimport.tests.test_generic_processor.TestImportToPackDeleteThenAdd.test_delete_then_add_file_in_root(2a)
535breezy.plugins.fastimport.tests.test_generic_processor.TestImportToPackDeleteThenAdd.test_delete_then_add_file_in_root(pack-0.92)
536breezy.plugins.fastimport.tests.test_generic_processor.TestImportToPackDeleteThenAdd.test_delete_then_add_file_in_subdir(1.9-rich-root)
537breezy.plugins.fastimport.tests.test_generic_processor.TestImportToPackDeleteThenAdd.test_delete_then_add_file_in_subdir(2a)
538breezy.plugins.fastimport.tests.test_generic_processor.TestImportToPackDeleteThenAdd.test_delete_then_add_file_in_subdir(pack-0.92)
539breezy.plugins.fastimport.tests.test_generic_processor.TestImportToPackDeleteThenAdd.test_delete_then_add_symlink_in_root(1.9-rich-root)
540breezy.plugins.fastimport.tests.test_generic_processor.TestImportToPackDeleteThenAdd.test_delete_then_add_symlink_in_root(2a)
541breezy.plugins.fastimport.tests.test_generic_processor.TestImportToPackDeleteThenAdd.test_delete_then_add_symlink_in_root(pack-0.92)
542breezy.plugins.fastimport.tests.test_generic_processor.TestImportToPackDeleteThenAdd.test_delete_then_add_symlink_in_subdir(1.9-rich-root)
543breezy.plugins.fastimport.tests.test_generic_processor.TestImportToPackDeleteThenAdd.test_delete_then_add_symlink_in_subdir(2a)
544breezy.plugins.fastimport.tests.test_generic_processor.TestImportToPackDeleteThenAdd.test_delete_then_add_symlink_in_subdir(pack-0.92)
545breezy.plugins.fastimport.tests.test_generic_processor.TestImportToPackFileKinds.test_import_plainfile(1.9-rich-root)
546breezy.plugins.fastimport.tests.test_generic_processor.TestImportToPackFileKinds.test_import_plainfile(2a)
547breezy.plugins.fastimport.tests.test_generic_processor.TestImportToPackFileKinds.test_import_plainfile(pack-0.92)
548breezy.plugins.fastimport.tests.test_generic_processor.TestImportToPackFileKinds.test_import_symlink(1.9-rich-root)
549breezy.plugins.fastimport.tests.test_generic_processor.TestImportToPackFileKinds.test_import_symlink(2a)
550breezy.plugins.fastimport.tests.test_generic_processor.TestImportToPackFileKinds.test_import_symlink(pack-0.92)
551breezy.plugins.fastimport.tests.test_generic_processor.TestImportToPackModify.test_modify_file_becomes_symlink(1.9-rich-root)
552breezy.plugins.fastimport.tests.test_generic_processor.TestImportToPackModify.test_modify_file_becomes_symlink(2a)
553breezy.plugins.fastimport.tests.test_generic_processor.TestImportToPackModify.test_modify_file_becomes_symlink(pack-0.92)
554breezy.plugins.fastimport.tests.test_generic_processor.TestImportToPackModify.test_modify_file_in_root(1.9-rich-root)
555breezy.plugins.fastimport.tests.test_generic_processor.TestImportToPackModify.test_modify_file_in_root(2a)
556breezy.plugins.fastimport.tests.test_generic_processor.TestImportToPackModify.test_modify_file_in_root(pack-0.92)
557breezy.plugins.fastimport.tests.test_generic_processor.TestImportToPackModify.test_modify_file_in_subdir(1.9-rich-root)
558breezy.plugins.fastimport.tests.test_generic_processor.TestImportToPackModify.test_modify_file_in_subdir(2a)
559breezy.plugins.fastimport.tests.test_generic_processor.TestImportToPackModify.test_modify_file_in_subdir(pack-0.92)
560breezy.plugins.fastimport.tests.test_generic_processor.TestImportToPackModify.test_modify_file_no_longer_executable(1.9-rich-root)
561breezy.plugins.fastimport.tests.test_generic_processor.TestImportToPackModify.test_modify_file_no_longer_executable(2a)
562breezy.plugins.fastimport.tests.test_generic_processor.TestImportToPackModify.test_modify_file_no_longer_executable(pack-0.92)
563breezy.plugins.fastimport.tests.test_generic_processor.TestImportToPackModify.test_modify_file_now_executable(1.9-rich-root)
564breezy.plugins.fastimport.tests.test_generic_processor.TestImportToPackModify.test_modify_file_now_executable(2a)
565breezy.plugins.fastimport.tests.test_generic_processor.TestImportToPackModify.test_modify_file_now_executable(pack-0.92)
566breezy.plugins.fastimport.tests.test_generic_processor.TestImportToPackModify.test_modify_symlink_becomes_file(1.9-rich-root)
567breezy.plugins.fastimport.tests.test_generic_processor.TestImportToPackModify.test_modify_symlink_becomes_file(2a)
568breezy.plugins.fastimport.tests.test_generic_processor.TestImportToPackModify.test_modify_symlink_becomes_file(pack-0.92)
569breezy.plugins.fastimport.tests.test_generic_processor.TestImportToPackModify.test_modify_symlink_in_root(1.9-rich-root)
570breezy.plugins.fastimport.tests.test_generic_processor.TestImportToPackModify.test_modify_symlink_in_root(2a)
571breezy.plugins.fastimport.tests.test_generic_processor.TestImportToPackModify.test_modify_symlink_in_root(pack-0.92)
572breezy.plugins.fastimport.tests.test_generic_processor.TestImportToPackModify.test_modify_symlink_in_subdir(1.9-rich-root)
573breezy.plugins.fastimport.tests.test_generic_processor.TestImportToPackModify.test_modify_symlink_in_subdir(2a)
574breezy.plugins.fastimport.tests.test_generic_processor.TestImportToPackModify.test_modify_symlink_in_subdir(pack-0.92)
575breezy.plugins.fastimport.tests.test_generic_processor.TestImportToPackModifyTricky.test_modify_directory_becomes_file(1.9-rich-root)
576breezy.plugins.fastimport.tests.test_generic_processor.TestImportToPackModifyTricky.test_modify_directory_becomes_file(2a)
577breezy.plugins.fastimport.tests.test_generic_processor.TestImportToPackModifyTricky.test_modify_directory_becomes_file(pack-0.92)
578breezy.plugins.fastimport.tests.test_generic_processor.TestImportToPackModifyTricky.test_modify_directory_becomes_symlink(1.9-rich-root)
579breezy.plugins.fastimport.tests.test_generic_processor.TestImportToPackModifyTricky.test_modify_directory_becomes_symlink(2a)
580breezy.plugins.fastimport.tests.test_generic_processor.TestImportToPackModifyTricky.test_modify_directory_becomes_symlink(pack-0.92)
581breezy.plugins.fastimport.tests.test_generic_processor.TestImportToPackModifyTricky.test_modify_file_becomes_directory(1.9-rich-root)
582breezy.plugins.fastimport.tests.test_generic_processor.TestImportToPackModifyTricky.test_modify_file_becomes_directory(2a)
583breezy.plugins.fastimport.tests.test_generic_processor.TestImportToPackModifyTricky.test_modify_file_becomes_directory(pack-0.92)
584breezy.plugins.fastimport.tests.test_generic_processor.TestImportToPackModifyTricky.test_modify_symlink_becomes_directory(1.9-rich-root)
585breezy.plugins.fastimport.tests.test_generic_processor.TestImportToPackModifyTricky.test_modify_symlink_becomes_directory(2a)
586breezy.plugins.fastimport.tests.test_generic_processor.TestImportToPackModifyTricky.test_modify_symlink_becomes_directory(pack-0.92)
587breezy.plugins.fastimport.tests.test_generic_processor.TestImportToPackModifyTwice.test_modify_file_twice_in_root(1.9-rich-root)
588breezy.plugins.fastimport.tests.test_generic_processor.TestImportToPackModifyTwice.test_modify_file_twice_in_root(2a)
589breezy.plugins.fastimport.tests.test_generic_processor.TestImportToPackModifyTwice.test_modify_file_twice_in_root(pack-0.92)
590breezy.plugins.fastimport.tests.test_generic_processor.TestImportToPackRenameModified.test_rename_of_modified_file_in_root(1.9-rich-root)
591breezy.plugins.fastimport.tests.test_generic_processor.TestImportToPackRenameModified.test_rename_of_modified_file_in_root(2a)
592breezy.plugins.fastimport.tests.test_generic_processor.TestImportToPackRenameModified.test_rename_of_modified_file_in_root(pack-0.92)
593breezy.plugins.fastimport.tests.test_generic_processor.TestImportToPackRenameModified.test_rename_of_modified_file_in_subdir(1.9-rich-root)
594breezy.plugins.fastimport.tests.test_generic_processor.TestImportToPackRenameModified.test_rename_of_modified_file_in_subdir(2a)
595breezy.plugins.fastimport.tests.test_generic_processor.TestImportToPackRenameModified.test_rename_of_modified_file_in_subdir(pack-0.92)
596breezy.plugins.fastimport.tests.test_generic_processor.TestImportToPackRenameModified.test_rename_of_modified_file_to_new_dir(1.9-rich-root)
597breezy.plugins.fastimport.tests.test_generic_processor.TestImportToPackRenameModified.test_rename_of_modified_file_to_new_dir(2a)
598breezy.plugins.fastimport.tests.test_generic_processor.TestImportToPackRenameModified.test_rename_of_modified_file_to_new_dir(pack-0.92)
599breezy.plugins.fastimport.tests.test_generic_processor.TestImportToPackRenameModified.test_rename_of_modified_symlink_in_root(1.9-rich-root)
600breezy.plugins.fastimport.tests.test_generic_processor.TestImportToPackRenameModified.test_rename_of_modified_symlink_in_root(2a)
601breezy.plugins.fastimport.tests.test_generic_processor.TestImportToPackRenameModified.test_rename_of_modified_symlink_in_root(pack-0.92)
602breezy.plugins.fastimport.tests.test_generic_processor.TestImportToPackRenameModified.test_rename_of_modified_symlink_in_subdir(1.9-rich-root)
603breezy.plugins.fastimport.tests.test_generic_processor.TestImportToPackRenameModified.test_rename_of_modified_symlink_in_subdir(2a)
604breezy.plugins.fastimport.tests.test_generic_processor.TestImportToPackRenameModified.test_rename_of_modified_symlink_in_subdir(pack-0.92)
605breezy.plugins.fastimport.tests.test_generic_processor.TestImportToPackRenameModified.test_rename_of_modified_symlink_to_new_dir(1.9-rich-root)
606breezy.plugins.fastimport.tests.test_generic_processor.TestImportToPackRenameModified.test_rename_of_modified_symlink_to_new_dir(2a)
607breezy.plugins.fastimport.tests.test_generic_processor.TestImportToPackRenameModified.test_rename_of_modified_symlink_to_new_dir(pack-0.92)
608breezy.plugins.fastimport.tests.test_generic_processor.TestImportToPackRenameNew.test_rename_new_file_in_root(1.9-rich-root)
609breezy.plugins.fastimport.tests.test_generic_processor.TestImportToPackRenameNew.test_rename_new_file_in_root(2a)
610breezy.plugins.fastimport.tests.test_generic_processor.TestImportToPackRenameNew.test_rename_new_file_in_root(pack-0.92)
611breezy.plugins.fastimport.tests.test_generic_processor.TestImportToPackRenameNew.test_rename_new_file_in_subdir(1.9-rich-root)
612breezy.plugins.fastimport.tests.test_generic_processor.TestImportToPackRenameNew.test_rename_new_file_in_subdir(2a)
613breezy.plugins.fastimport.tests.test_generic_processor.TestImportToPackRenameNew.test_rename_new_file_in_subdir(pack-0.92)
614breezy.plugins.fastimport.tests.test_generic_processor.TestImportToPackRenameNew.test_rename_new_symlink_in_root(1.9-rich-root)
615breezy.plugins.fastimport.tests.test_generic_processor.TestImportToPackRenameNew.test_rename_new_symlink_in_root(2a)
616breezy.plugins.fastimport.tests.test_generic_processor.TestImportToPackRenameNew.test_rename_new_symlink_in_root(pack-0.92)
617breezy.plugins.fastimport.tests.test_generic_processor.TestImportToPackRenameNew.test_rename_new_symlink_in_subdir(1.9-rich-root)
618breezy.plugins.fastimport.tests.test_generic_processor.TestImportToPackRenameNew.test_rename_new_symlink_in_subdir(2a)
619breezy.plugins.fastimport.tests.test_generic_processor.TestImportToPackRenameNew.test_rename_new_symlink_in_subdir(pack-0.92)
620breezy.plugins.fastimport.tests.test_generic_processor.TestImportToPackRename.test_rename_file_in_root(1.9-rich-root)
621breezy.plugins.fastimport.tests.test_generic_processor.TestImportToPackRename.test_rename_file_in_root(2a)
622breezy.plugins.fastimport.tests.test_generic_processor.TestImportToPackRename.test_rename_file_in_root(pack-0.92)
623breezy.plugins.fastimport.tests.test_generic_processor.TestImportToPackRename.test_rename_file_in_subdir(1.9-rich-root)
624breezy.plugins.fastimport.tests.test_generic_processor.TestImportToPackRename.test_rename_file_in_subdir(2a)
625breezy.plugins.fastimport.tests.test_generic_processor.TestImportToPackRename.test_rename_file_in_subdir(pack-0.92)
626breezy.plugins.fastimport.tests.test_generic_processor.TestImportToPackRename.test_rename_file_to_new_dir(1.9-rich-root)
627breezy.plugins.fastimport.tests.test_generic_processor.TestImportToPackRename.test_rename_file_to_new_dir(2a)
628breezy.plugins.fastimport.tests.test_generic_processor.TestImportToPackRename.test_rename_file_to_new_dir(pack-0.92)
629breezy.plugins.fastimport.tests.test_generic_processor.TestImportToPackRename.test_rename_symlink_in_root(1.9-rich-root)
630breezy.plugins.fastimport.tests.test_generic_processor.TestImportToPackRename.test_rename_symlink_in_root(2a)
631breezy.plugins.fastimport.tests.test_generic_processor.TestImportToPackRename.test_rename_symlink_in_root(pack-0.92)
632breezy.plugins.fastimport.tests.test_generic_processor.TestImportToPackRename.test_rename_symlink_in_subdir(1.9-rich-root)
633breezy.plugins.fastimport.tests.test_generic_processor.TestImportToPackRename.test_rename_symlink_in_subdir(2a)
634breezy.plugins.fastimport.tests.test_generic_processor.TestImportToPackRename.test_rename_symlink_in_subdir(pack-0.92)
635breezy.plugins.fastimport.tests.test_generic_processor.TestImportToPackRename.test_rename_symlink_to_new_dir(1.9-rich-root)
636breezy.plugins.fastimport.tests.test_generic_processor.TestImportToPackRename.test_rename_symlink_to_new_dir(2a)
637breezy.plugins.fastimport.tests.test_generic_processor.TestImportToPackRename.test_rename_symlink_to_new_dir(pack-0.92)
638breezy.plugins.fastimport.tests.test_generic_processor.TestImportToPackRenameThenModify.test_rename_then_modify_file_in_new_dir(1.9-rich-root)
639breezy.plugins.fastimport.tests.test_generic_processor.TestImportToPackRenameThenModify.test_rename_then_modify_file_in_new_dir(2a)
640breezy.plugins.fastimport.tests.test_generic_processor.TestImportToPackRenameThenModify.test_rename_then_modify_file_in_new_dir(pack-0.92)
641breezy.plugins.fastimport.tests.test_generic_processor.TestImportToPackRenameThenModify.test_rename_then_modify_file_in_root(1.9-rich-root)
642breezy.plugins.fastimport.tests.test_generic_processor.TestImportToPackRenameThenModify.test_rename_then_modify_file_in_root(2a)
643breezy.plugins.fastimport.tests.test_generic_processor.TestImportToPackRenameThenModify.test_rename_then_modify_file_in_root(pack-0.92)
644breezy.plugins.fastimport.tests.test_generic_processor.TestImportToPackRenameThenModify.test_rename_then_modify_file_in_subdir(1.9-rich-root)
645breezy.plugins.fastimport.tests.test_generic_processor.TestImportToPackRenameThenModify.test_rename_then_modify_file_in_subdir(2a)
646breezy.plugins.fastimport.tests.test_generic_processor.TestImportToPackRenameThenModify.test_rename_then_modify_file_in_subdir(pack-0.92)
647breezy.plugins.fastimport.tests.test_generic_processor.TestImportToPackRenameThenModify.test_rename_then_modify_symlink_in_new_dir(1.9-rich-root)
648breezy.plugins.fastimport.tests.test_generic_processor.TestImportToPackRenameThenModify.test_rename_then_modify_symlink_in_new_dir(2a)
649breezy.plugins.fastimport.tests.test_generic_processor.TestImportToPackRenameThenModify.test_rename_then_modify_symlink_in_new_dir(pack-0.92)
650breezy.plugins.fastimport.tests.test_generic_processor.TestImportToPackRenameThenModify.test_rename_then_modify_symlink_in_root(1.9-rich-root)
651breezy.plugins.fastimport.tests.test_generic_processor.TestImportToPackRenameThenModify.test_rename_then_modify_symlink_in_root(2a)
652breezy.plugins.fastimport.tests.test_generic_processor.TestImportToPackRenameThenModify.test_rename_then_modify_symlink_in_root(pack-0.92)
653breezy.plugins.fastimport.tests.test_generic_processor.TestImportToPackRenameThenModify.test_rename_then_modify_symlink_in_subdir(1.9-rich-root)
654breezy.plugins.fastimport.tests.test_generic_processor.TestImportToPackRenameThenModify.test_rename_then_modify_symlink_in_subdir(2a)
655breezy.plugins.fastimport.tests.test_generic_processor.TestImportToPackRenameThenModify.test_rename_then_modify_symlink_in_subdir(pack-0.92)
656breezy.plugins.fastimport.tests.test_generic_processor.TestImportToPackRenameToDeleted.test_rename_to_deleted_file_in_new_dir(1.9-rich-root)
657breezy.plugins.fastimport.tests.test_generic_processor.TestImportToPackRenameToDeleted.test_rename_to_deleted_file_in_new_dir(2a)
658breezy.plugins.fastimport.tests.test_generic_processor.TestImportToPackRenameToDeleted.test_rename_to_deleted_file_in_new_dir(pack-0.92)
659breezy.plugins.fastimport.tests.test_generic_processor.TestImportToPackRenameToDeleted.test_rename_to_deleted_file_in_root(1.9-rich-root)
660breezy.plugins.fastimport.tests.test_generic_processor.TestImportToPackRenameToDeleted.test_rename_to_deleted_file_in_root(2a)
661breezy.plugins.fastimport.tests.test_generic_processor.TestImportToPackRenameToDeleted.test_rename_to_deleted_file_in_root(pack-0.92)
662breezy.plugins.fastimport.tests.test_generic_processor.TestImportToPackRenameToDeleted.test_rename_to_deleted_file_in_subdir(1.9-rich-root)
663breezy.plugins.fastimport.tests.test_generic_processor.TestImportToPackRenameToDeleted.test_rename_to_deleted_file_in_subdir(2a)
664breezy.plugins.fastimport.tests.test_generic_processor.TestImportToPackRenameToDeleted.test_rename_to_deleted_file_in_subdir(pack-0.92)
665breezy.plugins.fastimport.tests.test_generic_processor.TestImportToPackRenameToDeleted.test_rename_to_deleted_symlink_in_new_dir(1.9-rich-root)
666breezy.plugins.fastimport.tests.test_generic_processor.TestImportToPackRenameToDeleted.test_rename_to_deleted_symlink_in_new_dir(2a)
667breezy.plugins.fastimport.tests.test_generic_processor.TestImportToPackRenameToDeleted.test_rename_to_deleted_symlink_in_new_dir(pack-0.92)
668breezy.plugins.fastimport.tests.test_generic_processor.TestImportToPackRenameToDeleted.test_rename_to_deleted_symlink_in_root(1.9-rich-root)
669breezy.plugins.fastimport.tests.test_generic_processor.TestImportToPackRenameToDeleted.test_rename_to_deleted_symlink_in_root(2a)
670breezy.plugins.fastimport.tests.test_generic_processor.TestImportToPackRenameToDeleted.test_rename_to_deleted_symlink_in_root(pack-0.92)
671breezy.plugins.fastimport.tests.test_generic_processor.TestImportToPackRenameToDeleted.test_rename_to_deleted_symlink_in_subdir(1.9-rich-root)
672breezy.plugins.fastimport.tests.test_generic_processor.TestImportToPackRenameToDeleted.test_rename_to_deleted_symlink_in_subdir(2a)
673breezy.plugins.fastimport.tests.test_generic_processor.TestImportToPackRenameToDeleted.test_rename_to_deleted_symlink_in_subdir(pack-0.92)
674breezy.plugins.fastimport.tests.test_generic_processor.TestImportToPackRenameTricky.test_rename_directory_becomes_file(1.9-rich-root)
675breezy.plugins.fastimport.tests.test_generic_processor.TestImportToPackRenameTricky.test_rename_directory_becomes_file(2a)
676breezy.plugins.fastimport.tests.test_generic_processor.TestImportToPackRenameTricky.test_rename_directory_becomes_file(pack-0.92)
677breezy.plugins.fastimport.tests.test_generic_processor.TestImportToPackRenameTricky.test_rename_directory_becomes_symlink(1.9-rich-root)
678breezy.plugins.fastimport.tests.test_generic_processor.TestImportToPackRenameTricky.test_rename_directory_becomes_symlink(2a)
679breezy.plugins.fastimport.tests.test_generic_processor.TestImportToPackRenameTricky.test_rename_directory_becomes_symlink(pack-0.92)
680breezy.plugins.fastimport.tests.test_generic_processor.TestImportToPackRenameTricky.test_rename_file_becomes_directory(1.9-rich-root)
681breezy.plugins.fastimport.tests.test_generic_processor.TestImportToPackRenameTricky.test_rename_file_becomes_directory(2a)
682breezy.plugins.fastimport.tests.test_generic_processor.TestImportToPackRenameTricky.test_rename_file_becomes_directory(pack-0.92)
683breezy.plugins.fastimport.tests.test_generic_processor.TestImportToPackRenameTricky.test_rename_symlink_becomes_directory(1.9-rich-root)
684breezy.plugins.fastimport.tests.test_generic_processor.TestImportToPackRenameTricky.test_rename_symlink_becomes_directory(2a)
685breezy.plugins.fastimport.tests.test_generic_processor.TestImportToPackRenameTricky.test_rename_symlink_becomes_directory(pack-0.92)
686breezy.plugins.fastimport.tests.test_generic_processor.TestImportToPackTag.test_tag(1.9-rich-root)
687breezy.plugins.fastimport.tests.test_generic_processor.TestImportToPackTag.test_tag(2a)
688breezy.plugins.fastimport.tests.test_generic_processor.TestImportToPackTag.test_tag(pack-0.92)
689breezy.plugins.fastimport.tests.test_generic_processor.TestImportZeroMarker.test_tag(1.9-rich-root)
690breezy.plugins.fastimport.tests.test_generic_processor.TestImportZeroMarker.test_tag(2a)
691breezy.plugins.fastimport.tests.test_generic_processor.TestImportZeroMarker.test_tag(pack-0.92)
692breezy.plugins.fastimport.tests.test_generic_processor.TestModifyRevertInBranch.test_modify_revert(1.9-rich-root)
693breezy.plugins.fastimport.tests.test_generic_processor.TestModifyRevertInBranch.test_modify_revert(2a)
694breezy.plugins.fastimport.tests.test_generic_processor.TestModifyRevertInBranch.test_modify_revert(pack-0.92)
695breezy.plugins.fastimport.tests.test_revision_store.Test_TreeShim.test__delta_to_iter_changes
696breezy.plugins.fastimport.tests.test_revision_store.Test_TreeShim.test_get_file_with_stat_content_in_stream
697breezy.plugins.fastimport.tests.test_revision_store.Test_TreeShim.test_get_symlink_target
698breezy.plugins.fastimport.tests.test_revision_store.Test_TreeShim.test_get_symlink_target_from_delta
699breezy.plugins.fastimport.tests.test_revision_store.Test_TreeShim.test_id2path_no_delta
700breezy.plugins.fastimport.tests.test_revision_store.Test_TreeShim.test_id2path_with_delta
701breezy.plugins.fastimport.tests.test_revision_store.Test_TreeShim.test_path2id
702breezy.plugins.git.tests.test_blackbox.ShallowTests.test_log_shallow
703breezy.plugins.git.tests.test_blackbox.ShallowTests.test_version_info_custom_without_revno
704breezy.plugins.git.tests.test_blackbox.ShallowTests.test_version_info_custom_with_revno
705breezy.plugins.git.tests.test_blackbox.ShallowTests.test_version_info_python
706breezy.plugins.git.tests.test_blackbox.ShallowTests.test_version_info_rio
707breezy.plugins.git.tests.test_blackbox.TestGitBlackBox.test_branch
708breezy.plugins.git.tests.test_blackbox.TestGitBlackBox.test_branches
709breezy.plugins.git.tests.test_blackbox.TestGitBlackBox.test_check
710breezy.plugins.git.tests.test_blackbox.TestGitBlackBox.test_diff_format
711breezy.plugins.git.tests.test_blackbox.TestGitBlackBox.test_git_import
712breezy.plugins.git.tests.test_blackbox.TestGitBlackBox.test_git_import_colo
713breezy.plugins.git.tests.test_blackbox.TestGitBlackBox.test_git_import_incremental
714breezy.plugins.git.tests.test_blackbox.TestGitBlackBox.test_git_import_tags
715breezy.plugins.git.tests.test_blackbox.TestGitBlackBox.test_git_import_uncolocated
716breezy.plugins.git.tests.test_blackbox.TestGitBlackBox.test_git_refs_from_bzr
717breezy.plugins.git.tests.test_blackbox.TestGitBlackBox.test_git_refs_from_git
718breezy.plugins.git.tests.test_blackbox.TestGitBlackBox.test_info
719breezy.plugins.git.tests.test_blackbox.TestGitBlackBox.test_info_verbose
720breezy.plugins.git.tests.test_blackbox.TestGitBlackBox.test_init
721breezy.plugins.git.tests.test_blackbox.TestGitBlackBox.test_init_repo
722breezy.plugins.git.tests.test_blackbox.TestGitBlackBox.test_log
723breezy.plugins.git.tests.test_blackbox.TestGitBlackBox.test_log_verbose
724breezy.plugins.git.tests.test_blackbox.TestGitBlackBox.test_nick
725breezy.plugins.git.tests.test_blackbox.TestGitBlackBox.test_tag
726breezy.plugins.git.tests.test_blackbox.TestGitBlackBox.test_tags
727breezy.plugins.git.tests.test_branch.BranchTests.test_interbranch_pull
728breezy.plugins.git.tests.test_branch.BranchTests.test_interbranch_pull_noop
729breezy.plugins.git.tests.test_branch.BranchTests.test_interbranch_pull_stop_revision
730breezy.plugins.git.tests.test_branch.BranchTests.test_interbranch_pull_with_tags
731breezy.plugins.git.tests.test_branch.BranchTests.test_single_rev
732breezy.plugins.git.tests.test_branch.BranchTests.test_sprouted_tags
733breezy.plugins.git.tests.test_branch.TestGitBranch.test_last_revision_info
734breezy.plugins.git.tests.test_branch.TestGitBranch.test_last_revision_is_null
735breezy.plugins.git.tests.test_branch.TestGitBranch.test_last_revision_is_valid
736breezy.plugins.git.tests.test_branch.TestGitBranch.test_open_by_ref
737breezy.plugins.git.tests.test_branch.TestGitBranch.test_open_existing
738breezy.plugins.git.tests.test_branch.TestGitBranch.test_repr
739breezy.plugins.git.tests.test_branch.TestGitBranch.test_tag
740breezy.plugins.git.tests.test_branch.TestGitBranch.test_tag_annotated
741breezy.plugins.git.tests.test_branch.TestLocalGitBranchFormat.test_get_format_description
742breezy.plugins.git.tests.test_branch.TestLocalGitBranchFormat.test_get_network_name
743breezy.plugins.git.tests.test_branch.TestLocalGitBranchFormat.test_supports_tags
744breezy.plugins.git.tests.test_branch.TestWithGitBranch.test_get_parent
745breezy.plugins.git.tests.test_branch.TestWithGitBranch.test_get_physical_lock_status
746breezy.plugins.git.tests.test_branch.TestWithGitBranch.test_get_stacked_on_url
747breezy.plugins.git.tests.test_builder.TestGitBranchBuilderReal.test_create_real_branch
748breezy.plugins.git.tests.test_builder.TestGitBranchBuilder.test_add_and_commit
749breezy.plugins.git.tests.test_builder.TestGitBranchBuilder.test_auto_timestamp
750breezy.plugins.git.tests.test_builder.TestGitBranchBuilder.test_commit_base
751breezy.plugins.git.tests.test_builder.TestGitBranchBuilder.test_commit_merge
752breezy.plugins.git.tests.test_builder.TestGitBranchBuilder.test__create_blob
753breezy.plugins.git.tests.test_builder.TestGitBranchBuilder.test_delete_entry
754breezy.plugins.git.tests.test_builder.TestGitBranchBuilder.test_delete_entry_newline
755breezy.plugins.git.tests.test_builder.TestGitBranchBuilder.test_encode_path
756breezy.plugins.git.tests.test_builder.TestGitBranchBuilder.test_reset
757breezy.plugins.git.tests.test_builder.TestGitBranchBuilder.test_reset_named_ref
758breezy.plugins.git.tests.test_builder.TestGitBranchBuilder.test_reset_revision
759breezy.plugins.git.tests.test_builder.TestGitBranchBuilder.test_set_file
760breezy.plugins.git.tests.test_builder.TestGitBranchBuilder.test_set_file_executable
761breezy.plugins.git.tests.test_builder.TestGitBranchBuilder.test_set_file_newline
762breezy.plugins.git.tests.test_builder.TestGitBranchBuilder.test_set_file_unicode
763breezy.plugins.git.tests.test_builder.TestGitBranchBuilder.test_set_symlink
764breezy.plugins.git.tests.test_builder.TestGitBranchBuilder.test_set_symlink_newline
765breezy.plugins.git.tests.test_cache.DictGitShaMapTests.test_blob
766breezy.plugins.git.tests.test_cache.DictGitShaMapTests.test_commit
767breezy.plugins.git.tests.test_cache.DictGitShaMapTests.test_lookup_notfound
768breezy.plugins.git.tests.test_cache.DictGitShaMapTests.test_missing_revisions
769breezy.plugins.git.tests.test_cache.DictGitShaMapTests.test_revids
770breezy.plugins.git.tests.test_cache.DictGitShaMapTests.test_tree
771breezy.plugins.git.tests.test_cache.IndexGitShaMapTests.test_blob
772breezy.plugins.git.tests.test_cache.IndexGitShaMapTests.test_commit
773breezy.plugins.git.tests.test_cache.IndexGitShaMapTests.test_lookup_notfound
774breezy.plugins.git.tests.test_cache.IndexGitShaMapTests.test_missing_revisions
775breezy.plugins.git.tests.test_cache.IndexGitShaMapTests.test_revids
776breezy.plugins.git.tests.test_cache.IndexGitShaMapTests.test_tree
777breezy.plugins.git.tests.test_cache.SqliteGitShaMapTests.test_blob
778breezy.plugins.git.tests.test_cache.SqliteGitShaMapTests.test_commit
779breezy.plugins.git.tests.test_cache.SqliteGitShaMapTests.test_lookup_notfound
780breezy.plugins.git.tests.test_cache.SqliteGitShaMapTests.test_missing_revisions
781breezy.plugins.git.tests.test_cache.SqliteGitShaMapTests.test_revids
782breezy.plugins.git.tests.test_cache.SqliteGitShaMapTests.test_tree
783breezy.plugins.git.tests.test_cache.TdbGitShaMapTests.test_blob
784breezy.plugins.git.tests.test_cache.TdbGitShaMapTests.test_commit
785breezy.plugins.git.tests.test_cache.TdbGitShaMapTests.test_lookup_notfound
786breezy.plugins.git.tests.test_cache.TdbGitShaMapTests.test_missing_revisions
787breezy.plugins.git.tests.test_cache.TdbGitShaMapTests.test_revids
788breezy.plugins.git.tests.test_cache.TdbGitShaMapTests.test_tree
789breezy.plugins.git.tests.test_dir.TestGitDirFormat.test_eq
790breezy.plugins.git.tests.test_dir.TestGitDirFormat.test_get_format_description
791breezy.plugins.git.tests.test_dir.TestGitDir.test_get_head_branch_reference
792breezy.plugins.git.tests.test_dir.TestGitDir.test_git_file
793breezy.plugins.git.tests.test_dir.TestGitDir.test_open_existing
794breezy.plugins.git.tests.test_dir.TestGitDir.test_open_workingtree
795breezy.plugins.git.tests.test_dir.TestGitDir.test_open_workingtree_bare
796breezy.plugins.git.tests.test_fetch.ImportObjects.test_directory_converted_to_submodule
797breezy.plugins.git.tests.test_fetch.ImportObjects.test_import_blob_simple
798breezy.plugins.git.tests.test_fetch.ImportObjects.test_import_tree_empty
799breezy.plugins.git.tests.test_fetch.ImportObjects.test_import_tree_empty_root
800breezy.plugins.git.tests.test_fetch.ImportObjects.test_import_tree_with_file
801breezy.plugins.git.tests.test_fetch.ImportObjects.test_import_tree_with_file_exe
802breezy.plugins.git.tests.test_fetch.ImportObjects.test_import_tree_with_unusual_mode_file
803breezy.plugins.git.tests.test_fetch.LocalRepositoryFetchTests.test_becomes_executable
804breezy.plugins.git.tests.test_fetch.LocalRepositoryFetchTests.test_changing_symlink
805breezy.plugins.git.tests.test_fetch.LocalRepositoryFetchTests.test_empty
806breezy.plugins.git.tests.test_fetch.LocalRepositoryFetchTests.test_executable
807breezy.plugins.git.tests.test_fetch.LocalRepositoryFetchTests.test_incremental
808breezy.plugins.git.tests.test_fetch.LocalRepositoryFetchTests.test_into_stacked_on
809breezy.plugins.git.tests.test_fetch.LocalRepositoryFetchTests.test_non_ascii_characters
810breezy.plugins.git.tests.test_fetch.LocalRepositoryFetchTests.test_single_rev
811breezy.plugins.git.tests.test_fetch.LocalRepositoryFetchTests.test_single_rev_specific
812breezy.plugins.git.tests.test_fetch.LocalRepositoryFetchTests.test_tagged_tree
813breezy.plugins.git.tests.test_git_remote_helper.FetchTests.test_no_wants
814breezy.plugins.git.tests.test_git_remote_helper.FetchTests.test_simple
815breezy.plugins.git.tests.test_git_remote_helper.OpenLocalDirTests.test_from_dir
816breezy.plugins.git.tests.test_git_remote_helper.OpenLocalDirTests.test_from_env_dir
817breezy.plugins.git.tests.test_git_remote_helper.RemoteHelperTests.test_capabilities
818breezy.plugins.git.tests.test_git_remote_helper.RemoteHelperTests.test_list_basic
819breezy.plugins.git.tests.test_git_remote_helper.RemoteHelperTests.test_option
820breezy.plugins.git.tests.test_mapping.FileidTests.test_escape_control_l
821breezy.plugins.git.tests.test_mapping.FileidTests.test_escape_space
822breezy.plugins.git.tests.test_mapping.FileidTests.test_escape_underscore
823breezy.plugins.git.tests.test_mapping.FileidTests.test_escape_underscore_space
824breezy.plugins.git.tests.test_mapping.FileidTests.test_unescape_control_l
825breezy.plugins.git.tests.test_mapping.FileidTests.test_unescape_underscore
826breezy.plugins.git.tests.test_mapping.FileidTests.test_unescape_underscore_space
827breezy.plugins.git.tests.test_mapping.FixPersonIdentifierTests.test_fix
828breezy.plugins.git.tests.test_mapping.FixPersonIdentifierTests.test_valid
829breezy.plugins.git.tests.test_mapping.RoundtripRevisionsFromBazaar.test_custom_property
830breezy.plugins.git.tests.test_mapping.RoundtripRevisionsFromBazaar.test_ghost_parent
831breezy.plugins.git.tests.test_mapping.RoundtripRevisionsFromBazaar.test_revision_id
832breezy.plugins.git.tests.test_mapping.RoundtripRevisionsFromBazaar.test_simple_commit
833breezy.plugins.git.tests.test_mapping.RoundtripRevisionsFromGit.test_commit
834breezy.plugins.git.tests.test_mapping.RoundtripRevisionsFromGit.test_commit_double_negative_timezone
835breezy.plugins.git.tests.test_mapping.RoundtripRevisionsFromGit.test_commit_encoding
836breezy.plugins.git.tests.test_mapping.RoundtripRevisionsFromGit.test_commit_extra
837breezy.plugins.git.tests.test_mapping.RoundtripRevisionsFromGit.test_commit_mergetag
838breezy.plugins.git.tests.test_mapping.RoundtripRevisionsFromGit.test_commit_zero_utc_timezone
839breezy.plugins.git.tests.test_mapping.TestImportCommit.test_commit
840breezy.plugins.git.tests.test_mapping.TestImportCommit.test_explicit_encoding
841breezy.plugins.git.tests.test_mapping.TestImportCommit.test_implicit_encoding_fallback
842breezy.plugins.git.tests.test_mapping.TestImportCommit.test_implicit_encoding_utf8
843breezy.plugins.git.tests.test_mapping.TestImportCommit.test_mergetag
844breezy.plugins.git.tests.test_mapping.TestImportCommit.test_unknown_extra
845breezy.plugins.git.tests.test_mapping.TestRevidConversionV1.test_generate_file_id
846breezy.plugins.git.tests.test_mapping.TestRevidConversionV1.test_is_control_file
847breezy.plugins.git.tests.test_mapping.TestRevidConversionV1.test_simple_bzr_to_git_revision_id
848breezy.plugins.git.tests.test_mapping.TestRevidConversionV1.test_simple_git_to_bzr_revision_id
849breezy.plugins.git.tests.test_memorytree.TestMemoryTree.test_add_in_subdir
850breezy.plugins.git.tests.test_memorytree.TestMemoryTree.test_add_with_kind
851breezy.plugins.git.tests.test_memorytree.TestMemoryTree.test_commit_trivial
852breezy.plugins.git.tests.test_memorytree.TestMemoryTree.test_create_on_branch
853breezy.plugins.git.tests.test_memorytree.TestMemoryTree.test_create_on_branch_with_content
854breezy.plugins.git.tests.test_memorytree.TestMemoryTree.test_last_revision
855breezy.plugins.git.tests.test_memorytree.TestMemoryTree.test_lock_tree_write
856breezy.plugins.git.tests.test_memorytree.TestMemoryTree.test_lock_tree_write_after_read_fails
857breezy.plugins.git.tests.test_memorytree.TestMemoryTree.test_lock_write
858breezy.plugins.git.tests.test_memorytree.TestMemoryTree.test_lock_write_after_read_fails
859breezy.plugins.git.tests.test_memorytree.TestMemoryTree.test_put_existing_file
860breezy.plugins.git.tests.test_memorytree.TestMemoryTree.test_put_new_file
861breezy.plugins.git.tests.test_memorytree.TestMemoryTree.test_rename_file
862breezy.plugins.git.tests.test_memorytree.TestMemoryTree.test_rename_file_to_subdir
863breezy.plugins.git.tests.test_memorytree.TestMemoryTree.test_unversion
864breezy.plugins.git.tests.test_object_store.BazaarObjectStoreTests.test_contains
865breezy.plugins.git.tests.test_object_store.BazaarObjectStoreTests.test_get_blob
866breezy.plugins.git.tests.test_object_store.BazaarObjectStoreTests.test_get_raw
867breezy.plugins.git.tests.test_object_store.DirectoryToTreeTests.test_empty
868breezy.plugins.git.tests.test_object_store.DirectoryToTreeTests.test_empty_dir
869breezy.plugins.git.tests.test_object_store.DirectoryToTreeTests.test_empty_dir_dummy_files
870breezy.plugins.git.tests.test_object_store.DirectoryToTreeTests.test_empty_root
871breezy.plugins.git.tests.test_object_store.DirectoryToTreeTests.test_with_file
872breezy.plugins.git.tests.test_object_store.DirectoryToTreeTests.test_with_gitdir
873breezy.plugins.git.tests.test_object_store.ExpectedShaTests.test_binary
874breezy.plugins.git.tests.test_object_store.ExpectedShaTests.test_hex
875breezy.plugins.git.tests.test_object_store.ExpectedShaTests.test_none
876breezy.plugins.git.tests.test_object_store.FindMissingBzrRevidsTests.test_one_missing
877breezy.plugins.git.tests.test_object_store.FindMissingBzrRevidsTests.test_simple
878breezy.plugins.git.tests.test_object_store.FindMissingBzrRevidsTests.test_two_missing
879breezy.plugins.git.tests.test_object_store.FindMissingBzrRevidsTests.test_two_missing_history
880breezy.plugins.git.tests.test_object_store.FindMissingBzrRevidsTests.test_up_to_date
881breezy.plugins.git.tests.test_object_store.LRUTreeCacheTests.test_get
882breezy.plugins.git.tests.test_object_store.LRUTreeCacheTests.test_get_not_present
883breezy.plugins.git.tests.test_object_store.LRUTreeCacheTests.test_iter_revision_trees
884breezy.plugins.git.tests.test_object_store.LRUTreeCacheTests.test_revision_trees
885breezy.plugins.git.tests.test_object_store.TreeToObjectsTests.test_no_changes
886breezy.plugins.git.tests.test_object_store.TreeToObjectsTests.test_with_gitdir
887breezy.plugins.git.tests.test_pristine_tar.ReadPristineTarData.test_read_pristine_tar_data
888breezy.plugins.git.tests.test_pristine_tar.ReadPristineTarData.test_read_pristine_tar_data_no_branch
889breezy.plugins.git.tests.test_pristine_tar.ReadPristineTarData.test_read_pristine_tar_data_no_file
890breezy.plugins.git.tests.test_pristine_tar.RevisionPristineTarDataTests.test_pristine_tar_delta_gz
891breezy.plugins.git.tests.test_pristine_tar.RevisionPristineTarDataTests.test_pristine_tar_delta_unknown
892breezy.plugins.git.tests.test_pristine_tar.StoreGitPristineTarData.test_store_new
893breezy.plugins.git.tests.test_push.InterToGitRepositoryTests.test_instance
894breezy.plugins.git.tests.test_push.InterToGitRepositoryTests.test_missing_revisions_unknown_stop_rev
895breezy.plugins.git.tests.test_push.InterToGitRepositoryTests.test_odd_rename
896breezy.plugins.git.tests.test_push.InterToGitRepositoryTests.test_pointless_fetch_refs
897breezy.plugins.git.tests.test_push.InterToGitRepositoryTests.test_pointless_fetch_refs_old_mapping
898breezy.plugins.git.tests.test_push.InterToGitRepositoryTests.test_pointless_lossy_fetch_refs
899breezy.plugins.git.tests.test_push.InterToGitRepositoryTests.test_pointless_missing_revisions
900breezy.plugins.git.tests.test_refs.BazaarRefsContainerTests.test_empty
901breezy.plugins.git.tests.test_refs.BazaarRefsContainerTests.test_some_branch
902breezy.plugins.git.tests.test_refs.BazaarRefsContainerTests.test_some_commit
903breezy.plugins.git.tests.test_refs.BazaarRefsContainerTests.test_some_tag
904breezy.plugins.git.tests.test_refs.BranchNameRefConversionTests.test_branch
905breezy.plugins.git.tests.test_refs.BranchNameRefConversionTests.test_head
906breezy.plugins.git.tests.test_refs.BranchNameRefConversionTests.test_tag
907breezy.plugins.git.tests.test_remote.FetchFromRemoteToBzrTests.test_sprout_simple
908breezy.plugins.git.tests.test_remote.FetchFromRemoteToBzrTests.test_sprout_with_tags
909breezy.plugins.git.tests.test_remote.FetchFromRemoteToGitTests.test_sprout_simple
910breezy.plugins.git.tests.test_remote.FetchFromRemoteToGitTests.test_sprout_with_tags
911breezy.plugins.git.tests.test_remote.ParseGitErrorTests.test_notbrancherror
912breezy.plugins.git.tests.test_remote.ParseGitErrorTests.test_unknown
913breezy.plugins.git.tests.test_remote.PushToRemoteFromBzrTests.test_push
914breezy.plugins.git.tests.test_remote.PushToRemoteFromBzrTests.test_push_branch_new
915breezy.plugins.git.tests.test_remote.PushToRemoteFromBzrTests.test_push_diverged
916breezy.plugins.git.tests.test_remote.PushToRemoteFromGitTests.test_push
917breezy.plugins.git.tests.test_remote.PushToRemoteFromGitTests.test_push_branch_new
918breezy.plugins.git.tests.test_remote.PushToRemoteFromGitTests.test_push_diverged
919breezy.plugins.git.tests.test_remote.RemoteControlDirTests.test_get_branches
920breezy.plugins.git.tests.test_remote.RemoteControlDirTests.test_list_branches
921breezy.plugins.git.tests.test_remote.RemoteControlDirTests.test_remove_branch
922breezy.plugins.git.tests.test_remote.RemoteControlDirTests.test_remove_tag
923breezy.plugins.git.tests.test_remote.RemoteControlDirTests.test_set_tag
924breezy.plugins.git.tests.test_remote.SplitUrlTests.test_homedir
925breezy.plugins.git.tests.test_remote.SplitUrlTests.test_nopath
926breezy.plugins.git.tests.test_remote.SplitUrlTests.test_port
927breezy.plugins.git.tests.test_remote.SplitUrlTests.test_simple
928breezy.plugins.git.tests.test_remote.SplitUrlTests.test_slashpath
929breezy.plugins.git.tests.test_remote.SplitUrlTests.test_username
930breezy.plugins.git.tests.test_remote.TestRemoteGitBranchFormat.test_get_format_description
931breezy.plugins.git.tests.test_remote.TestRemoteGitBranchFormat.test_get_network_name
932breezy.plugins.git.tests.test_remote.TestRemoteGitBranchFormat.test_supports_tags
933breezy.plugins.git.tests.test_repository.GitRepositoryFormat.test_get_format_description
934breezy.plugins.git.tests.test_repository.RevisionGistImportTests.test_pointless
935breezy.plugins.git.tests.test_repository.SigningGitRepository.test_signed_commit
936breezy.plugins.git.tests.test_repository.TestGitRepositoryFeatures.test_get_revision
937breezy.plugins.git.tests.test_repository.TestGitRepositoryFeatures.test_get_revision_unknown
938breezy.plugins.git.tests.test_repository.TestGitRepositoryFeatures.test_has_git_repo
939breezy.plugins.git.tests.test_repository.TestGitRepositoryFeatures.test_has_revision
940breezy.plugins.git.tests.test_repository.TestGitRepositoryFeatures.test_has_revisions
941breezy.plugins.git.tests.test_repository.TestGitRepositoryFeatures.test_open_existing
942breezy.plugins.git.tests.test_repository.TestGitRepositoryFeatures.test_pack
943breezy.plugins.git.tests.test_repository.TestGitRepositoryFeatures.test_revision_tree
944breezy.plugins.git.tests.test_repository.TestGitRepository.test_all_revision_ids
945breezy.plugins.git.tests.test_repository.TestGitRepository.test_all_revision_ids_none
946breezy.plugins.git.tests.test_repository.TestGitRepository.test_get_known_graph_ancestry
947breezy.plugins.git.tests.test_repository.TestGitRepository.test_get_parent_map_null
948breezy.plugins.git.tests.test_repository.TestGitRepository.test_get_signature_text
949breezy.plugins.git.tests.test_repository.TestGitRepository.test_has_signature_for_revision_id
950breezy.plugins.git.tests.test_repository.TestGitRepository.test_revision_tree_none
951breezy.plugins.git.tests.test_repository.TestGitRepository.test_supports_rich_root
952breezy.plugins.git.tests.test_revspec.Sha1ValidTests.test_invalid
953breezy.plugins.git.tests.test_revspec.Sha1ValidTests.test_valid
954breezy.plugins.git.tests.test_roundtrip.ExtractMetadataTests.test_roundtrip
955breezy.plugins.git.tests.test_roundtrip.FileIdRoundTripTests.test_deserialize
956breezy.plugins.git.tests.test_roundtrip.FileIdRoundTripTests.test_serialize
957breezy.plugins.git.tests.test_roundtrip.FormatTests.test_empty
958breezy.plugins.git.tests.test_roundtrip.FormatTests.test_parent_ids
959breezy.plugins.git.tests.test_roundtrip.FormatTests.test_properties
960breezy.plugins.git.tests.test_roundtrip.FormatTests.test_revid
961breezy.plugins.git.tests.test_roundtrip.GenerateMetadataTests.test_no_metadata
962breezy.plugins.git.tests.test_roundtrip.GenerateMetadataTests.test_roundtrip
963breezy.plugins.git.tests.test_roundtrip.RoundtripTests.test_parent_ids
964breezy.plugins.git.tests.test_roundtrip.RoundtripTests.test_properties
965breezy.plugins.git.tests.test_roundtrip.RoundtripTests.test_revid
966breezy.plugins.git.tests.test_server.TestPlainFetch.test_fetch_from_native_git
967breezy.plugins.git.tests.test_server.TestPlainFetch.test_fetch_from_non_git
968breezy.plugins.git.tests.test_server.TestPlainFetch.test_fetch_nothing
969breezy.plugins.git.tests.test_server.TestPresent.test_present
970breezy.plugins.git.tests.test_transportgit.TransportObjectStoreTests.test_add_commit
971breezy.plugins.git.tests.test_transportgit.TransportObjectStoreTests.test_add_object
972breezy.plugins.git.tests.test_transportgit.TransportObjectStoreTests.test_add_objects
973breezy.plugins.git.tests.test_transportgit.TransportObjectStoreTests.test_add_objects_empty
974breezy.plugins.git.tests.test_transportgit.TransportObjectStoreTests.test_close
975breezy.plugins.git.tests.test_transportgit.TransportObjectStoreTests.test_contains_nonexistant
976breezy.plugins.git.tests.test_transportgit.TransportObjectStoreTests.test_determine_wants_all
977breezy.plugins.git.tests.test_transportgit.TransportObjectStoreTests.test_determine_wants_all_zero
978breezy.plugins.git.tests.test_transportgit.TransportObjectStoreTests.test_empty_packs
979breezy.plugins.git.tests.test_transportgit.TransportObjectStoreTests.test_get_nonexistant
980breezy.plugins.git.tests.test_transportgit.TransportObjectStoreTests.test_get_raw
981breezy.plugins.git.tests.test_transportgit.TransportObjectStoreTests.test_iter
982breezy.plugins.git.tests.test_transportgit.TransportObjectStoreTests.test_iter_tree_contents
983breezy.plugins.git.tests.test_transportgit.TransportObjectStoreTests.test_iter_tree_contents_include_trees
984breezy.plugins.git.tests.test_transportgit.TransportObjectStoreTests.test_pack_loose_objects
985breezy.plugins.git.tests.test_transportgit.TransportObjectStoreTests.test_peel_sha
986breezy.plugins.git.tests.test_transportgit.TransportObjectStoreTests.test_remembers_packs
987breezy.plugins.git.tests.test_transportgit.TransportObjectStoreTests.test_repack
988breezy.plugins.git.tests.test_transportgit.TransportObjectStoreTests.test_repack_existing
989breezy.plugins.git.tests.test_transportgit.TransportObjectStoreTests.test_store_resilience
990breezy.plugins.git.tests.test_transportgit.TransportObjectStoreTests.test_tree_changes
991breezy.plugins.git.tests.test_unpeel_map.TestUnpeelMap.test_load
992breezy.plugins.git.tests.test_unpeel_map.TestUnpeelMap.test_new
993breezy.plugins.git.tests.test_unpeel_map.TestUnpeelMap.test_update
994breezy.plugins.git.tests.test_urls.TestConvertURL.test_path
995breezy.plugins.git.tests.test_urls.TestConvertURL.test_regular
996breezy.plugins.git.tests.test_urls.TestConvertURL.test_simple
997breezy.plugins.git.tests.test_workingtree.ChangesBetweenGitTreeAndWorkingCopyTests.test_added_file
998breezy.plugins.git.tests.test_workingtree.ChangesBetweenGitTreeAndWorkingCopyTests.test_added_unknown_file
999breezy.plugins.git.tests.test_workingtree.ChangesBetweenGitTreeAndWorkingCopyTests.test_empty
1000breezy.plugins.git.tests.test_workingtree.ChangesBetweenGitTreeAndWorkingCopyTests.test_extra
1001breezy.plugins.git.tests.test_workingtree.ChangesBetweenGitTreeAndWorkingCopyTests.test_missing_added_file
1002breezy.plugins.git.tests.test_workingtree.ChangesBetweenGitTreeAndWorkingCopyTests.test_missing_versioned_file
1003breezy.plugins.git.tests.test_workingtree.ChangesBetweenGitTreeAndWorkingCopyTests.test_versioned_replace_by_dir
1004breezy.plugins.git.tests.test_workingtree.GitWorkingTreeTests.test_add_conflict
1005breezy.plugins.git.tests.test_workingtree.GitWorkingTreeTests.test_conflict_list
1006breezy.plugins.git.tests.test_workingtree.GitWorkingTreeTests.test_revert_empty
1007breezy.plugins.git.tests.test_workingtree.TreeDeltaFromGitChangesTests.test_empty
1008breezy.plugins.git.tests.test_workingtree.TreeDeltaFromGitChangesTests.test_missing
1009breezy.plugins.grep.test_grep.TestColorGrep.test_color_option
1010breezy.plugins.grep.test_grep.TestColorGrep.test_ver_basic_file
1011breezy.plugins.grep.test_grep.TestColorGrep.test_ver_matching_files
1012breezy.plugins.grep.test_grep.TestColorGrep.test_wtree_basic_file
1013breezy.plugins.grep.test_grep.TestColorGrep.test_wtree_matching_files
1014breezy.plugins.grep.test_grep.TestGrepDiff.test_grep_diff_basic
1015breezy.plugins.grep.test_grep.TestGrepDiff.test_grep_diff_color
1016breezy.plugins.grep.test_grep.TestGrepDiff.test_grep_diff_revision
1017breezy.plugins.grep.test_grep.TestGrepDiff.test_grep_diff_revision_range
1018breezy.plugins.grep.test_grep.TestGrepDiff.test_grep_norevs
1019breezy.plugins.grep.test_grep.TestGrep.test_basic_unknown_file
1020breezy.plugins.grep.test_grep.TestGrep.test_dotted_rev_grep
1021breezy.plugins.grep.test_grep.TestGrep.test_levels
1022breezy.plugins.grep.test_grep.TestGrep.test_multiple_wtree_files
1023breezy.plugins.grep.test_grep.TestGrep.test_no_tree
1024breezy.plugins.grep.test_grep.TestGrep.test_revno_basic_history_grep_file
1025breezy.plugins.grep.test_grep.TestGrep.test_revno_basic_history_grep_full
1026breezy.plugins.grep.test_grep.TestGrep.test_revno_range_basic_history_grep
1027breezy.plugins.grep.test_grep.TestGrep.test_revno_range_versioned_file_from_outside_dir
1028breezy.plugins.grep.test_grep.TestGrep.test_revno_range_versioned_file_in_dir
1029breezy.plugins.grep.test_grep.TestGrep.test_revno_versioned_file_in_dir
1030breezy.plugins.grep.test_grep.TestGrep.test_revspec
1031breezy.plugins.grep.test_grep.TestGrep.test_ver_basic_exclude
1032breezy.plugins.grep.test_grep.TestGrep.test_ver_basic_file
1033breezy.plugins.grep.test_grep.TestGrep.test_ver_basic_include
1034breezy.plugins.grep.test_grep.TestGrep.test_ver_files_with_matches
1035breezy.plugins.grep.test_grep.TestGrep.test_ver_files_without_matches
1036breezy.plugins.grep.test_grep.TestGrep.test_ver_multiple_files
1037breezy.plugins.grep.test_grep.TestGrep.test_ver_null_option
1038breezy.plugins.grep.test_grep.TestGrep.test_versioned_binary_file_grep
1039breezy.plugins.grep.test_grep.TestGrep.test_versioned_exclude_file_within_dir
1040breezy.plugins.grep.test_grep.TestGrep.test_versioned_exclude_from_outside_dir
1041breezy.plugins.grep.test_grep.TestGrep.test_versioned_file_in_dir_no_recursive
1042breezy.plugins.grep.test_grep.TestGrep.test_versioned_file_in_dir_recurse
1043breezy.plugins.grep.test_grep.TestGrep.test_versioned_files_from_outside_dir
1044breezy.plugins.grep.test_grep.TestGrep.test_versioned_files_from_outside_two_dirs
1045breezy.plugins.grep.test_grep.TestGrep.test_versioned_file_within_dir
1046breezy.plugins.grep.test_grep.TestGrep.test_versioned_file_within_dir_two_levels
1047breezy.plugins.grep.test_grep.TestGrep.test_versioned_from_root_fail
1048breezy.plugins.grep.test_grep.TestGrep.test_versioned_from_root_pass
1049breezy.plugins.grep.test_grep.TestGrep.test_versioned_ignore_case_match
1050breezy.plugins.grep.test_grep.TestGrep.test_versioned_ignore_case_no_match
1051breezy.plugins.grep.test_grep.TestGrep.test_versioned_include_file_within_dir
1052breezy.plugins.grep.test_grep.TestGrep.test_versioned_include_from_outside_dir
1053breezy.plugins.grep.test_grep.TestGrep.test_versioned_with_line_number
1054breezy.plugins.grep.test_grep.TestGrep.test_workingtree_files_from_outside_dir
1055breezy.plugins.grep.test_grep.TestGrep.test_wtree_basic_exclude
1056breezy.plugins.grep.test_grep.TestGrep.test_wtree_basic_file
1057breezy.plugins.grep.test_grep.TestGrep.test_wtree_basic_include
1058breezy.plugins.grep.test_grep.TestGrep.test_wtree_binary_file_grep
1059breezy.plugins.grep.test_grep.TestGrep.test_wtree_exclude_file_within_dir
1060breezy.plugins.grep.test_grep.TestGrep.test_wtree_exclude_from_outside_dir
1061breezy.plugins.grep.test_grep.TestGrep.test_wtree_file_in_dir_no_recursive
1062breezy.plugins.grep.test_grep.TestGrep.test_wtree_file_in_dir_recurse
1063breezy.plugins.grep.test_grep.TestGrep.test_wtree_files_from_outside_dir
1064breezy.plugins.grep.test_grep.TestGrep.test_wtree_files_from_outside_two_dirs
1065breezy.plugins.grep.test_grep.TestGrep.test_wtree_files_with_matches
1066breezy.plugins.grep.test_grep.TestGrep.test_wtree_files_without_matches
1067breezy.plugins.grep.test_grep.TestGrep.test_wtree_file_within_dir
1068breezy.plugins.grep.test_grep.TestGrep.test_wtree_file_within_dir_two_levels
1069breezy.plugins.grep.test_grep.TestGrep.test_wtree_from_root_fail
1070breezy.plugins.grep.test_grep.TestGrep.test_wtree_from_root_pass
1071breezy.plugins.grep.test_grep.TestGrep.test_wtree_ignore_case_match
1072breezy.plugins.grep.test_grep.TestGrep.test_wtree_ignore_case_no_match
1073breezy.plugins.grep.test_grep.TestGrep.test_wtree_include_file_within_dir
1074breezy.plugins.grep.test_grep.TestGrep.test_wtree_include_from_outside_dir
1075breezy.plugins.grep.test_grep.TestGrep.test_wtree_null_option
1076breezy.plugins.grep.test_grep.TestGrep.test_wtree_with_line_number
1077breezy.plugins.grep.test_grep.TestNonAscii.test_unicode_only_file
1078breezy.plugins.launchpad.test_account.CheckAccountTests.test_check_lp_login_no_ssh_keys
1079breezy.plugins.launchpad.test_account.CheckAccountTests.test_check_lp_login_no_user
1080breezy.plugins.launchpad.test_account.CheckAccountTests.test_check_lp_login_valid_user
1081breezy.plugins.launchpad.test_account.LaunchpadAccountTests.test_get_lp_login
1082breezy.plugins.launchpad.test_account.LaunchpadAccountTests.test_get_lp_login_does_not_update_for_none_user
1083breezy.plugins.launchpad.test_account.LaunchpadAccountTests.test_get_lp_login_errors_on_mismatch
1084breezy.plugins.launchpad.test_account.LaunchpadAccountTests.test_get_lp_login_leaves_existing_credentials
1085breezy.plugins.launchpad.test_account.LaunchpadAccountTests.test_get_lp_login_unconfigured
1086breezy.plugins.launchpad.test_account.LaunchpadAccountTests.test_get_lp_login_updates_authentication_conf
1087breezy.plugins.launchpad.test_account.LaunchpadAccountTests.test_no_registered_ssh_keys
1088breezy.plugins.launchpad.test_account.LaunchpadAccountTests.test_set_lp_login
1089breezy.plugins.launchpad.test_account.LaunchpadAccountTests.test_set_lp_login_updates_authentication_conf
1090breezy.plugins.launchpad.test_account.LaunchpadAccountTests.test_unknown_launchpad_username
1091breezy.plugins.launchpad.test_lp_api_lite.TestGetMostRecentTag.test_get_most_recent_tag_older
1092breezy.plugins.launchpad.test_lp_api_lite.TestGetMostRecentTag.test_get_most_recent_tag_tip
1093breezy.plugins.launchpad.test_lp_api_lite.Test_GetNewestVersions.test_missing
1094breezy.plugins.launchpad.test_lp_api_lite.Test_GetNewestVersions.test_no_tags
1095breezy.plugins.launchpad.test_lp_api_lite.Test_GetNewestVersions.test_out_of_date
1096breezy.plugins.launchpad.test_lp_api_lite.Test_GetNewestVersions.test_up_to_date
1097breezy.plugins.launchpad.test_lp_api_lite.TestIsUpToDate.test__get_package_branch_info
1098breezy.plugins.launchpad.test_lp_api_lite.TestIsUpToDate.test_package_branch_doesnt_match
1099breezy.plugins.launchpad.test_lp_api_lite.TestIsUpToDate.test_package_branch_regex
1100breezy.plugins.launchpad.test_lp_api_lite.TestLatestPublication.test__archive_URL
1101breezy.plugins.launchpad.test_lp_api_lite.TestLatestPublication.test_get_latest_version_example
1102breezy.plugins.launchpad.test_lp_api_lite.TestLatestPublication.test_get_latest_version_invalid_entries
1103breezy.plugins.launchpad.test_lp_api_lite.TestLatestPublication.test_get_latest_version_invalid_json
1104breezy.plugins.launchpad.test_lp_api_lite.TestLatestPublication.test_get_latest_version_missing_entries
1105breezy.plugins.launchpad.test_lp_api_lite.TestLatestPublication.test_get_latest_version_no_json
1106breezy.plugins.launchpad.test_lp_api_lite.TestLatestPublication.test_get_latest_version_no_response
1107breezy.plugins.launchpad.test_lp_api_lite.TestLatestPublication.test_get_latest_version_no_versions
1108breezy.plugins.launchpad.test_lp_api_lite.TestLatestPublication.test__get_lp_info_no_json
1109breezy.plugins.launchpad.test_lp_api_lite.TestLatestPublication.test_init
1110breezy.plugins.launchpad.test_lp_api_lite.TestLatestPublication.test__parse_json_example_response
1111breezy.plugins.launchpad.test_lp_api_lite.TestLatestPublication.test__parse_json_info_no_module
1112breezy.plugins.launchpad.test_lp_api_lite.TestLatestPublication.test__parse_json_not_json
1113breezy.plugins.launchpad.test_lp_api_lite.TestLatestPublication.test_place
1114breezy.plugins.launchpad.test_lp_api_lite.TestLatestPublication.test_pocket
1115breezy.plugins.launchpad.test_lp_api_lite.TestLatestPublication.test__publication_status_for_debian
1116breezy.plugins.launchpad.test_lp_api_lite.TestLatestPublication.test__publication_status_for_ubuntu
1117breezy.plugins.launchpad.test_lp_api_lite.TestLatestPublication.test__query_params
1118breezy.plugins.launchpad.test_lp_api_lite.TestLatestPublication.test__query_params_no_series
1119breezy.plugins.launchpad.test_lp_api_lite.TestLatestPublication.test__query_params_pocket
1120breezy.plugins.launchpad.test_lp_api_lite.TestLatestPublication.test__query_URL
1121breezy.plugins.launchpad.test_lp_api_lite.TestLatestPublication.test_series_None
1122breezy.plugins.launchpad.test_lp_api_lite.Test_ReportFreshness.test_verbosity_all_missing
1123breezy.plugins.launchpad.test_lp_api_lite.Test_ReportFreshness.test_verbosity_all_no_tags
1124breezy.plugins.launchpad.test_lp_api_lite.Test_ReportFreshness.test_verbosity_all_out_of_date
1125breezy.plugins.launchpad.test_lp_api_lite.TestReportFreshness.test_verbosity_all_out_of_date_smoke
1126breezy.plugins.launchpad.test_lp_api_lite.Test_ReportFreshness.test_verbosity_all_up_to_date
1127breezy.plugins.launchpad.test_lp_api_lite.Test_ReportFreshness.test_verbosity_minimal_missing
1128breezy.plugins.launchpad.test_lp_api_lite.Test_ReportFreshness.test_verbosity_minimal_no_tags
1129breezy.plugins.launchpad.test_lp_api_lite.Test_ReportFreshness.test_verbosity_minimal_out_of_date
1130breezy.plugins.launchpad.test_lp_api_lite.Test_ReportFreshness.test_verbosity_minimal_up_to_date
1131breezy.plugins.launchpad.test_lp_api_lite.Test_ReportFreshness.test_verbosity_None_is_all
1132breezy.plugins.launchpad.test_lp_api_lite.TestReportFreshness.test_verbosity_off
1133breezy.plugins.launchpad.test_lp_api_lite.TestReportFreshness.test_verbosity_off_skips_check
1134breezy.plugins.launchpad.test_lp_api_lite.Test_ReportFreshness.test_verbosity_short_missing
1135breezy.plugins.launchpad.test_lp_api_lite.Test_ReportFreshness.test_verbosity_short_out_of_date
1136breezy.plugins.launchpad.test_lp_api_lite.Test_ReportFreshness.test_verbosity_short_up_to_date
1137breezy.plugins.launchpad.test_lp_api.TestCacheDirectory.test_get_cache_directory
1138breezy.plugins.launchpad.test_lp_api.TestDependencyManagement.test_get_launchpadlib_version
1139breezy.plugins.launchpad.test_lp_api.TestDependencyManagement.test_supported_launchpadlib_version
1140breezy.plugins.launchpad.test_lp_api.TestDependencyManagement.test_unsupported_launchpadlib_version
1141breezy.plugins.launchpad.test_lp_api.TestLaunchpadMirror.test_alias_exists
1142breezy.plugins.launchpad.test_lp_api.TestLaunchpadMirror.test_command_exists
1143breezy.plugins.launchpad.test_lp_directory.DirectoryOpenBranchTests.test_directory_open_branch
1144breezy.plugins.launchpad.test_lp_directory.DirectoryUrlTests.test_directory_fault
1145breezy.plugins.launchpad.test_lp_directory.DirectoryUrlTests.test_directory_no_matching_schemes
1146breezy.plugins.launchpad.test_lp_directory.DirectoryUrlTests.test_directory_skip_bad_schemes
1147breezy.plugins.launchpad.test_lp_directory.DirectoryUrlTests.test_error_for_bad_url
1148breezy.plugins.launchpad.test_lp_directory.DirectoryUrlTests.test_no_rewrite_of_other_bzr_ssh
1149breezy.plugins.launchpad.test_lp_directory.DirectoryUrlTests.test_qastaging
1150breezy.plugins.launchpad.test_lp_directory.DirectoryUrlTests.test_resolve_tilde_to_user
1151breezy.plugins.launchpad.test_lp_directory.DirectoryUrlTests.test_short_form
1152breezy.plugins.launchpad.test_lp_directory.DirectoryUrlTests.test_skip_bzr_ssh_launchpad_net_when_anonymous
1153breezy.plugins.launchpad.test_lp_directory.DirectoryUrlTests.test_skip_sftp_launchpad_net_when_anonymous
1154breezy.plugins.launchpad.test_lp_directory.DirectoryUrlTests.test_staging
1155breezy.plugins.launchpad.test_lp_directory.DirectoryUrlTests.test_tilde_fails_no_login
1156breezy.plugins.launchpad.test_lp_directory.DirectoryUrlTests.test_url_from_directory
1157breezy.plugins.launchpad.test_lp_directory.DirectoryUrlTests.test_with_login_avoid_resolve_factory
1158breezy.plugins.launchpad.test_lp_directory.LocalDirectoryURLTests.test_debug_launchpad_uses_resolver
1159breezy.plugins.launchpad.test_lp_directory.LocalDirectoryURLTests.test_handles_special_lp
1160breezy.plugins.launchpad.test_lp_directory.LocalDirectoryURLTests.test_short_form
1161breezy.plugins.launchpad.test_lp_directory.LocalDirectoryURLTests.test_two_part_form
1162breezy.plugins.launchpad.test_lp_directory.LocalDirectoryURLTests.test_two_part_plus_subdir
1163breezy.plugins.launchpad.test_lp_directory.LocalDirectoryURLTests.test_ubuntu
1164breezy.plugins.launchpad.test_lp_directory.LocalDirectoryURLTests.test_ubuntu_apt
1165breezy.plugins.launchpad.test_lp_directory.LocalDirectoryURLTests.test_ubuntu_invalid
1166breezy.plugins.launchpad.test_lp_directory.LocalDirectoryURLTests.test_ubuntu_natty_apt
1167breezy.plugins.launchpad.test_lp_directory.LocalDirectoryURLTests.test_ubuntu_natty_apt_filename
1168breezy.plugins.launchpad.test_lp_directory.LocalDirectoryURLTests.test_user_expansion
1169breezy.plugins.launchpad.test_lp_directory.LocalDirectoryURLTests.test_user_three_part
1170breezy.plugins.launchpad.test_lp_directory.LocalDirectoryURLTests.test_user_three_part_plus_filename
1171breezy.plugins.launchpad.test_lp_directory.LocalDirectoryURLTests.test_user_two_part
1172breezy.plugins.launchpad.test_lp_directory.LocalDirectoryURLTests.test_user_ubuntu_five_part
1173breezy.plugins.launchpad.test_lp_directory.LocalDirectoryURLTests.test_user_ubuntu_five_part_plus_subdir
1174breezy.plugins.launchpad.test_lp_directory.LocalDirectoryURLTests.test_user_ubuntu_four_part
1175breezy.plugins.launchpad.test_lp_directory.LocalDirectoryURLTests.test_user_ubuntu_three_part
1176breezy.plugins.launchpad.test_lp_directory.LocalDirectoryURLTests.test_user_ubuntu_two_part
1177breezy.plugins.launchpad.test_lp_directory.TestDebuntuExpansions.test_bogus_distro
1178breezy.plugins.launchpad.test_lp_directory.TestDebuntuExpansions.test_debian_default_distroseries_expansion
1179breezy.plugins.launchpad.test_lp_directory.TestDebuntuExpansions.test_debian_lenny_distroseries_expansion
1180breezy.plugins.launchpad.test_lp_directory.TestDebuntuExpansions.test_debian_squeeze_distroseries_expansion
1181breezy.plugins.launchpad.test_lp_directory.TestDebuntuExpansions.test_missing_debian_distroseries
1182breezy.plugins.launchpad.test_lp_directory.TestDebuntuExpansions.test_missing_ubuntu_distroseries_without_project
1183breezy.plugins.launchpad.test_lp_directory.TestDebuntuExpansions.test_missing_ubuntu_distroseries_with_project
1184breezy.plugins.launchpad.test_lp_directory.TestDebuntuExpansions.test_trick_bogus_distro_d
1185breezy.plugins.launchpad.test_lp_directory.TestDebuntuExpansions.test_trick_bogus_distro_u
1186breezy.plugins.launchpad.test_lp_directory.TestDebuntuExpansions.test_ubuntu_dapper_distroseries_expansion
1187breezy.plugins.launchpad.test_lp_directory.TestDebuntuExpansions.test_ubuntu_d_distroseries_expansion
1188breezy.plugins.launchpad.test_lp_directory.TestDebuntuExpansions.test_ubuntu_default_distroseries_expansion
1189breezy.plugins.launchpad.test_lp_directory.TestDebuntuExpansions.test_ubuntu_hardy_distroseries_expansion
1190breezy.plugins.launchpad.test_lp_directory.TestDebuntuExpansions.test_ubuntu_h_distroseries_expansion
1191breezy.plugins.launchpad.test_lp_directory.TestDebuntuExpansions.test_ubuntu_jaunty_distroseries_expansion
1192breezy.plugins.launchpad.test_lp_directory.TestDebuntuExpansions.test_ubuntu_j_distroseries_expansion
1193breezy.plugins.launchpad.test_lp_directory.TestDebuntuExpansions.test_ubuntu_karmic_distroseries_expansion
1194breezy.plugins.launchpad.test_lp_directory.TestDebuntuExpansions.test_ubuntu_k_distroseries_expansion
1195breezy.plugins.launchpad.test_lp_directory.TestDebuntuExpansions.test_ubuntu_l_distroseries_expansion
1196breezy.plugins.launchpad.test_lp_directory.TestDebuntuExpansions.test_ubuntu_lucid_distroseries_expansion
1197breezy.plugins.launchpad.test_lp_directory.TestDebuntuExpansions.test_ubuntu_maverick_distroseries_expansion
1198breezy.plugins.launchpad.test_lp_directory.TestDebuntuExpansions.test_ubuntu_m_distroseries_expansion
1199breezy.plugins.launchpad.test_lp_directory.TestDebuntuExpansions.test_ubuntu_natty_distroseries_expansion
1200breezy.plugins.launchpad.test_lp_directory.TestDebuntuExpansions.test_ubuntu_n_distroseries_expansion
1201breezy.plugins.launchpad.test_lp_directory.TestXMLRPCTransport.test_direct_request(http)
1202breezy.plugins.launchpad.test_lp_directory.TestXMLRPCTransport.test_direct_request(https)
1203breezy.plugins.launchpad.test_lp_login.TestLaunchpadLogin.test_login_with_name_no_output_by_default
1204breezy.plugins.launchpad.test_lp_login.TestLaunchpadLogin.test_login_with_name_sets_login
1205breezy.plugins.launchpad.test_lp_login.TestLaunchpadLogin.test_login_with_name_verbose
1206breezy.plugins.launchpad.test_lp_login.TestLaunchpadLogin.test_login_without_name_when_logged_in
1207breezy.plugins.launchpad.test_lp_login.TestLaunchpadLogin.test_login_without_name_when_not_logged_in
1208breezy.plugins.launchpad.test_lp_login.TestLaunchpadLogin.test_logout
1209breezy.plugins.launchpad.test_lp_login.TestLaunchpadLogin.test_logout_not_logged_in
1210breezy.plugins.launchpad.test_lp_open.TestLaunchpadOpen.test_launchpad_branch_subdirectory
1211breezy.plugins.launchpad.test_lp_open.TestLaunchpadOpen.test_launchpad_branch_with_no_public_but_with_push
1212breezy.plugins.launchpad.test_lp_open.TestLaunchpadOpen.test_launchpad_branch_with_no_public_no_push
1213breezy.plugins.launchpad.test_lp_open.TestLaunchpadOpen.test_launchpad_branch_with_public_and_push_location
1214breezy.plugins.launchpad.test_lp_open.TestLaunchpadOpen.test_launchpad_branch_with_public_location
1215breezy.plugins.launchpad.test_lp_open.TestLaunchpadOpen.test_non_branch
1216breezy.plugins.launchpad.test_lp_open.TestLaunchpadOpen.test_non_launchpad_branch
1217breezy.plugins.launchpad.test_lp_open.TestLaunchpadOpen.test_no_public_location_no_push_location
1218breezy.plugins.launchpad.test_lp_service.LaunchpadServiceTests.test_alter_default_service_url
1219breezy.plugins.launchpad.test_lp_service.LaunchpadServiceTests.test_default_service
1220breezy.plugins.launchpad.test_lp_service.LaunchpadServiceTests.test_demo_service
1221breezy.plugins.launchpad.test_lp_service.LaunchpadServiceTests.test_dev_service
1222breezy.plugins.launchpad.test_lp_service.LaunchpadServiceTests.test_environment_overrides_default
1223breezy.plugins.launchpad.test_lp_service.LaunchpadServiceTests.test_environment_overrides_specified_service
1224breezy.plugins.launchpad.test_lp_service.LaunchpadServiceTests.test_staging_service
1225breezy.plugins.launchpad.test_lp_service.LaunchpadServiceTests.test_unknown_service
1226breezy.plugins.launchpad.test_lp_service.TestURLInference.test_default_bzr_ssh_url
1227breezy.plugins.launchpad.test_lp_service.TestURLInference.test_demo_url
1228breezy.plugins.launchpad.test_lp_service.TestURLInference.test_dev_url
1229breezy.plugins.launchpad.test_lp_service.TestURLInference.test_dodgy_launchpad_url
1230breezy.plugins.launchpad.test_lp_service.TestURLInference.test_lp_branch_fault
1231breezy.plugins.launchpad.test_lp_service.TestURLInference.test_lp_branch_shortcut
1232breezy.plugins.launchpad.test_lp_service.TestURLInference.test_lp_branch_url
1233breezy.plugins.launchpad.test_lp_service.TestURLInference.test_non_launchpad_url
1234breezy.plugins.launchpad.test_lp_service.TestURLInference.test_product_bzr_ssh_url
1235breezy.plugins.launchpad.test_lp_service.TestURLInference.test_sftp_branch_url
1236breezy.plugins.launchpad.test_lp_service.TestURLInference.test_staging_branch_url
1237breezy.plugins.launchpad.test_lp_service.TestURLInference.test_staging_url
1238breezy.plugins.launchpad.test_register.TestResolveLaunchpadPathRequest.test_mock_resolve_lp_url
1239breezy.plugins.launchpad.test_register.TestResolveLaunchpadPathRequest.test_onto_transport
1240breezy.plugins.launchpad.test_register.TestResolveLaunchpadPathRequest.test_subclass_request
1241breezy.plugins.netrc_credential_store.tests.test_netrc.TestNetrcCSNoNetrc.test_home_netrc_does_not_exist
1242breezy.plugins.netrc_credential_store.tests.test_netrc.TestNetrcCS.test_default_password
1243breezy.plugins.netrc_credential_store.tests.test_netrc.TestNetrcCS.test_default_password_without_user
1244breezy.plugins.netrc_credential_store.tests.test_netrc.TestNetrcCS.test_get_netrc_credentials_via_auth_config
1245breezy.plugins.netrc_credential_store.tests.test_netrc.TestNetrcCS.test_matching_user
1246breezy.plugins.netrc_credential_store.tests.test_netrc.TestNetrcCS.test_not_matching_user
1247breezy.plugins.po_merge.tests.test_po_merge.BlackboxTestPoMerger.test_called_on_remerge
1248breezy.plugins.po_merge.tests.test_po_merge.BlackboxTestPoMerger.test_merge_with_hook_gives_unexpected_results
1249breezy.plugins.po_merge.tests.test_po_merge.TestAdduserBranch.test_base
1250breezy.plugins.po_merge.tests.test_po_merge.TestAdduserBranch.test_other
1251breezy.plugins.po_merge.tests.test_po_merge.TestAdduserBranch.test_this
1252breezy.plugins.repodebug.tests.SmokeTests.test_check_chk
1253breezy.plugins.repodebug.tests.SmokeTests.test_chk_used_by
1254breezy.plugins.repodebug.tests.SmokeTests.test_fetch_all_records
1255breezy.plugins.repodebug.tests.SmokeTests.test_file_refs
1256breezy.plugins.repodebug.tests.SmokeTests.test_fix_missing_keys_for_stacking
1257breezy.plugins.repodebug.tests.SmokeTests.test_mirror_revs_into
1258breezy.plugins.repodebug.tests.SmokeTests.test_repo_has_key
1259breezy.plugins.repodebug.tests.SmokeTests.test_repo_keys
1260breezy.plugins.stats.test_classify.TestClassify.test_classify_art
1261breezy.plugins.stats.test_classify.TestClassify.test_classify_code
1262breezy.plugins.stats.test_classify.TestClassify.test_classify_doc_hardcoded
1263breezy.plugins.stats.test_classify.TestClassify.test_classify_documentation
1264breezy.plugins.stats.test_classify.TestClassify.test_classify_multiple_periods
1265breezy.plugins.stats.test_classify.TestClassify.test_classify_translation
1266breezy.plugins.stats.test_classify.TestClassify.test_classify_unknown
1267breezy.plugins.stats.test_stats.TestCollapseByPerson.test_different_email
1268breezy.plugins.stats.test_stats.TestCollapseByPerson.test_different_name
1269breezy.plugins.stats.test_stats.TestCollapseByPerson.test_different_name_case
1270breezy.plugins.stats.test_stats.TestCollapseByPerson.test_no_conflicts
1271breezy.plugins.stats.test_stats.TestGetRevisionsAndCommitters.test_different_case
1272breezy.plugins.stats.test_stats.TestGetRevisionsAndCommitters.test_empty_email
1273breezy.plugins.stats.test_stats.TestGetRevisionsAndCommitters.test_simple
1274breezy.plugins.upload.tests.test_auto_upload_hook.AutoPushWithLocation.test_auto_push_on_commit
1275breezy.plugins.upload.tests.test_auto_upload_hook.AutoPushWithLocation.test_disable_auto_push
1276breezy.plugins.upload.tests.test_auto_upload_hook.AutoPushWithoutLocation.test_dont_push_if_no_location
1277breezy.plugins.upload.tests.test_upload.TestBranchUploadLocations.test_get_push_location_exact(BranchReferenceFormat)
1278breezy.plugins.upload.tests.test_upload.TestBranchUploadLocations.test_get_push_location_exact(BzrBranchFormat4)
1279breezy.plugins.upload.tests.test_upload.TestBranchUploadLocations.test_get_push_location_exact(BzrBranchFormat5)
1280breezy.plugins.upload.tests.test_upload.TestBranchUploadLocations.test_get_push_location_exact(BzrBranchFormat6)
1281breezy.plugins.upload.tests.test_upload.TestBranchUploadLocations.test_get_push_location_exact(BzrBranchFormat7)
1282breezy.plugins.upload.tests.test_upload.TestBranchUploadLocations.test_get_push_location_exact(BzrBranchFormat8)
1283breezy.plugins.upload.tests.test_upload.TestBranchUploadLocations.test_get_push_location_exact(LocalGitBranchFormat)
1284breezy.plugins.upload.tests.test_upload.TestBranchUploadLocations.test_get_push_location_exact(RemoteBranchFormat-default)
1285breezy.plugins.upload.tests.test_upload.TestBranchUploadLocations.test_get_push_location_exact(RemoteBranchFormat-v2)
1286breezy.plugins.upload.tests.test_upload.TestBranchUploadLocations.test_get_push_location_exact(RemoteGitBranchFormat)
1287breezy.plugins.upload.tests.test_upload.TestBranchUploadLocations.test_get_upload_location_unset(BranchReferenceFormat)
1288breezy.plugins.upload.tests.test_upload.TestBranchUploadLocations.test_get_upload_location_unset(BzrBranchFormat4)
1289breezy.plugins.upload.tests.test_upload.TestBranchUploadLocations.test_get_upload_location_unset(BzrBranchFormat5)
1290breezy.plugins.upload.tests.test_upload.TestBranchUploadLocations.test_get_upload_location_unset(BzrBranchFormat6)
1291breezy.plugins.upload.tests.test_upload.TestBranchUploadLocations.test_get_upload_location_unset(BzrBranchFormat7)
1292breezy.plugins.upload.tests.test_upload.TestBranchUploadLocations.test_get_upload_location_unset(BzrBranchFormat8)
1293breezy.plugins.upload.tests.test_upload.TestBranchUploadLocations.test_get_upload_location_unset(LocalGitBranchFormat)
1294breezy.plugins.upload.tests.test_upload.TestBranchUploadLocations.test_get_upload_location_unset(RemoteBranchFormat-default)
1295breezy.plugins.upload.tests.test_upload.TestBranchUploadLocations.test_get_upload_location_unset(RemoteBranchFormat-v2)
1296breezy.plugins.upload.tests.test_upload.TestBranchUploadLocations.test_get_upload_location_unset(RemoteGitBranchFormat)
1297breezy.plugins.upload.tests.test_upload.TestBranchUploadLocations.test_set_push_location(BranchReferenceFormat)
1298breezy.plugins.upload.tests.test_upload.TestBranchUploadLocations.test_set_push_location(BzrBranchFormat4)
1299breezy.plugins.upload.tests.test_upload.TestBranchUploadLocations.test_set_push_location(BzrBranchFormat5)
1300breezy.plugins.upload.tests.test_upload.TestBranchUploadLocations.test_set_push_location(BzrBranchFormat6)
1301breezy.plugins.upload.tests.test_upload.TestBranchUploadLocations.test_set_push_location(BzrBranchFormat7)
1302breezy.plugins.upload.tests.test_upload.TestBranchUploadLocations.test_set_push_location(BzrBranchFormat8)
1303breezy.plugins.upload.tests.test_upload.TestBranchUploadLocations.test_set_push_location(LocalGitBranchFormat)
1304breezy.plugins.upload.tests.test_upload.TestBranchUploadLocations.test_set_push_location(RemoteBranchFormat-default)
1305breezy.plugins.upload.tests.test_upload.TestBranchUploadLocations.test_set_push_location(RemoteBranchFormat-v2)
1306breezy.plugins.upload.tests.test_upload.TestBranchUploadLocations.test_set_push_location(RemoteGitBranchFormat)
1307breezy.plugins.upload.tests.test_upload.TestFullUpload.test_change_dir_into_file(SFTPTransport,SFTPAbsoluteServer)
1308breezy.plugins.upload.tests.test_upload.TestFullUpload.test_change_dir_into_file(SFTPTransport,SFTPHomeDirServer)
1309breezy.plugins.upload.tests.test_upload.TestFullUpload.test_change_dir_into_file(SFTPTransport,SFTPSiblingAbsoluteServer)
1310breezy.plugins.upload.tests.test_upload.TestFullUpload.test_change_file_into_dir(SFTPTransport,SFTPAbsoluteServer)
1311breezy.plugins.upload.tests.test_upload.TestFullUpload.test_change_file_into_dir(SFTPTransport,SFTPHomeDirServer)
1312breezy.plugins.upload.tests.test_upload.TestFullUpload.test_change_file_into_dir(SFTPTransport,SFTPSiblingAbsoluteServer)
1313breezy.plugins.upload.tests.test_upload.TestFullUpload.test_create_file_in_dir(SFTPTransport,SFTPAbsoluteServer)
1314breezy.plugins.upload.tests.test_upload.TestFullUpload.test_create_file_in_dir(SFTPTransport,SFTPHomeDirServer)
1315breezy.plugins.upload.tests.test_upload.TestFullUpload.test_create_file_in_dir(SFTPTransport,SFTPSiblingAbsoluteServer)
1316breezy.plugins.upload.tests.test_upload.TestFullUpload.test_create_file(SFTPTransport,SFTPAbsoluteServer)
1317breezy.plugins.upload.tests.test_upload.TestFullUpload.test_create_file(SFTPTransport,SFTPHomeDirServer)
1318breezy.plugins.upload.tests.test_upload.TestFullUpload.test_create_file(SFTPTransport,SFTPSiblingAbsoluteServer)
1319breezy.plugins.upload.tests.test_upload.TestFullUpload.test_create_remote_dir_twice(SFTPTransport,SFTPAbsoluteServer)
1320breezy.plugins.upload.tests.test_upload.TestFullUpload.test_create_remote_dir_twice(SFTPTransport,SFTPHomeDirServer)
1321breezy.plugins.upload.tests.test_upload.TestFullUpload.test_create_remote_dir_twice(SFTPTransport,SFTPSiblingAbsoluteServer)
1322breezy.plugins.upload.tests.test_upload.TestFullUpload.test_create_symlink(SFTPTransport,SFTPAbsoluteServer)
1323breezy.plugins.upload.tests.test_upload.TestFullUpload.test_create_symlink(SFTPTransport,SFTPHomeDirServer)
1324breezy.plugins.upload.tests.test_upload.TestFullUpload.test_create_symlink(SFTPTransport,SFTPSiblingAbsoluteServer)
1325breezy.plugins.upload.tests.test_upload.TestFullUpload.test_full_upload_empty_tree(SFTPTransport,SFTPAbsoluteServer)
1326breezy.plugins.upload.tests.test_upload.TestFullUpload.test_full_upload_empty_tree(SFTPTransport,SFTPHomeDirServer)
1327breezy.plugins.upload.tests.test_upload.TestFullUpload.test_full_upload_empty_tree(SFTPTransport,SFTPSiblingAbsoluteServer)
1328breezy.plugins.upload.tests.test_upload.TestFullUpload.test_ignore_change_dir_into_file(SFTPTransport,SFTPAbsoluteServer)
1329breezy.plugins.upload.tests.test_upload.TestFullUpload.test_ignore_change_dir_into_file(SFTPTransport,SFTPHomeDirServer)
1330breezy.plugins.upload.tests.test_upload.TestFullUpload.test_ignore_change_dir_into_file(SFTPTransport,SFTPSiblingAbsoluteServer)
1331breezy.plugins.upload.tests.test_upload.TestFullUpload.test_ignore_change_file_into_dir(SFTPTransport,SFTPAbsoluteServer)
1332breezy.plugins.upload.tests.test_upload.TestFullUpload.test_ignore_change_file_into_dir(SFTPTransport,SFTPHomeDirServer)
1333breezy.plugins.upload.tests.test_upload.TestFullUpload.test_ignore_change_file_into_dir(SFTPTransport,SFTPSiblingAbsoluteServer)
1334breezy.plugins.upload.tests.test_upload.TestFullUpload.test_ignore_delete_dir_in_subdir(SFTPTransport,SFTPAbsoluteServer)
1335breezy.plugins.upload.tests.test_upload.TestFullUpload.test_ignore_delete_dir_in_subdir(SFTPTransport,SFTPHomeDirServer)
1336breezy.plugins.upload.tests.test_upload.TestFullUpload.test_ignore_delete_dir_in_subdir(SFTPTransport,SFTPSiblingAbsoluteServer)
1337breezy.plugins.upload.tests.test_upload.TestFullUpload.test_ignore_directory(SFTPTransport,SFTPAbsoluteServer)
1338breezy.plugins.upload.tests.test_upload.TestFullUpload.test_ignore_directory(SFTPTransport,SFTPHomeDirServer)
1339breezy.plugins.upload.tests.test_upload.TestFullUpload.test_ignore_directory(SFTPTransport,SFTPSiblingAbsoluteServer)
1340breezy.plugins.upload.tests.test_upload.TestFullUpload.test_ignore_file(SFTPTransport,SFTPAbsoluteServer)
1341breezy.plugins.upload.tests.test_upload.TestFullUpload.test_ignore_file(SFTPTransport,SFTPHomeDirServer)
1342breezy.plugins.upload.tests.test_upload.TestFullUpload.test_ignore_file(SFTPTransport,SFTPSiblingAbsoluteServer)
1343breezy.plugins.upload.tests.test_upload.TestFullUpload.test_ignore_nested_directory(SFTPTransport,SFTPAbsoluteServer)
1344breezy.plugins.upload.tests.test_upload.TestFullUpload.test_ignore_nested_directory(SFTPTransport,SFTPHomeDirServer)
1345breezy.plugins.upload.tests.test_upload.TestFullUpload.test_ignore_nested_directory(SFTPTransport,SFTPSiblingAbsoluteServer)
1346breezy.plugins.upload.tests.test_upload.TestFullUpload.test_ignore_regexp(SFTPTransport,SFTPAbsoluteServer)
1347breezy.plugins.upload.tests.test_upload.TestFullUpload.test_ignore_regexp(SFTPTransport,SFTPHomeDirServer)
1348breezy.plugins.upload.tests.test_upload.TestFullUpload.test_ignore_regexp(SFTPTransport,SFTPSiblingAbsoluteServer)
1349breezy.plugins.upload.tests.test_upload.TestFullUpload.test_invalid_revspec(SFTPTransport,SFTPAbsoluteServer)
1350breezy.plugins.upload.tests.test_upload.TestFullUpload.test_invalid_revspec(SFTPTransport,SFTPHomeDirServer)
1351breezy.plugins.upload.tests.test_upload.TestFullUpload.test_invalid_revspec(SFTPTransport,SFTPSiblingAbsoluteServer)
1352breezy.plugins.upload.tests.test_upload.TestFullUpload.test_make_file_executable(SFTPTransport,SFTPAbsoluteServer)
1353breezy.plugins.upload.tests.test_upload.TestFullUpload.test_make_file_executable(SFTPTransport,SFTPHomeDirServer)
1354breezy.plugins.upload.tests.test_upload.TestFullUpload.test_make_file_executable(SFTPTransport,SFTPSiblingAbsoluteServer)
1355breezy.plugins.upload.tests.test_upload.TestFullUpload.test_modify_file(SFTPTransport,SFTPAbsoluteServer)
1356breezy.plugins.upload.tests.test_upload.TestFullUpload.test_modify_file(SFTPTransport,SFTPHomeDirServer)
1357breezy.plugins.upload.tests.test_upload.TestFullUpload.test_modify_file(SFTPTransport,SFTPSiblingAbsoluteServer)
1358breezy.plugins.upload.tests.test_upload.TestFullUpload.test_no_upload_when_changes(SFTPTransport,SFTPAbsoluteServer)
1359breezy.plugins.upload.tests.test_upload.TestFullUpload.test_no_upload_when_changes(SFTPTransport,SFTPHomeDirServer)
1360breezy.plugins.upload.tests.test_upload.TestFullUpload.test_no_upload_when_changes(SFTPTransport,SFTPSiblingAbsoluteServer)
1361breezy.plugins.upload.tests.test_upload.TestFullUpload.test_no_upload_when_conflicts(SFTPTransport,SFTPAbsoluteServer)
1362breezy.plugins.upload.tests.test_upload.TestFullUpload.test_no_upload_when_conflicts(SFTPTransport,SFTPHomeDirServer)
1363breezy.plugins.upload.tests.test_upload.TestFullUpload.test_no_upload_when_conflicts(SFTPTransport,SFTPSiblingAbsoluteServer)
1364breezy.plugins.upload.tests.test_upload.TestFullUpload.test_rename_and_change_file(SFTPTransport,SFTPAbsoluteServer)
1365breezy.plugins.upload.tests.test_upload.TestFullUpload.test_rename_and_change_file(SFTPTransport,SFTPHomeDirServer)
1366breezy.plugins.upload.tests.test_upload.TestFullUpload.test_rename_and_change_file(SFTPTransport,SFTPSiblingAbsoluteServer)
1367breezy.plugins.upload.tests.test_upload.TestFullUpload.test_rename_one_file(SFTPTransport,SFTPAbsoluteServer)
1368breezy.plugins.upload.tests.test_upload.TestFullUpload.test_rename_one_file(SFTPTransport,SFTPHomeDirServer)
1369breezy.plugins.upload.tests.test_upload.TestFullUpload.test_rename_one_file(SFTPTransport,SFTPSiblingAbsoluteServer)
1370breezy.plugins.upload.tests.test_upload.TestFullUpload.test_rename_symlink(SFTPTransport,SFTPAbsoluteServer)
1371breezy.plugins.upload.tests.test_upload.TestFullUpload.test_rename_symlink(SFTPTransport,SFTPHomeDirServer)
1372breezy.plugins.upload.tests.test_upload.TestFullUpload.test_rename_symlink(SFTPTransport,SFTPSiblingAbsoluteServer)
1373breezy.plugins.upload.tests.test_upload.TestFullUpload.test_rename_two_files(SFTPTransport,SFTPAbsoluteServer)
1374breezy.plugins.upload.tests.test_upload.TestFullUpload.test_rename_two_files(SFTPTransport,SFTPHomeDirServer)
1375breezy.plugins.upload.tests.test_upload.TestFullUpload.test_rename_two_files(SFTPTransport,SFTPSiblingAbsoluteServer)
1376breezy.plugins.upload.tests.test_upload.TestFullUpload.test_unicode_change_file_into_dir(SFTPTransport,SFTPAbsoluteServer)
1377breezy.plugins.upload.tests.test_upload.TestFullUpload.test_unicode_change_file_into_dir(SFTPTransport,SFTPHomeDirServer)
1378breezy.plugins.upload.tests.test_upload.TestFullUpload.test_unicode_change_file_into_dir(SFTPTransport,SFTPSiblingAbsoluteServer)
1379breezy.plugins.upload.tests.test_upload.TestFullUpload.test_unicode_create_file_in_dir(SFTPTransport,SFTPAbsoluteServer)
1380breezy.plugins.upload.tests.test_upload.TestFullUpload.test_unicode_create_file_in_dir(SFTPTransport,SFTPHomeDirServer)
1381breezy.plugins.upload.tests.test_upload.TestFullUpload.test_unicode_create_file_in_dir(SFTPTransport,SFTPSiblingAbsoluteServer)
1382breezy.plugins.upload.tests.test_upload.TestFullUpload.test_unicode_create_file(SFTPTransport,SFTPAbsoluteServer)
1383breezy.plugins.upload.tests.test_upload.TestFullUpload.test_unicode_create_file(SFTPTransport,SFTPHomeDirServer)
1384breezy.plugins.upload.tests.test_upload.TestFullUpload.test_unicode_create_file(SFTPTransport,SFTPSiblingAbsoluteServer)
1385breezy.plugins.upload.tests.test_upload.TestFullUpload.test_unicode_make_file_executable(SFTPTransport,SFTPAbsoluteServer)
1386breezy.plugins.upload.tests.test_upload.TestFullUpload.test_unicode_make_file_executable(SFTPTransport,SFTPHomeDirServer)
1387breezy.plugins.upload.tests.test_upload.TestFullUpload.test_unicode_make_file_executable(SFTPTransport,SFTPSiblingAbsoluteServer)
1388breezy.plugins.upload.tests.test_upload.TestFullUpload.test_unicode_rename_one_file(SFTPTransport,SFTPAbsoluteServer)
1389breezy.plugins.upload.tests.test_upload.TestFullUpload.test_unicode_rename_one_file(SFTPTransport,SFTPHomeDirServer)
1390breezy.plugins.upload.tests.test_upload.TestFullUpload.test_unicode_rename_one_file(SFTPTransport,SFTPSiblingAbsoluteServer)
1391breezy.plugins.upload.tests.test_upload.TestFullUpload.test_upload_auto(SFTPTransport,SFTPAbsoluteServer)
1392breezy.plugins.upload.tests.test_upload.TestFullUpload.test_upload_auto(SFTPTransport,SFTPHomeDirServer)
1393breezy.plugins.upload.tests.test_upload.TestFullUpload.test_upload_auto(SFTPTransport,SFTPSiblingAbsoluteServer)
1394breezy.plugins.upload.tests.test_upload.TestFullUpload.test_upload_from_subdir(SFTPTransport,SFTPAbsoluteServer)
1395breezy.plugins.upload.tests.test_upload.TestFullUpload.test_upload_from_subdir(SFTPTransport,SFTPHomeDirServer)
1396breezy.plugins.upload.tests.test_upload.TestFullUpload.test_upload_from_subdir(SFTPTransport,SFTPSiblingAbsoluteServer)
1397breezy.plugins.upload.tests.test_upload.TestFullUpload.test_upload_noauto(SFTPTransport,SFTPAbsoluteServer)
1398breezy.plugins.upload.tests.test_upload.TestFullUpload.test_upload_noauto(SFTPTransport,SFTPHomeDirServer)
1399breezy.plugins.upload.tests.test_upload.TestFullUpload.test_upload_noauto(SFTPTransport,SFTPSiblingAbsoluteServer)
1400breezy.plugins.upload.tests.test_upload.TestFullUpload.test_upload_revid_path_in_dir(SFTPTransport,SFTPAbsoluteServer)
1401breezy.plugins.upload.tests.test_upload.TestFullUpload.test_upload_revid_path_in_dir(SFTPTransport,SFTPHomeDirServer)
1402breezy.plugins.upload.tests.test_upload.TestFullUpload.test_upload_revid_path_in_dir(SFTPTransport,SFTPSiblingAbsoluteServer)
1403breezy.plugins.upload.tests.test_upload.TestFullUpload.test_upload_revision(SFTPTransport,SFTPAbsoluteServer)
1404breezy.plugins.upload.tests.test_upload.TestFullUpload.test_upload_revision(SFTPTransport,SFTPHomeDirServer)
1405breezy.plugins.upload.tests.test_upload.TestFullUpload.test_upload_revision(SFTPTransport,SFTPSiblingAbsoluteServer)
1406breezy.plugins.upload.tests.test_upload.TestIncrementalUpload.test_change_dir_into_file(SFTPTransport,SFTPAbsoluteServer)
1407breezy.plugins.upload.tests.test_upload.TestIncrementalUpload.test_change_dir_into_file(SFTPTransport,SFTPHomeDirServer)
1408breezy.plugins.upload.tests.test_upload.TestIncrementalUpload.test_change_dir_into_file(SFTPTransport,SFTPSiblingAbsoluteServer)
1409breezy.plugins.upload.tests.test_upload.TestIncrementalUpload.test_change_file_into_dir(SFTPTransport,SFTPAbsoluteServer)
1410breezy.plugins.upload.tests.test_upload.TestIncrementalUpload.test_change_file_into_dir(SFTPTransport,SFTPHomeDirServer)
1411breezy.plugins.upload.tests.test_upload.TestIncrementalUpload.test_change_file_into_dir(SFTPTransport,SFTPSiblingAbsoluteServer)
1412breezy.plugins.upload.tests.test_upload.TestIncrementalUpload.test_create_file_in_dir(SFTPTransport,SFTPAbsoluteServer)
1413breezy.plugins.upload.tests.test_upload.TestIncrementalUpload.test_create_file_in_dir(SFTPTransport,SFTPHomeDirServer)
1414breezy.plugins.upload.tests.test_upload.TestIncrementalUpload.test_create_file_in_dir(SFTPTransport,SFTPSiblingAbsoluteServer)
1415breezy.plugins.upload.tests.test_upload.TestIncrementalUpload.test_create_file(SFTPTransport,SFTPAbsoluteServer)
1416breezy.plugins.upload.tests.test_upload.TestIncrementalUpload.test_create_file(SFTPTransport,SFTPHomeDirServer)
1417breezy.plugins.upload.tests.test_upload.TestIncrementalUpload.test_create_file(SFTPTransport,SFTPSiblingAbsoluteServer)
1418breezy.plugins.upload.tests.test_upload.TestIncrementalUpload.test_create_symlink(SFTPTransport,SFTPAbsoluteServer)
1419breezy.plugins.upload.tests.test_upload.TestIncrementalUpload.test_create_symlink(SFTPTransport,SFTPHomeDirServer)
1420breezy.plugins.upload.tests.test_upload.TestIncrementalUpload.test_create_symlink(SFTPTransport,SFTPSiblingAbsoluteServer)
1421breezy.plugins.upload.tests.test_upload.TestIncrementalUpload.test_delete_dir_and_subdir(SFTPTransport,SFTPAbsoluteServer)
1422breezy.plugins.upload.tests.test_upload.TestIncrementalUpload.test_delete_dir_and_subdir(SFTPTransport,SFTPHomeDirServer)
1423breezy.plugins.upload.tests.test_upload.TestIncrementalUpload.test_delete_dir_and_subdir(SFTPTransport,SFTPSiblingAbsoluteServer)
1424breezy.plugins.upload.tests.test_upload.TestIncrementalUpload.test_delete_one_file_rename_to_deleted(SFTPTransport,SFTPAbsoluteServer)
1425breezy.plugins.upload.tests.test_upload.TestIncrementalUpload.test_delete_one_file_rename_to_deleted(SFTPTransport,SFTPHomeDirServer)
1426breezy.plugins.upload.tests.test_upload.TestIncrementalUpload.test_delete_one_file_rename_to_deleted(SFTPTransport,SFTPSiblingAbsoluteServer)
1427breezy.plugins.upload.tests.test_upload.TestIncrementalUpload.test_delete_one_file(SFTPTransport,SFTPAbsoluteServer)
1428breezy.plugins.upload.tests.test_upload.TestIncrementalUpload.test_delete_one_file(SFTPTransport,SFTPHomeDirServer)
1429breezy.plugins.upload.tests.test_upload.TestIncrementalUpload.test_delete_one_file(SFTPTransport,SFTPSiblingAbsoluteServer)
1430breezy.plugins.upload.tests.test_upload.TestIncrementalUpload.test_delete_symlink(SFTPTransport,SFTPAbsoluteServer)
1431breezy.plugins.upload.tests.test_upload.TestIncrementalUpload.test_delete_symlink(SFTPTransport,SFTPHomeDirServer)
1432breezy.plugins.upload.tests.test_upload.TestIncrementalUpload.test_delete_symlink(SFTPTransport,SFTPSiblingAbsoluteServer)
1433breezy.plugins.upload.tests.test_upload.TestIncrementalUpload.test_ignore_change_dir_into_file(SFTPTransport,SFTPAbsoluteServer)
1434breezy.plugins.upload.tests.test_upload.TestIncrementalUpload.test_ignore_change_dir_into_file(SFTPTransport,SFTPHomeDirServer)
1435breezy.plugins.upload.tests.test_upload.TestIncrementalUpload.test_ignore_change_dir_into_file(SFTPTransport,SFTPSiblingAbsoluteServer)
1436breezy.plugins.upload.tests.test_upload.TestIncrementalUpload.test_ignore_change_file_into_dir(SFTPTransport,SFTPAbsoluteServer)
1437breezy.plugins.upload.tests.test_upload.TestIncrementalUpload.test_ignore_change_file_into_dir(SFTPTransport,SFTPHomeDirServer)
1438breezy.plugins.upload.tests.test_upload.TestIncrementalUpload.test_ignore_change_file_into_dir(SFTPTransport,SFTPSiblingAbsoluteServer)
1439breezy.plugins.upload.tests.test_upload.TestIncrementalUpload.test_ignore_delete_dir_in_subdir(SFTPTransport,SFTPAbsoluteServer)
1440breezy.plugins.upload.tests.test_upload.TestIncrementalUpload.test_ignore_delete_dir_in_subdir(SFTPTransport,SFTPHomeDirServer)
1441breezy.plugins.upload.tests.test_upload.TestIncrementalUpload.test_ignore_delete_dir_in_subdir(SFTPTransport,SFTPSiblingAbsoluteServer)
1442breezy.plugins.upload.tests.test_upload.TestIncrementalUpload.test_ignore_delete_one_file(SFTPTransport,SFTPAbsoluteServer)
1443breezy.plugins.upload.tests.test_upload.TestIncrementalUpload.test_ignore_delete_one_file(SFTPTransport,SFTPHomeDirServer)
1444breezy.plugins.upload.tests.test_upload.TestIncrementalUpload.test_ignore_delete_one_file(SFTPTransport,SFTPSiblingAbsoluteServer)
1445breezy.plugins.upload.tests.test_upload.TestIncrementalUpload.test_ignore_directory(SFTPTransport,SFTPAbsoluteServer)
1446breezy.plugins.upload.tests.test_upload.TestIncrementalUpload.test_ignore_directory(SFTPTransport,SFTPHomeDirServer)
1447breezy.plugins.upload.tests.test_upload.TestIncrementalUpload.test_ignore_directory(SFTPTransport,SFTPSiblingAbsoluteServer)
1448breezy.plugins.upload.tests.test_upload.TestIncrementalUpload.test_ignore_file(SFTPTransport,SFTPAbsoluteServer)
1449breezy.plugins.upload.tests.test_upload.TestIncrementalUpload.test_ignore_file(SFTPTransport,SFTPHomeDirServer)
1450breezy.plugins.upload.tests.test_upload.TestIncrementalUpload.test_ignore_file(SFTPTransport,SFTPSiblingAbsoluteServer)
1451breezy.plugins.upload.tests.test_upload.TestIncrementalUpload.test_ignore_nested_directory(SFTPTransport,SFTPAbsoluteServer)
1452breezy.plugins.upload.tests.test_upload.TestIncrementalUpload.test_ignore_nested_directory(SFTPTransport,SFTPHomeDirServer)
1453breezy.plugins.upload.tests.test_upload.TestIncrementalUpload.test_ignore_nested_directory(SFTPTransport,SFTPSiblingAbsoluteServer)
1454breezy.plugins.upload.tests.test_upload.TestIncrementalUpload.test_ignore_regexp(SFTPTransport,SFTPAbsoluteServer)
1455breezy.plugins.upload.tests.test_upload.TestIncrementalUpload.test_ignore_regexp(SFTPTransport,SFTPHomeDirServer)
1456breezy.plugins.upload.tests.test_upload.TestIncrementalUpload.test_ignore_regexp(SFTPTransport,SFTPSiblingAbsoluteServer)
1457breezy.plugins.upload.tests.test_upload.TestIncrementalUpload.test_make_file_executable(SFTPTransport,SFTPAbsoluteServer)
1458breezy.plugins.upload.tests.test_upload.TestIncrementalUpload.test_make_file_executable(SFTPTransport,SFTPHomeDirServer)
1459breezy.plugins.upload.tests.test_upload.TestIncrementalUpload.test_make_file_executable(SFTPTransport,SFTPSiblingAbsoluteServer)
1460breezy.plugins.upload.tests.test_upload.TestIncrementalUpload.test_modify_file(SFTPTransport,SFTPAbsoluteServer)
1461breezy.plugins.upload.tests.test_upload.TestIncrementalUpload.test_modify_file(SFTPTransport,SFTPHomeDirServer)
1462breezy.plugins.upload.tests.test_upload.TestIncrementalUpload.test_modify_file(SFTPTransport,SFTPSiblingAbsoluteServer)
1463breezy.plugins.upload.tests.test_upload.TestIncrementalUpload.test_no_upload_when_changes(SFTPTransport,SFTPAbsoluteServer)
1464breezy.plugins.upload.tests.test_upload.TestIncrementalUpload.test_no_upload_when_changes(SFTPTransport,SFTPHomeDirServer)
1465breezy.plugins.upload.tests.test_upload.TestIncrementalUpload.test_no_upload_when_changes(SFTPTransport,SFTPSiblingAbsoluteServer)
1466breezy.plugins.upload.tests.test_upload.TestIncrementalUpload.test_no_upload_when_conflicts(SFTPTransport,SFTPAbsoluteServer)
1467breezy.plugins.upload.tests.test_upload.TestIncrementalUpload.test_no_upload_when_conflicts(SFTPTransport,SFTPHomeDirServer)
1468breezy.plugins.upload.tests.test_upload.TestIncrementalUpload.test_no_upload_when_conflicts(SFTPTransport,SFTPSiblingAbsoluteServer)
1469breezy.plugins.upload.tests.test_upload.TestIncrementalUpload.test_rename_and_change_file(SFTPTransport,SFTPAbsoluteServer)
1470breezy.plugins.upload.tests.test_upload.TestIncrementalUpload.test_rename_and_change_file(SFTPTransport,SFTPHomeDirServer)
1471breezy.plugins.upload.tests.test_upload.TestIncrementalUpload.test_rename_and_change_file(SFTPTransport,SFTPSiblingAbsoluteServer)
1472breezy.plugins.upload.tests.test_upload.TestIncrementalUpload.test_rename_one_file(SFTPTransport,SFTPAbsoluteServer)
1473breezy.plugins.upload.tests.test_upload.TestIncrementalUpload.test_rename_one_file(SFTPTransport,SFTPHomeDirServer)
1474breezy.plugins.upload.tests.test_upload.TestIncrementalUpload.test_rename_one_file(SFTPTransport,SFTPSiblingAbsoluteServer)
1475breezy.plugins.upload.tests.test_upload.TestIncrementalUpload.test_rename_outside_dir_delete_dir(SFTPTransport,SFTPAbsoluteServer)
1476breezy.plugins.upload.tests.test_upload.TestIncrementalUpload.test_rename_outside_dir_delete_dir(SFTPTransport,SFTPHomeDirServer)
1477breezy.plugins.upload.tests.test_upload.TestIncrementalUpload.test_rename_outside_dir_delete_dir(SFTPTransport,SFTPSiblingAbsoluteServer)
1478breezy.plugins.upload.tests.test_upload.TestIncrementalUpload.test_rename_symlink(SFTPTransport,SFTPAbsoluteServer)
1479breezy.plugins.upload.tests.test_upload.TestIncrementalUpload.test_rename_symlink(SFTPTransport,SFTPHomeDirServer)
1480breezy.plugins.upload.tests.test_upload.TestIncrementalUpload.test_rename_symlink(SFTPTransport,SFTPSiblingAbsoluteServer)
1481breezy.plugins.upload.tests.test_upload.TestIncrementalUpload.test_rename_two_files(SFTPTransport,SFTPAbsoluteServer)
1482breezy.plugins.upload.tests.test_upload.TestIncrementalUpload.test_rename_two_files(SFTPTransport,SFTPHomeDirServer)
1483breezy.plugins.upload.tests.test_upload.TestIncrementalUpload.test_rename_two_files(SFTPTransport,SFTPSiblingAbsoluteServer)
1484breezy.plugins.upload.tests.test_upload.TestIncrementalUpload.test_unicode_change_file_into_dir(SFTPTransport,SFTPAbsoluteServer)
1485breezy.plugins.upload.tests.test_upload.TestIncrementalUpload.test_unicode_change_file_into_dir(SFTPTransport,SFTPHomeDirServer)
1486breezy.plugins.upload.tests.test_upload.TestIncrementalUpload.test_unicode_change_file_into_dir(SFTPTransport,SFTPSiblingAbsoluteServer)
1487breezy.plugins.upload.tests.test_upload.TestIncrementalUpload.test_unicode_create_file_in_dir(SFTPTransport,SFTPAbsoluteServer)
1488breezy.plugins.upload.tests.test_upload.TestIncrementalUpload.test_unicode_create_file_in_dir(SFTPTransport,SFTPHomeDirServer)
1489breezy.plugins.upload.tests.test_upload.TestIncrementalUpload.test_unicode_create_file_in_dir(SFTPTransport,SFTPSiblingAbsoluteServer)
1490breezy.plugins.upload.tests.test_upload.TestIncrementalUpload.test_unicode_create_file(SFTPTransport,SFTPAbsoluteServer)
1491breezy.plugins.upload.tests.test_upload.TestIncrementalUpload.test_unicode_create_file(SFTPTransport,SFTPHomeDirServer)
1492breezy.plugins.upload.tests.test_upload.TestIncrementalUpload.test_unicode_create_file(SFTPTransport,SFTPSiblingAbsoluteServer)
1493breezy.plugins.upload.tests.test_upload.TestIncrementalUpload.test_unicode_make_file_executable(SFTPTransport,SFTPAbsoluteServer)
1494breezy.plugins.upload.tests.test_upload.TestIncrementalUpload.test_unicode_make_file_executable(SFTPTransport,SFTPHomeDirServer)
1495breezy.plugins.upload.tests.test_upload.TestIncrementalUpload.test_unicode_make_file_executable(SFTPTransport,SFTPSiblingAbsoluteServer)
1496breezy.plugins.upload.tests.test_upload.TestIncrementalUpload.test_unicode_rename_one_file(SFTPTransport,SFTPAbsoluteServer)
1497breezy.plugins.upload.tests.test_upload.TestIncrementalUpload.test_unicode_rename_one_file(SFTPTransport,SFTPHomeDirServer)
1498breezy.plugins.upload.tests.test_upload.TestIncrementalUpload.test_unicode_rename_one_file(SFTPTransport,SFTPSiblingAbsoluteServer)
1499breezy.plugins.upload.tests.test_upload.TestIncrementalUpload.test_upload_auto(SFTPTransport,SFTPAbsoluteServer)
1500breezy.plugins.upload.tests.test_upload.TestIncrementalUpload.test_upload_auto(SFTPTransport,SFTPHomeDirServer)
1501breezy.plugins.upload.tests.test_upload.TestIncrementalUpload.test_upload_auto(SFTPTransport,SFTPSiblingAbsoluteServer)
1502breezy.plugins.upload.tests.test_upload.TestIncrementalUpload.test_upload_for_the_first_time_do_a_full_upload(SFTPTransport,SFTPAbsoluteServer)
1503breezy.plugins.upload.tests.test_upload.TestIncrementalUpload.test_upload_for_the_first_time_do_a_full_upload(SFTPTransport,SFTPHomeDirServer)
1504breezy.plugins.upload.tests.test_upload.TestIncrementalUpload.test_upload_for_the_first_time_do_a_full_upload(SFTPTransport,SFTPSiblingAbsoluteServer)
1505breezy.plugins.upload.tests.test_upload.TestIncrementalUpload.test_upload_from_subdir(SFTPTransport,SFTPAbsoluteServer)
1506breezy.plugins.upload.tests.test_upload.TestIncrementalUpload.test_upload_from_subdir(SFTPTransport,SFTPHomeDirServer)
1507breezy.plugins.upload.tests.test_upload.TestIncrementalUpload.test_upload_from_subdir(SFTPTransport,SFTPSiblingAbsoluteServer)
1508breezy.plugins.upload.tests.test_upload.TestIncrementalUpload.test_upload_noauto(SFTPTransport,SFTPAbsoluteServer)
1509breezy.plugins.upload.tests.test_upload.TestIncrementalUpload.test_upload_noauto(SFTPTransport,SFTPHomeDirServer)
1510breezy.plugins.upload.tests.test_upload.TestIncrementalUpload.test_upload_noauto(SFTPTransport,SFTPSiblingAbsoluteServer)
1511breezy.plugins.upload.tests.test_upload.TestIncrementalUpload.test_upload_revid_path_in_dir(SFTPTransport,SFTPAbsoluteServer)
1512breezy.plugins.upload.tests.test_upload.TestIncrementalUpload.test_upload_revid_path_in_dir(SFTPTransport,SFTPHomeDirServer)
1513breezy.plugins.upload.tests.test_upload.TestIncrementalUpload.test_upload_revid_path_in_dir(SFTPTransport,SFTPSiblingAbsoluteServer)
1514breezy.plugins.upload.tests.test_upload.TestIncrementalUpload.test_upload_revision(SFTPTransport,SFTPAbsoluteServer)
1515breezy.plugins.upload.tests.test_upload.TestIncrementalUpload.test_upload_revision(SFTPTransport,SFTPHomeDirServer)
1516breezy.plugins.upload.tests.test_upload.TestIncrementalUpload.test_upload_revision(SFTPTransport,SFTPSiblingAbsoluteServer)
1517breezy.plugins.upload.tests.test_upload.TestUploadBadRemoteReivd.test_raises_on_wrong_revid
1518breezy.plugins.upload.tests.test_upload.TestUploadDiverged.test_cant_upload_diverged
1519breezy.plugins.upload.tests.test_upload.TestUploadDiverged.test_upload_diverged_with_overwrite
1520breezy.plugins.upload.tests.test_upload.TestUploadFromRemoteBranch.test_no_upload_to_remote_working_tree(SFTPTransport,SFTPAbsoluteServer)
1521breezy.plugins.upload.tests.test_upload.TestUploadFromRemoteBranch.test_no_upload_to_remote_working_tree(SFTPTransport,SFTPHomeDirServer)
1522breezy.plugins.upload.tests.test_upload.TestUploadFromRemoteBranch.test_no_upload_to_remote_working_tree(SFTPTransport,SFTPSiblingAbsoluteServer)
1523breezy.plugins.upload.tests.test_upload.TestUploadFromRemoteBranch.test_upload_without_working_tree(SFTPTransport,SFTPAbsoluteServer)
1524breezy.plugins.upload.tests.test_upload.TestUploadFromRemoteBranch.test_upload_without_working_tree(SFTPTransport,SFTPHomeDirServer)
1525breezy.plugins.upload.tests.test_upload.TestUploadFromRemoteBranch.test_upload_without_working_tree(SFTPTransport,SFTPSiblingAbsoluteServer)
1526breezy.plugins.weave_fmt.test_bzrdir.SFTPBranchTest.test_lock_file
1527breezy.plugins.weave_fmt.test_bzrdir.TestBoundBranch.test_bind_format_6_bzrdir
1528breezy.plugins.weave_fmt.test_bzrdir.TestBoundBranch.test_unbind_format_6_bzrdir
1529breezy.plugins.weave_fmt.test_bzrdir.TestBranchFormat4.test_no_metadir_support
1530breezy.plugins.weave_fmt.test_bzrdir.TestBranchFormat4.test_supports_bzrdir_6
1531breezy.plugins.weave_fmt.test_bzrdir.TestBreakLockOldBranch.test_break_lock_format_5_bzrdir
1532breezy.plugins.weave_fmt.test_bzrdir.TestFormat5.test_can_convert
1533breezy.plugins.weave_fmt.test_bzrdir.TestFormat5.test_needs_conversion
1534breezy.plugins.weave_fmt.test_bzrdir.TestFormat5.test_same_lockfiles_between_tree_repo_branch
1535breezy.plugins.weave_fmt.test_bzrdir.TestFormat6.test_can_convert
1536breezy.plugins.weave_fmt.test_bzrdir.TestFormat6.test_needs_conversion
1537breezy.plugins.weave_fmt.test_bzrdir.TestFormat6.test_same_lockfiles_between_tree_repo_branch
1538breezy.plugins.weave_fmt.test_bzrdir.TestInfo.test_info_locking_oslocks
1539breezy.plugins.weave_fmt.test_bzrdir.TestInit.test_init_weave
1540breezy.plugins.weave_fmt.test_bzrdir.TestUpgrade.test_upgrade_makes_dir_weaves
1541breezy.plugins.weave_fmt.test_bzrdir.TestUpgrade.test_upgrade_simple
1542breezy.plugins.weave_fmt.test_bzrdir.TestUpgrade.test_upgrade_to_meta_sets_workingtree_last_revision
1543breezy.plugins.weave_fmt.test_bzrdir.TestUpgrade.test_upgrade_v6_to_meta_no_workingtree
1544breezy.plugins.weave_fmt.test_bzrdir.TestUpgrade.test_upgrade_with_ghosts
1545breezy.plugins.weave_fmt.test_bzrdir.V4WeaveBundleTester.test_across_models
1546breezy.plugins.weave_fmt.test_bzrdir.V4WeaveBundleTester.test_across_models_incompatible
1547breezy.plugins.weave_fmt.test_bzrdir.V4WeaveBundleTester.test_across_serializers
1548breezy.plugins.weave_fmt.test_bzrdir.V4WeaveBundleTester.test_alt_timezone_bundle
1549breezy.plugins.weave_fmt.test_bzrdir.V4WeaveBundleTester.test_binary_bundle
1550breezy.plugins.weave_fmt.test_bzrdir.V4WeaveBundleTester.test_bundle
1551breezy.plugins.weave_fmt.test_bzrdir.V4WeaveBundleTester.test_bundle_empty_property
1552breezy.plugins.weave_fmt.test_bzrdir.V4WeaveBundleTester.test_bundle_root_id
1553breezy.plugins.weave_fmt.test_bzrdir.V4WeaveBundleTester.test_bundle_same_basis
1554breezy.plugins.weave_fmt.test_bzrdir.V4WeaveBundleTester.test_bundle_sorted_properties
1555breezy.plugins.weave_fmt.test_bzrdir.V4WeaveBundleTester.test_bundle_unicode_properties
1556breezy.plugins.weave_fmt.test_bzrdir.V4WeaveBundleTester.test_bundle_with_ghosts
1557breezy.plugins.weave_fmt.test_bzrdir.V4WeaveBundleTester.test_copy_signatures
1558breezy.plugins.weave_fmt.test_bzrdir.V4WeaveBundleTester.test_creation
1559breezy.plugins.weave_fmt.test_bzrdir.V4WeaveBundleTester.test_crlf_bundle
1560breezy.plugins.weave_fmt.test_bzrdir.V4WeaveBundleTester.test_get_merge_request
1561breezy.plugins.weave_fmt.test_bzrdir.V4WeaveBundleTester.test_hide_history
1562breezy.plugins.weave_fmt.test_bzrdir.V4WeaveBundleTester.test_install_revisions
1563breezy.plugins.weave_fmt.test_bzrdir.V4WeaveBundleTester.test_inv_hash_across_serializers
1564breezy.plugins.weave_fmt.test_bzrdir.V4WeaveBundleTester.test_last_modified
1565breezy.plugins.weave_fmt.test_bzrdir.V4WeaveBundleTester.test_malformed
1566breezy.plugins.weave_fmt.test_bzrdir.V4WeaveBundleTester.test_non_bundle
1567breezy.plugins.weave_fmt.test_bzrdir.V4WeaveBundleTester.test_revision_id_with_slash
1568breezy.plugins.weave_fmt.test_bzrdir.V4WeaveBundleTester.test_skip_file
1569breezy.plugins.weave_fmt.test_bzrdir.V4WeaveBundleTester.test_symlink_bundle
1570breezy.plugins.weave_fmt.test_bzrdir.V4WeaveBundleTester.test_unicode_bundle
1571breezy.plugins.weave_fmt.test_bzrdir.V4WeaveBundleTester.test_unicode_symlink_bundle
1572breezy.plugins.weave_fmt.test_bzrdir.V4WeaveBundleTester.test_whitespace_bundle
1573breezy.plugins.weave_fmt.test_bzrdir.V4WeaveBundleTester.test_with_subtree
1574breezy.plugins.weave_fmt.test_repository.TestFormat6.test_attribute__fetch_order
1575breezy.plugins.weave_fmt.test_repository.TestFormat6.test_attribute__fetch_reconcile
1576breezy.plugins.weave_fmt.test_repository.TestFormat6.test_attribute__fetch_uses_deltas
1577breezy.plugins.weave_fmt.test_repository.TestFormat6.test_no_ancestry_weave
1578breezy.plugins.weave_fmt.test_repository.TestFormat6.test_supports_external_lookups
1579breezy.plugins.weave_fmt.test_repository.TestFormat7.test_attribute__fetch_order
1580breezy.plugins.weave_fmt.test_repository.TestFormat7.test_attribute__fetch_reconcile
1581breezy.plugins.weave_fmt.test_repository.TestFormat7.test_attribute__fetch_uses_deltas
1582breezy.plugins.weave_fmt.test_repository.TestFormat7.test_creates_lockdir
1583breezy.plugins.weave_fmt.test_repository.TestFormat7.test_disk_layout
1584breezy.plugins.weave_fmt.test_repository.TestFormat7.test_shared_disk_layout
1585breezy.plugins.weave_fmt.test_repository.TestFormat7.test_shared_no_tree_disk_layout
1586breezy.plugins.weave_fmt.test_repository.TestFormat7.test_supports_external_lookups
1587breezy.plugins.weave_fmt.test_repository.TestFormat7.test_uses_lockdir
1588breezy.plugins.weave_fmt.test_repository.TestInterWeaveRepo.test_is_compatible_and_registered
1589breezy.plugins.weave_fmt.test_repository.TestInterWeaveRepo.test_make_repository
1590breezy.plugins.weave_fmt.test_repository.TestSerializer.test_canned_inventory
1591breezy.plugins.weave_fmt.test_repository.TestSerializer.test_registry
1592breezy.plugins.weave_fmt.test_repository.TestSerializer.test_unpack_revision
1593breezy.plugins.weave_fmt.test_store.TestCompressedTextStore.test_get
1594breezy.plugins.weave_fmt.test_store.TestCompressedTextStore.test_multiple_add
1595breezy.plugins.weave_fmt.test_store.TestCompressedTextStore.test__relpath_suffixed
1596breezy.plugins.weave_fmt.test_store.TestCompressedTextStore.test_total_size
1597breezy.plugins.weave_fmt.test_store.TestInstrumentedTransportStore.test__add_records
1598breezy.plugins.weave_fmt.test_store.TestMemoryStore.test_add_and_retrieve
1599breezy.plugins.weave_fmt.test_store.TestMemoryStore.test_adding_fails_when_present
1600breezy.plugins.weave_fmt.test_store.TestMemoryStore.test_missing_is_absent
1601breezy.plugins.weave_fmt.test_store.TestMemoryStore.test_total_size
1602breezy.plugins.weave_fmt.test_store.TestMixedTextStore.test_get
1603breezy.plugins.weave_fmt.test_store.TestMixedTextStore.test_get_mixed
1604breezy.plugins.weave_fmt.test_store.TestMixedTextStore.test_multiple_add
1605breezy.plugins.weave_fmt.test_store.TestMockTransport.test_has
1606breezy.plugins.weave_fmt.test_store.TestMockTransport.test_isinstance
1607breezy.plugins.weave_fmt.test_store.TestMockTransport.test_mkdir
1608breezy.plugins.weave_fmt.test_store.TestTextStore.test_get
1609breezy.plugins.weave_fmt.test_store.TestTextStore.test_multiple_add
1610breezy.plugins.weave_fmt.test_store.TestTextStore.test_total_size
1611breezy.plugins.weave_fmt.test_store.TestTransportStore.test_add_prefixed
1612breezy.plugins.weave_fmt.test_store.TestTransportStore.test_add_simple
1613breezy.plugins.weave_fmt.test_store.TestTransportStore.test_add_simple_suffixed
1614breezy.plugins.weave_fmt.test_store.TestTransportStore.test_escaped_uppercase
1615breezy.plugins.weave_fmt.test_store.TestTransportStore.test_get_simple
1616breezy.plugins.weave_fmt.test_store.TestTransportStore.test_get_suffixed
1617breezy.plugins.weave_fmt.test_store.TestTransportStore.test_get_suffixed_no_base
1618breezy.plugins.weave_fmt.test_store.TestTransportStore.test_has_simple
1619breezy.plugins.weave_fmt.test_store.TestTransportStore.test_has_suffixed
1620breezy.plugins.weave_fmt.test_store.TestTransportStore.test_has_suffixed_no_base
1621breezy.plugins.weave_fmt.test_store.TestTransportStore.test___iter__
1622breezy.plugins.weave_fmt.test_store.TestTransportStore.test___iter__compressed
1623breezy.plugins.weave_fmt.test_store.TestTransportStore.test___iter__no_suffix
1624breezy.plugins.weave_fmt.test_store.TestTransportStore.test___len__
1625breezy.plugins.weave_fmt.test_store.TestTransportStore.test_register_invalid_suffixes
1626breezy.plugins.weave_fmt.test_store.TestTransportStore.test_relpath_escaped
1627breezy.plugins.weave_fmt.test_store.TestTransportStore.test__relpath_invalid
1628breezy.plugins.weave_fmt.test_store.TestTransportStore.test__relpath_prefixed
1629breezy.plugins.weave_fmt.test_store.TestTransportStore.test__relpath_prefixed_suffixed
1630breezy.plugins.weave_fmt.test_store.TestTransportStore.test__relpath_simple
1631breezy.plugins.weave_fmt.test_store.TestTransportStore.test__relpath_simple_suffixed
1632breezy.plugins.weave_fmt.test_store.TestTransportStore.test__relpath_unregister_suffixes
1633breezy.plugins.weave_fmt.test_store.TestVersionFileStore.test_get_weave_readonly_cant_write
1634breezy.plugins.weave_fmt.test_store.TestVersionFileStore.test_get_weave_registers_dirty_in_write
1635breezy.plugins.weave_fmt.test_store.TestVersionFileStore.test___iter__escaped
1636breezy.plugins.weave_fmt.test_workingtree.TestFormat2WorkingTree.test_conflicts
1637breezy.plugins.weave_fmt.test_workingtree.TestFormat2WorkingTree.test_detect_conflicts
1638breezy.tests.blackbox.test_added.TestAdded.test_added
1639breezy.tests.blackbox.test_added.TestAdded.test_added_directory
1640breezy.tests.blackbox.test_added.TestAdded.test_added_null_separator
1641breezy.tests.blackbox.test_added.TestAdded.test_added_with_spaces
1642breezy.tests.blackbox.test_add.TestAdd.test_add_control_dir(pre-views)
1643breezy.tests.blackbox.test_add.TestAdd.test_add_control_dir(view-aware)
1644breezy.tests.blackbox.test_add.TestAdd.test_add_dry_run(pre-views)
1645breezy.tests.blackbox.test_add.TestAdd.test_add_dry_run(view-aware)
1646breezy.tests.blackbox.test_add.TestAdd.test_add_from(pre-views)
1647breezy.tests.blackbox.test_add.TestAdd.test_add_from_subdir(pre-views)
1648breezy.tests.blackbox.test_add.TestAdd.test_add_from_subdir(view-aware)
1649breezy.tests.blackbox.test_add.TestAdd.test_add_from(view-aware)
1650breezy.tests.blackbox.test_add.TestAdd.test_add_in_unversioned(pre-views)
1651breezy.tests.blackbox.test_add.TestAdd.test_add_in_unversioned(view-aware)
1652breezy.tests.blackbox.test_add.TestAdd.test_add_in_versioned(pre-views)
1653breezy.tests.blackbox.test_add.TestAdd.test_add_in_versioned(view-aware)
1654breezy.tests.blackbox.test_add.TestAdd.test_add_missing(pre-views)
1655breezy.tests.blackbox.test_add.TestAdd.test_add_missing(view-aware)
1656breezy.tests.blackbox.test_add.TestAdd.test_add_multiple_files_in_unicode_cwd(pre-views)
1657breezy.tests.blackbox.test_add.TestAdd.test_add_multiple_files_in_unicode_cwd(view-aware)
1658breezy.tests.blackbox.test_add.TestAdd.test_add_no_recurse(pre-views)
1659breezy.tests.blackbox.test_add.TestAdd.test_add_no_recurse(view-aware)
1660breezy.tests.blackbox.test_add.TestAdd.test_add_not_child(pre-views)
1661breezy.tests.blackbox.test_add.TestAdd.test_add_not_child(view-aware)
1662breezy.tests.blackbox.test_add.TestAdd.test_add_quiet_is(pre-views)
1663breezy.tests.blackbox.test_add.TestAdd.test_add_quiet_is(view-aware)
1664breezy.tests.blackbox.test_add.TestAdd.test_add_reports(pre-views)
1665breezy.tests.blackbox.test_add.TestAdd.test_add_reports(view-aware)
1666breezy.tests.blackbox.test_add.TestAdd.test_add_skip_large_files(pre-views)
1667breezy.tests.blackbox.test_add.TestAdd.test_add_skip_large_files(view-aware)
1668breezy.tests.blackbox.test_add.TestAdd.test_add_symlink_to_abspath(pre-views)
1669breezy.tests.blackbox.test_add.TestAdd.test_add_symlink_to_abspath(view-aware)
1670breezy.tests.blackbox.test_add.TestAdd.test_add_via_symlink(pre-views)
1671breezy.tests.blackbox.test_add.TestAdd.test_add_via_symlink(view-aware)
1672breezy.tests.blackbox.test_add.TestAdd.test_subdir_add(pre-views)
1673breezy.tests.blackbox.test_add.TestAdd.test_subdir_add(view-aware)
1674breezy.tests.blackbox.test_aliases.TestAliases.test_aliases
1675breezy.tests.blackbox.test_alias.TestAlias.test_add_alias_outputs_nothing
1676breezy.tests.blackbox.test_alias.TestAlias.test_add_alias_visible
1677breezy.tests.blackbox.test_alias.TestAlias.test_alias_listing_alphabetical
1678breezy.tests.blackbox.test_alias.TestAlias.test_list_alias_with_none
1679breezy.tests.blackbox.test_alias.TestAlias.test_list_unknown_alias
1680breezy.tests.blackbox.test_alias.TestAlias.test_remove_known_alias
1681breezy.tests.blackbox.test_alias.TestAlias.test_remove_unknown_alias
1682breezy.tests.blackbox.test_alias.TestAlias.test_unicode_alias
1683breezy.tests.blackbox.test_ancestry.TestAncestry.test_ancestry
1684breezy.tests.blackbox.test_ancestry.TestAncestry.test_ancestry_with_checkout
1685breezy.tests.blackbox.test_ancestry.TestAncestry.test_ancestry_with_lightweight_checkout
1686breezy.tests.blackbox.test_ancestry.TestAncestry.test_ancestry_with_location
1687breezy.tests.blackbox.test_ancestry.TestAncestry.test_ancestry_with_repo_branch
1688breezy.tests.blackbox.test_ancestry.TestAncestry.test_ancestry_with_truncated_checkout
1689breezy.tests.blackbox.test_ancestry.TestAncestry.test_ancestry_with_truncated_lightweight_checkout
1690breezy.tests.blackbox.test_annotate.TestAnnotate.test_annotate_cmd
1691breezy.tests.blackbox.test_annotate.TestAnnotate.test_annotate_cmd_full
1692breezy.tests.blackbox.test_annotate.TestAnnotate.test_annotate_cmd_long
1693breezy.tests.blackbox.test_annotate.TestAnnotate.test_annotate_cmd_revision
1694breezy.tests.blackbox.test_annotate.TestAnnotate.test_annotate_cmd_revision3
1695breezy.tests.blackbox.test_annotate.TestAnnotate.test_annotate_cmd_show_ids
1696breezy.tests.blackbox.test_annotate.TestAnnotate.test_annotate_cmd_two_revisions
1697breezy.tests.blackbox.test_annotate.TestAnnotate.test_annotate_cmd_unknown_revision
1698breezy.tests.blackbox.test_annotate.TestAnnotate.test_help_annotate
1699breezy.tests.blackbox.test_annotate.TestAnnotate.test_no_mail
1700breezy.tests.blackbox.test_annotate.TestSimpleAnnotate.test_annotate_cmd_revspec_branch
1701breezy.tests.blackbox.test_annotate.TestSimpleAnnotate.test_annotated_edited_merged_file_ids
1702breezy.tests.blackbox.test_annotate.TestSimpleAnnotate.test_annotated_edited_merged_file_revnos
1703breezy.tests.blackbox.test_annotate.TestSimpleAnnotate.test_annotate_directory
1704breezy.tests.blackbox.test_annotate.TestSimpleAnnotate.test_annotate_edited_file
1705breezy.tests.blackbox.test_annotate.TestSimpleAnnotate.test_annotate_edited_file_no_default
1706breezy.tests.blackbox.test_annotate.TestSimpleAnnotate.test_annotate_edited_file_show_ids
1707breezy.tests.blackbox.test_annotate.TestSimpleAnnotate.test_annotate_empty_file
1708breezy.tests.blackbox.test_annotate.TestSimpleAnnotate.test_annotate_empty_file_show_ids
1709breezy.tests.blackbox.test_annotate.TestSimpleAnnotate.test_annotate_nonexistant_file
1710breezy.tests.blackbox.test_annotate.TestSimpleAnnotate.test_annotate_removed_file
1711breezy.tests.blackbox.test_annotate.TestSimpleAnnotate.test_annotate_without_workingtree
1712breezy.tests.blackbox.test_annotate.TestSmartServerAnnotate.test_simple_annotate
1713breezy.tests.blackbox.test_bisect.BisectTestCase.testLog
1714breezy.tests.blackbox.test_bisect.BisectTestCase.testMove
1715breezy.tests.blackbox.test_bisect.BisectTestCase.testReset
1716breezy.tests.blackbox.test_bisect.BisectTestCase.testRunScript
1717breezy.tests.blackbox.test_bisect.BisectTestCase.testWorkflow
1718breezy.tests.blackbox.test_bisect.BisectTestCase.testWorkflowSubtree
1719breezy.tests.blackbox.test_bound_branches.TestBind.test_bind_before_bound
1720breezy.tests.blackbox.test_bound_branches.TestBind.test_bind_when_bound
1721breezy.tests.blackbox.test_bound_branches.TestBoundBranches.test_bind_branch6
1722breezy.tests.blackbox.test_bound_branches.TestBoundBranches.test_bind_child_ahead
1723breezy.tests.blackbox.test_bound_branches.TestBoundBranches.test_bind_directory
1724breezy.tests.blackbox.test_bound_branches.TestBoundBranches.test_bind_diverged
1725breezy.tests.blackbox.test_bound_branches.TestBoundBranches.test_bind_fail_if_missing
1726breezy.tests.blackbox.test_bound_branches.TestBoundBranches.test_bind_parent_ahead
1727breezy.tests.blackbox.test_bound_branches.TestBoundBranches.test_bound_commit
1728breezy.tests.blackbox.test_bound_branches.TestBoundBranches.test_bound_fail
1729breezy.tests.blackbox.test_bound_branches.TestBoundBranches.test_commit_after_merge
1730breezy.tests.blackbox.test_bound_branches.TestBoundBranches.test_commit_remote_bound
1731breezy.tests.blackbox.test_bound_branches.TestBoundBranches.test_double_binding
1732breezy.tests.blackbox.test_bound_branches.TestBoundBranches.test_pull_local_updates_local
1733breezy.tests.blackbox.test_bound_branches.TestBoundBranches.test_pull_overwrite
1734breezy.tests.blackbox.test_bound_branches.TestBoundBranches.test_pull_updates_both
1735breezy.tests.blackbox.test_bound_branches.TestBoundBranches.test_rebind_branch5
1736breezy.tests.blackbox.test_bound_branches.TestBoundBranches.test_rebind_branch6
1737breezy.tests.blackbox.test_bound_branches.TestBoundBranches.test_simple_binding
1738breezy.tests.blackbox.test_bound_branches.TestBoundBranches.test_unbinding
1739breezy.tests.blackbox.test_branches.TestBranches.test_default_current_dir
1740breezy.tests.blackbox.test_branches.TestBranches.test_indicates_branch
1741breezy.tests.blackbox.test_branches.TestBranches.test_indicates_non_branch
1742breezy.tests.blackbox.test_branches.TestBranches.test_no_branch
1743breezy.tests.blackbox.test_branches.TestBranches.test_no_colocated_support
1744breezy.tests.blackbox.test_branches.TestBranches.test_recursive
1745breezy.tests.blackbox.test_branches.TestBranches.test_recursive_current
1746breezy.tests.blackbox.test_branches.TestBranches.test_shared_repos
1747breezy.tests.blackbox.test_branches.TestBranches.test_standalone_branch
1748breezy.tests.blackbox.test_branch.TestBranchParentLocation.test_branch_switch_parent_heavyweight
1749breezy.tests.blackbox.test_branch.TestBranchParentLocation.test_branch_switch_parent_lightweight
1750breezy.tests.blackbox.test_branch.TestBranchStacked.test_branch_stacked
1751breezy.tests.blackbox.test_branch.TestBranchStacked.test_branch_stacked_branch_not_stacked
1752breezy.tests.blackbox.test_branch.TestBranchStacked.test_branch_stacked_branch_stacked
1753breezy.tests.blackbox.test_branch.TestBranchStacked.test_branch_stacked_from_non_stacked_format
1754breezy.tests.blackbox.test_branch.TestBranchStacked.test_branch_stacked_from_rich_root_non_stackable
1755breezy.tests.blackbox.test_branch.TestBranchStacked.test_branch_stacked_from_smart_server
1756breezy.tests.blackbox.test_branch.TestBranch.test_branch
1757breezy.tests.blackbox.test_branch.TestBranch.test_branch_bind
1758breezy.tests.blackbox.test_branch.TestBranch.test_branch_broken_pack
1759breezy.tests.blackbox.test_branch.TestBranch.test_branch_fetches_all_tags
1760breezy.tests.blackbox.test_branch.TestBranch.test_branch_files_from
1761breezy.tests.blackbox.test_branch.TestBranch.test_branch_files_from_hardlink
1762breezy.tests.blackbox.test_branch.TestBranch.test_branch_hardlink
1763breezy.tests.blackbox.test_branch.TestBranch.test_branch_into_empty_dir
1764breezy.tests.blackbox.test_branch.TestBranch.test_branch_into_existing_dir
1765breezy.tests.blackbox.test_branch.TestBranch.test_branch_no_to_location
1766breezy.tests.blackbox.test_branch.TestBranch.test_branch_no_tree
1767breezy.tests.blackbox.test_branch.TestBranch.test_branch_only_copies_history
1768breezy.tests.blackbox.test_branch.TestBranch.test_branch_standalone
1769breezy.tests.blackbox.test_branch.TestBranch.test_branch_switch_checkout
1770breezy.tests.blackbox.test_branch.TestBranch.test_branch_switch_lightweight_checkout
1771breezy.tests.blackbox.test_branch.TestBranch.test_branch_switch_no_branch
1772breezy.tests.blackbox.test_branch.TestBranch.test_branch_switch_no_checkout
1773breezy.tests.blackbox.test_branch.TestBranch.test_branch_switch_no_wt
1774breezy.tests.blackbox.test_branch.TestBranch.test_branch_with_post_branch_init_hook
1775breezy.tests.blackbox.test_branch.TestBranch.test_checkout_with_post_branch_init_hook
1776breezy.tests.blackbox.test_branch.TestBranch.test_from_colocated
1777breezy.tests.blackbox.test_branch.TestBranch.test_into_colocated
1778breezy.tests.blackbox.test_branch.TestBranch.test_lightweight_checkout_with_post_branch_init_hook
1779breezy.tests.blackbox.test_branch.TestRemoteBranch.test_branch_local_remote
1780breezy.tests.blackbox.test_branch.TestRemoteBranch.test_branch_remote_remote
1781breezy.tests.blackbox.test_branch.TestSmartServerBranching.test_branch_from_branch_with_ghosts
1782breezy.tests.blackbox.test_branch.TestSmartServerBranching.test_branch_from_branch_with_tags
1783breezy.tests.blackbox.test_branch.TestSmartServerBranching.test_branch_from_trivial_branch_streaming_acceptance
1784breezy.tests.blackbox.test_branch.TestSmartServerBranching.test_branch_from_trivial_stacked_branch_streaming_acceptance
1785breezy.tests.blackbox.test_break_lock.TestBreakLock.test_break_lock_everything_locked
1786breezy.tests.blackbox.test_break_lock.TestBreakLock.test_break_lock_help
1787breezy.tests.blackbox.test_break_lock.TestBreakLock.test_break_lock_no_interaction
1788breezy.tests.blackbox.test_break_lock.TestConfigBreakLock.test_break_lock
1789breezy.tests.blackbox.test_break_lock.TestConfigBreakLock.test_create_pending_lock
1790breezy.tests.blackbox.test_break_lock.TestSmartServerBreakLock.test_simple_branch_break_lock
1791breezy.tests.blackbox.test_bundle_info.TestBundleInfo.test_bundle_info
1792breezy.tests.blackbox.test_cat_revision.TestCatRevision.test_cat_no_such_revid
1793breezy.tests.blackbox.test_cat_revision.TestCatRevision.test_cat_revision
1794breezy.tests.blackbox.test_cat_revision.TestCatRevision.test_cat_revision_directory
1795breezy.tests.blackbox.test_cat_revision.TestCatRevision.test_cat_tree_less_branch
1796breezy.tests.blackbox.test_cat_revision.TestCatRevision.test_cat_unicode_revision
1797breezy.tests.blackbox.test_cat.TestCat.test_cat
1798breezy.tests.blackbox.test_cat.TestCat.test_cat_branch_revspec
1799breezy.tests.blackbox.test_cat.TestCat.test_cat_different_id
1800breezy.tests.blackbox.test_cat.TestCat.test_cat_directory
1801breezy.tests.blackbox.test_cat.TestCat.test_cat_filters
1802breezy.tests.blackbox.test_cat.TestCat.test_cat_filters_applied
1803breezy.tests.blackbox.test_cat.TestCat.test_cat_nonexistent_branch
1804breezy.tests.blackbox.test_cat.TestCat.test_cat_no_working_tree
1805breezy.tests.blackbox.test_cat.TestCat.test_cat_remote_directory
1806breezy.tests.blackbox.test_cat.TestCat.test_remote_cat
1807breezy.tests.blackbox.test_cat.TestSmartServerCat.test_simple_branch_cat
1808breezy.tests.blackbox.test_check.ChrootedCheckTests.test_check_missing_branch
1809breezy.tests.blackbox.test_check.ChrootedCheckTests.test_check_missing_everything
1810breezy.tests.blackbox.test_check.ChrootedCheckTests.test_check_missing_repository
1811breezy.tests.blackbox.test_checkout.TestCheckout.test_checkout_dash_r
1812breezy.tests.blackbox.test_checkout.TestCheckout.test_checkout_existing_dir_heavy
1813breezy.tests.blackbox.test_checkout.TestCheckout.test_checkout_existing_dir_lightweight
1814breezy.tests.blackbox.test_checkout.TestCheckout.test_checkout_files_from
1815breezy.tests.blackbox.test_checkout.TestCheckout.test_checkout_hardlink
1816breezy.tests.blackbox.test_checkout.TestCheckout.test_checkout_hardlink_files_from
1817breezy.tests.blackbox.test_checkout.TestCheckout.test_checkout_in_branch_with_r
1818breezy.tests.blackbox.test_checkout.TestCheckout.test_checkout_into_empty_dir
1819breezy.tests.blackbox.test_checkout.TestCheckout.test_checkout_light_dash_r
1820breezy.tests.blackbox.test_checkout.TestCheckout.test_checkout_light_makes_checkout
1821breezy.tests.blackbox.test_checkout.TestCheckout.test_checkout_makes_bound_branch
1822breezy.tests.blackbox.test_checkout.TestCheckout.test_checkout_reconstitutes_working_trees
1823breezy.tests.blackbox.test_checkout.TestCheckout.test_colo_checkout
1824breezy.tests.blackbox.test_checkout.TestSmartServerCheckout.test_heavyweight_checkout
1825breezy.tests.blackbox.test_checkout.TestSmartServerCheckout.test_lightweight_checkout
1826breezy.tests.blackbox.test_check.TestCheck.test_check_branch
1827breezy.tests.blackbox.test_check.TestCheck.test_check_initial_tree
1828breezy.tests.blackbox.test_check.TestCheck.test_check_missing_branch_in_shared_repo
1829breezy.tests.blackbox.test_check.TestCheck.test_check_missing_partial
1830breezy.tests.blackbox.test_check.TestCheck.test_check_missing_tree
1831breezy.tests.blackbox.test_check.TestCheck.test_check_no_tree
1832breezy.tests.blackbox.test_check.TestCheck.test_check_one_commit_tree
1833breezy.tests.blackbox.test_check.TestCheck.test_check_repository
1834breezy.tests.blackbox.test_check.TestCheck.test_check_tree
1835breezy.tests.blackbox.test_check.TestCheck.test_partial_check
1836breezy.tests.blackbox.test_clean_tree.TestBzrTools.test_clean_tree
1837breezy.tests.blackbox.test_clean_tree.TestBzrTools.test_clean_tree_directory
1838breezy.tests.blackbox.test_clean_tree.TestBzrTools.test_clean_tree_interactive
1839breezy.tests.blackbox.test_clean_tree.TestBzrTools.test_clean_tree_nested_bzrdir
1840breezy.tests.blackbox.test_command_encoding.TestCommandEncoding.test_exact
1841breezy.tests.blackbox.test_command_encoding.TestCommandEncoding.test_replace_ascii
1842breezy.tests.blackbox.test_command_encoding.TestCommandEncoding.test_replace_utf8
1843breezy.tests.blackbox.test_command_encoding.TestCommandEncoding.test_strict_ascii
1844breezy.tests.blackbox.test_command_encoding.TestCommandEncoding.test_strict_utf8
1845breezy.tests.blackbox.test_commit.TestCommit.test_05_empty_commit
1846breezy.tests.blackbox.test_commit.TestCommit.test_10_verbose_commit
1847breezy.tests.blackbox.test_commit.TestCommit.test_author_no_email
1848breezy.tests.blackbox.test_commit.TestCommit.test_author_sets_property
1849breezy.tests.blackbox.test_commit.TestCommit.test_commit_a_text_merge_in_a_checkout
1850breezy.tests.blackbox.test_commit.TestCommit.test_commit_exclude_excludes_modified_files
1851breezy.tests.blackbox.test_commit.TestCommit.test_commit_exclude_twice_uses_both_rules
1852breezy.tests.blackbox.test_commit.TestCommit.test_commit_hook_template_accepted
1853breezy.tests.blackbox.test_commit.TestCommit.test_commit_hook_template_rejected
1854breezy.tests.blackbox.test_commit.TestCommit.test_commit_lossy_foreign
1855breezy.tests.blackbox.test_commit.TestCommit.test_commit_lossy_native
1856breezy.tests.blackbox.test_commit.TestCommit.test_commit_merge_reports_all_modified_files
1857breezy.tests.blackbox.test_commit.TestCommit.test_commit_readonly_checkout
1858breezy.tests.blackbox.test_commit.TestCommit.test_commit_recursive_checkout
1859breezy.tests.blackbox.test_commit.TestCommit.test_commit_respects_spec_for_removals
1860breezy.tests.blackbox.test_commit.TestCommit.test_commit_sanitizes_CR_in_message
1861breezy.tests.blackbox.test_commit.TestCommit.test_commit_success
1862breezy.tests.blackbox.test_commit.TestCommit.test_commit_time
1863breezy.tests.blackbox.test_commit.TestCommit.test_commit_time_bad_time
1864breezy.tests.blackbox.test_commit.TestCommit.test_commit_time_missing_tz
1865breezy.tests.blackbox.test_commit.TestCommit.test_commit_without_username
1866breezy.tests.blackbox.test_commit.TestCommit.test_commit_with_path
1867breezy.tests.blackbox.test_commit.TestCommit.test_edit_empty_message
1868breezy.tests.blackbox.test_commit.TestCommit.test_empty_commit_message
1869breezy.tests.blackbox.test_commit.TestCommit.test_fixes_bug_output
1870breezy.tests.blackbox.test_commit.TestCommit.test_fixes_bug_sets_property
1871breezy.tests.blackbox.test_commit.TestCommit.test_fixes_bug_unicode
1872breezy.tests.blackbox.test_commit.TestCommit.test_fixes_bug_with_alternate_trackers
1873breezy.tests.blackbox.test_commit.TestCommit.test_fixes_bug_with_default_tracker
1874breezy.tests.blackbox.test_commit.TestCommit.test_fixes_invalid_argument
1875breezy.tests.blackbox.test_commit.TestCommit.test_fixes_invalid_bug_number
1876breezy.tests.blackbox.test_commit.TestCommit.test_fixes_multiple_bugs_sets_properties
1877breezy.tests.blackbox.test_commit.TestCommit.test_fixes_unknown_bug_prefix
1878breezy.tests.blackbox.test_commit.TestCommit.test_local_commit_unbound
1879breezy.tests.blackbox.test_commit.TestCommit.test_multiple_authors
1880breezy.tests.blackbox.test_commit.TestCommit.test_mv_dirs_non_ascii
1881breezy.tests.blackbox.test_commit.TestCommit.test_no_author
1882breezy.tests.blackbox.test_commit.TestCommit.test_no_bugs_no_properties
1883breezy.tests.blackbox.test_commit.TestCommit.test_non_ascii_file_unversioned_iso_8859_5
1884breezy.tests.blackbox.test_commit.TestCommit.test_non_ascii_file_unversioned_utf8
1885breezy.tests.blackbox.test_commit.TestCommit.test_other_branch_commit
1886breezy.tests.blackbox.test_commit.TestCommit.test_out_of_date_tree_commit
1887breezy.tests.blackbox.test_commit.TestCommit.test_partial_commit_with_renames_in_tree
1888breezy.tests.blackbox.test_commit.TestCommit.test_set_commit_message
1889breezy.tests.blackbox.test_commit.TestCommit.test_strict_commit
1890breezy.tests.blackbox.test_commit.TestCommit.test_strict_commit_no_changes
1891breezy.tests.blackbox.test_commit.TestCommit.test_strict_commit_unknown
1892breezy.tests.blackbox.test_commit.TestCommit.test_unicode_commit_message_is_filename
1893breezy.tests.blackbox.test_commit.TestCommit.test_verbose_commit_includes_master_location
1894breezy.tests.blackbox.test_commit.TestCommit.test_verbose_commit_modified
1895breezy.tests.blackbox.test_commit.TestCommit.test_verbose_commit_moved
1896breezy.tests.blackbox.test_commit.TestCommit.test_verbose_commit_renamed
1897breezy.tests.blackbox.test_commit.TestCommit.test_verbose_commit_with_unchanged
1898breezy.tests.blackbox.test_commit.TestCommit.test_verbose_commit_with_unknown
1899breezy.tests.blackbox.test_commit.TestCommit.test_warn_about_forgotten_commit_message
1900breezy.tests.blackbox.test_config.TestConfigActive.test_active_in_branch
1901breezy.tests.blackbox.test_config.TestConfigActive.test_active_in_breezy
1902breezy.tests.blackbox.test_config.TestConfigActive.test_active_in_locations
1903breezy.tests.blackbox.test_config.TestConfigDirectory.test_parent_alias
1904breezy.tests.blackbox.test_config.TestConfigDisplay.test_breezy_config
1905breezy.tests.blackbox.test_config.TestConfigDisplay.test_cmd_line
1906breezy.tests.blackbox.test_config.TestConfigDisplay.test_list_value_all
1907breezy.tests.blackbox.test_config.TestConfigDisplay.test_list_value_one
1908breezy.tests.blackbox.test_config.TestConfigDisplay.test_locations_config_for_branch
1909breezy.tests.blackbox.test_config.TestConfigDisplay.test_locations_config_outside_branch
1910breezy.tests.blackbox.test_config.TestConfigDisplay.test_multiline_all_values
1911breezy.tests.blackbox.test_config.TestConfigDisplay.test_multiline_value_only
1912breezy.tests.blackbox.test_config.TestConfigDisplay.test_registry_value_all
1913breezy.tests.blackbox.test_config.TestConfigDisplay.test_registry_value_one
1914breezy.tests.blackbox.test_config.TestConfigDisplayWithPolicy.test_location_with_policy
1915breezy.tests.blackbox.test_config.TestConfigRemoveOption.test_branch_config_default
1916breezy.tests.blackbox.test_config.TestConfigRemoveOption.test_branch_config_forcing_branch
1917breezy.tests.blackbox.test_config.TestConfigRemoveOption.test_breezy_config_inside_branch
1918breezy.tests.blackbox.test_config.TestConfigRemoveOption.test_breezy_config_outside_branch
1919breezy.tests.blackbox.test_config.TestConfigRemoveOption.test_locations_config_inside_branch
1920breezy.tests.blackbox.test_config.TestConfigRemoveOption.test_unknown_config
1921breezy.tests.blackbox.test_config.TestConfigSetOption.test_branch_config_default
1922breezy.tests.blackbox.test_config.TestConfigSetOption.test_branch_config_forcing_branch
1923breezy.tests.blackbox.test_config.TestConfigSetOption.test_breezy_config_inside_branch
1924breezy.tests.blackbox.test_config.TestConfigSetOption.test_breezy_config_outside_branch
1925breezy.tests.blackbox.test_config.TestConfigSetOption.test_locations_config_inside_branch
1926breezy.tests.blackbox.test_config.TestConfigSetOption.test_unknown_config
1927breezy.tests.blackbox.test_config.TestSmartServerConfig.test_simple_branch_config
1928breezy.tests.blackbox.test_config.TestWithoutConfig.test_all_remove_exclusive
1929breezy.tests.blackbox.test_config.TestWithoutConfig.test_all_set_exclusive
1930breezy.tests.blackbox.test_config.TestWithoutConfig.test_config_all
1931breezy.tests.blackbox.test_config.TestWithoutConfig.test_remove_no_option
1932breezy.tests.blackbox.test_config.TestWithoutConfig.test_remove_unknown_option
1933breezy.tests.blackbox.test_config.TestWithoutConfig.test_unexpected_regexp
1934breezy.tests.blackbox.test_config.TestWithoutConfig.test_unknown_option
1935breezy.tests.blackbox.test_config.TestWithoutConfig.test_wrong_regexp
1936breezy.tests.blackbox.test_conflicts.TestConflicts.test_conflicts
1937breezy.tests.blackbox.test_conflicts.TestConflicts.test_conflicts_directory
1938breezy.tests.blackbox.test_conflicts.TestConflicts.test_conflicts_text
1939breezy.tests.blackbox.test_conflicts.TestUnicodePathsOnAsciiTerminal.test_messages
1940breezy.tests.blackbox.test_conflicts.TestUnicodePathsOnAsciiTerminal.test_text_conflict_paths
1941breezy.tests.blackbox.test_conflicts.TestUnicodePaths.test_messages
1942breezy.tests.blackbox.test_conflicts.TestUnicodePaths.test_text_conflict_paths
1943breezy.tests.blackbox.test_cp.TestCopy.test_cp_dir
1944breezy.tests.blackbox.test_cp.TestCopy.test_cp_file
1945breezy.tests.blackbox.test_cp.TestCopy.test_cp_file_into
1946breezy.tests.blackbox.test_cp.TestCopy.test_cp_invalid
1947breezy.tests.blackbox.test_cp.TestCopy.test_cp_nonexisting
1948breezy.tests.blackbox.test_cp.TestCopy.test_cp_unqualified
1949breezy.tests.blackbox.test_cp.TestCopy.test_cp_unversioned
1950breezy.tests.blackbox.test_debug.TestDebugBytes.test_bytes_reports_activity
1951breezy.tests.blackbox.test_debug.TestDebugOption.test_dash_derror
1952breezy.tests.blackbox.test_debug.TestDebugOption.test_dash_dlock
1953breezy.tests.blackbox.test_deleted.TestDeleted.test_deleted_directory
1954breezy.tests.blackbox.test_diff.TestCheckoutDiff.test_custom_format
1955breezy.tests.blackbox.test_diff.TestCheckoutDiff.test_diff
1956breezy.tests.blackbox.test_diff.TestCheckoutDiff.test_diff_across_rename
1957breezy.tests.blackbox.test_diff.TestCheckoutDiff.test_diff_branches
1958breezy.tests.blackbox.test_diff.TestCheckoutDiff.test_diff_branches_no_working_trees
1959breezy.tests.blackbox.test_diff.TestCheckoutDiff.test_diff_illegal_prefix_value
1960breezy.tests.blackbox.test_diff.TestCheckoutDiff.test_diff_illegal_revision_specifiers
1961breezy.tests.blackbox.test_diff.TestCheckoutDiff.test_diff_nonexistent
1962breezy.tests.blackbox.test_diff.TestCheckoutDiff.test_diff_nonexistent_dotted_revision
1963breezy.tests.blackbox.test_diff.TestCheckoutDiff.test_diff_nonexistent_dotted_revision_change
1964breezy.tests.blackbox.test_diff.TestCheckoutDiff.test_diff_nonexistent_revision
1965breezy.tests.blackbox.test_diff.TestCheckoutDiff.test_diff_p0
1966breezy.tests.blackbox.test_diff.TestCheckoutDiff.test_diff_p1
1967breezy.tests.blackbox.test_diff.TestCheckoutDiff.test_diff_prefix
1968breezy.tests.blackbox.test_diff.TestCheckoutDiff.test_diff_revno_branches
1969breezy.tests.blackbox.test_diff.TestCheckoutDiff.test_diff_to_branch_no_working_tree
1970breezy.tests.blackbox.test_diff.TestCheckoutDiff.test_diff_to_working_tree
1971breezy.tests.blackbox.test_diff.TestCheckoutDiff.test_diff_to_working_tree_in_subdir
1972breezy.tests.blackbox.test_diff.TestCheckoutDiff.test_diff_unversioned
1973breezy.tests.blackbox.test_diff.TestCheckoutDiff.test_diff_using_and_format
1974breezy.tests.blackbox.test_diff.TestDiffLabels.test_diff_label_added
1975breezy.tests.blackbox.test_diff.TestDiffLabels.test_diff_label_modified
1976breezy.tests.blackbox.test_diff.TestDiffLabels.test_diff_label_removed
1977breezy.tests.blackbox.test_diff.TestDiffLabels.test_diff_label_renamed
1978breezy.tests.blackbox.test_diff.TestDiffOutput.test_diff_output
1979breezy.tests.blackbox.test_diff.TestDiff.test_custom_format
1980breezy.tests.blackbox.test_diff.TestDiff.test_diff
1981breezy.tests.blackbox.test_diff.TestDiff.test_diff_across_rename
1982breezy.tests.blackbox.test_diff.TestDiff.test_diff_branches
1983breezy.tests.blackbox.test_diff.TestDiff.test_diff_branches_no_working_trees
1984breezy.tests.blackbox.test_diff.TestDiff.test_diff_illegal_prefix_value
1985breezy.tests.blackbox.test_diff.TestDiff.test_diff_illegal_revision_specifiers
1986breezy.tests.blackbox.test_diff.TestDiff.test_diff_nonexistent
1987breezy.tests.blackbox.test_diff.TestDiff.test_diff_nonexistent_dotted_revision
1988breezy.tests.blackbox.test_diff.TestDiff.test_diff_nonexistent_dotted_revision_change
1989breezy.tests.blackbox.test_diff.TestDiff.test_diff_nonexistent_revision
1990breezy.tests.blackbox.test_diff.TestDiff.test_diff_p0
1991breezy.tests.blackbox.test_diff.TestDiff.test_diff_p1
1992breezy.tests.blackbox.test_diff.TestDiff.test_diff_prefix
1993breezy.tests.blackbox.test_diff.TestDiff.test_diff_revno_branches
1994breezy.tests.blackbox.test_diff.TestDiff.test_diff_to_branch_no_working_tree
1995breezy.tests.blackbox.test_diff.TestDiff.test_diff_to_working_tree
1996breezy.tests.blackbox.test_diff.TestDiff.test_diff_to_working_tree_in_subdir
1997breezy.tests.blackbox.test_diff.TestDiff.test_diff_unversioned
1998breezy.tests.blackbox.test_diff.TestDiff.test_diff_using_and_format
1999breezy.tests.blackbox.test_diff.TestExternalDiff.test_external_diff
2000breezy.tests.blackbox.test_diff.TestExternalDiff.test_external_diff_options_and_using
2001breezy.tests.blackbox.test_dump_btree.TestDumpBtree.test_dump_btree_http_smoke
2002breezy.tests.blackbox.test_dump_btree.TestDumpBtree.test_dump_btree_no_refs_smoke
2003breezy.tests.blackbox.test_dump_btree.TestDumpBtree.test_dump_btree_raw_smoke
2004breezy.tests.blackbox.test_dump_btree.TestDumpBtree.test_dump_btree_smoke
2005breezy.tests.blackbox.test_dump_btree.TestDumpBtree.test_dump_empty_btree_http_smoke
2006breezy.tests.blackbox.test_dump_btree.TestDumpBtree.test_dump_empty_btree_raw_smoke
2007breezy.tests.blackbox.test_dump_btree.TestDumpBtree.test_dump_empty_btree_smoke
2008breezy.tests.blackbox.test_exceptions.TestDeprecationWarning.test_repository_deprecation_warning
2009breezy.tests.blackbox.test_exceptions.TestDeprecationWarning.test_repository_deprecation_warning_suppressed_branch
2010breezy.tests.blackbox.test_exceptions.TestDeprecationWarning.test_repository_deprecation_warning_suppressed_global
2011breezy.tests.blackbox.test_exceptions.TestDeprecationWarning.test_repository_deprecation_warning_suppressed_locations
2012breezy.tests.blackbox.test_exceptions.TestExceptionReporting.test_exception_exitcode
2013breezy.tests.blackbox.test_exceptions.TestExceptionReporting.test_undecodable_argv
2014breezy.tests.blackbox.test_exceptions.TestExceptionReporting.test_utf8_default_fs_enc
2015breezy.tests.blackbox.test_exceptions.TestOptParseBugHandling.test_nonascii_optparse
2016breezy.tests.blackbox.test_export_pot.TestExportPot.test_export_pot
2017breezy.tests.blackbox.test_export_pot.TestExportPot.test_export_pot_plugin
2018breezy.tests.blackbox.test_export_pot.TestExportPot.test_export_pot_plugin_unknown
2019breezy.tests.blackbox.test_export.TestExport.test_basic_directory_export
2020breezy.tests.blackbox.test_export.TestExport.test_basic_tarfile_export
2021breezy.tests.blackbox.test_export.TestExport.test_basic_zipfile_export
2022breezy.tests.blackbox.test_export.TestExport.test_dir_export
2023breezy.tests.blackbox.test_export.TestExport.test_dir_export_partial_tree_per_file_timestamps
2024breezy.tests.blackbox.test_export.TestExport.test_dir_export_per_file_timestamps
2025breezy.tests.blackbox.test_export.TestExport.test_export_directory
2026breezy.tests.blackbox.test_export.TestExport.test_export_from_outside_branch
2027breezy.tests.blackbox.test_export.TestExport.test_export_partial_tree
2028breezy.tests.blackbox.test_export.TestExport.test_export_uncommitted
2029breezy.tests.blackbox.test_export.TestExport.test_export_uncommitted_no_tree
2030breezy.tests.blackbox.test_export.TestExport.test_tar_export
2031breezy.tests.blackbox.test_export.TestExport.test_tar_export_ignores_bzr
2032breezy.tests.blackbox.test_export.TestExport.test_tar_export_unicode_basedir
2033breezy.tests.blackbox.test_export.TestExport.test_tar_export_unicode_filename
2034breezy.tests.blackbox.test_export.TestExport.test_tbz2_export
2035breezy.tests.blackbox.test_export.TestExport.test_tgz_export
2036breezy.tests.blackbox.test_export.TestExport.test_zip_export_directories
2037breezy.tests.blackbox.test_export.TestExport.test_zip_export_file
2038breezy.tests.blackbox.test_export.TestExport.test_zip_export_ignores_bzr
2039breezy.tests.blackbox.test_export.TestExport.test_zip_export_per_file_timestamps
2040breezy.tests.blackbox.test_export.TestExport.test_zip_export_stdout
2041breezy.tests.blackbox.test_export.TestExport.test_zip_export_unicode
2042breezy.tests.blackbox.test_export.TestSmartServerExport.test_simple_export
2043breezy.tests.blackbox.test_fetch_ghosts.TestFetchGhosts.test_fetch_ghosts
2044breezy.tests.blackbox.test_fetch_ghosts.TestFetchGhosts.test_fetch_ghosts_more
2045breezy.tests.blackbox.test_fetch_ghosts.TestFetchGhosts.test_fetch_ghosts_with_saved
2046breezy.tests.blackbox.test_filesystem_cicp.TestAdd.test_add_implied
2047breezy.tests.blackbox.test_filesystem_cicp.TestAdd.test_add_not_found
2048breezy.tests.blackbox.test_filesystem_cicp.TestAdd.test_add_simple
2049breezy.tests.blackbox.test_filesystem_cicp.TestAdd.test_add_subdir
2050breezy.tests.blackbox.test_filesystem_cicp.TestAdd.test_re_add
2051breezy.tests.blackbox.test_filesystem_cicp.TestAdd.test_re_add_dir
2052breezy.tests.blackbox.test_filesystem_cicp.TestMisc.test_ci
2053breezy.tests.blackbox.test_filesystem_cicp.TestMisc.test_rm
2054breezy.tests.blackbox.test_filesystem_cicp.TestMisc.test_status
2055breezy.tests.blackbox.test_filesystem_cicp.TestMove.test_mv_multiple
2056breezy.tests.blackbox.test_filesystem_cicp.TestMove.test_mv_newcase
2057breezy.tests.blackbox.test_filesystem_cicp.TestMove.test_mv_newcase_after
2058breezy.tests.blackbox.test_filesystem_cicp.TestMove.test_mv_newname
2059breezy.tests.blackbox.test_filesystem_cicp.TestMove.test_mv_newname_after
2060breezy.tests.blackbox.test_filesystem_cicp.TestMove.test_mv_newname_exists
2061breezy.tests.blackbox.test_filesystem_cicp.TestMove.test_mv_newname_exists_after
2062breezy.tests.blackbox.test_filesystem_cicp.TestMove.test_mv_newname_root
2063breezy.tests.blackbox.test_filesystem_cicp.TestMove.test_mv_newname_root_after
2064breezy.tests.blackbox.test_filtered_view_ops.TestViewFileOperations.test_view_on_add
2065breezy.tests.blackbox.test_filtered_view_ops.TestViewFileOperations.test_view_on_add_selected
2066breezy.tests.blackbox.test_filtered_view_ops.TestViewFileOperations.test_view_on_commit
2067breezy.tests.blackbox.test_filtered_view_ops.TestViewFileOperations.test_view_on_commit_selected
2068breezy.tests.blackbox.test_filtered_view_ops.TestViewFileOperations.test_view_on_diff
2069breezy.tests.blackbox.test_filtered_view_ops.TestViewFileOperations.test_view_on_diff_selected
2070breezy.tests.blackbox.test_filtered_view_ops.TestViewFileOperations.test_view_on_ls
2071breezy.tests.blackbox.test_filtered_view_ops.TestViewFileOperations.test_view_on_remove_selected
2072breezy.tests.blackbox.test_filtered_view_ops.TestViewFileOperations.test_view_on_revert
2073breezy.tests.blackbox.test_filtered_view_ops.TestViewFileOperations.test_view_on_revert_selected
2074breezy.tests.blackbox.test_filtered_view_ops.TestViewFileOperations.test_view_on_status
2075breezy.tests.blackbox.test_filtered_view_ops.TestViewFileOperations.test_view_on_status_selected
2076breezy.tests.blackbox.test_filtered_view_ops.TestViewTreeOperations.test_view_on_merge
2077breezy.tests.blackbox.test_filtered_view_ops.TestViewTreeOperations.test_view_on_pull
2078breezy.tests.blackbox.test_filtered_view_ops.TestViewTreeOperations.test_view_on_update
2079breezy.tests.blackbox.test_find_merge_base.TestFindMergeBase.test_find_merge_base
2080breezy.tests.blackbox.test_find_merge_base.TestFindMergeBase.test_find_null_merge_base
2081breezy.tests.blackbox.test_help.TestHelp.test_help_basic
2082breezy.tests.blackbox.test_help.TestHelp.test_help_checkouts
2083breezy.tests.blackbox.test_help.TestHelp.test_help_commands
2084breezy.tests.blackbox.test_help.TestHelp.test_help_detail
2085breezy.tests.blackbox.test_help.TestHelp.test_help_help
2086breezy.tests.blackbox.test_help.TestHelp.test_help_repositories
2087breezy.tests.blackbox.test_help.TestHelp.test_help_revisionspec
2088breezy.tests.blackbox.test_help.TestHelp.test_help_status_flags
2089breezy.tests.blackbox.test_help.TestHelp.test_help_topics
2090breezy.tests.blackbox.test_help.TestHelp.test_help_urlspec
2091breezy.tests.blackbox.test_help.TestHelp.test_help_usage
2092breezy.tests.blackbox.test_help.TestHelp.test_help_width_zero
2093breezy.tests.blackbox.test_help.TestHelp.test_help_with_aliases
2094breezy.tests.blackbox.test_help.TestHelp.test_help_working_trees
2095breezy.tests.blackbox.test_help.TestHelp.test_hidden
2096breezy.tests.blackbox.test_help.TestTranslatedHelp.test_help_command_ascii
2097breezy.tests.blackbox.test_help.TestTranslatedHelp.test_help_command_utf8
2098breezy.tests.blackbox.test_help.TestTranslatedHelp.test_help_switch_ascii
2099breezy.tests.blackbox.test_help.TestTranslatedHelp.test_help_switch_utf8
2100breezy.tests.blackbox.test_hooks.TestHooks.test_hooks_lazy_with_named_hook
2101breezy.tests.blackbox.test_hooks.TestHooks.test_hooks_lazy_with_unnamed_hook
2102breezy.tests.blackbox.test_hooks.TestHooks.test_hooks_no_branch
2103breezy.tests.blackbox.test_hooks.TestHooks.test_hooks_with_named_hook
2104breezy.tests.blackbox.test_hooks.TestHooks.test_hooks_with_no_hooks
2105breezy.tests.blackbox.test_hooks.TestHooks.test_hooks_with_unnamed_hook
2106breezy.tests.blackbox.test_ignored.TestIgnored.test_ignored_added_file
2107breezy.tests.blackbox.test_ignored.TestIgnored.test_ignored_directory
2108breezy.tests.blackbox.test_ignore.TestCommands.test_ignore_absolutes
2109breezy.tests.blackbox.test_ignore.TestCommands.test_ignore_default_rules
2110breezy.tests.blackbox.test_ignore.TestCommands.test_ignored_invalid_pattern
2111breezy.tests.blackbox.test_ignore.TestCommands.test_ignore_directories
2112breezy.tests.blackbox.test_ignore.TestCommands.test_ignore_directory
2113breezy.tests.blackbox.test_ignore.TestCommands.test_ignored_versioned_file_matching_new_pattern
2114breezy.tests.blackbox.test_ignore.TestCommands.test_ignore_multiple_arguments
2115breezy.tests.blackbox.test_ignore.TestCommands.test_ignore_no_arguments
2116breezy.tests.blackbox.test_ignore.TestCommands.test_ignore_patterns
2117breezy.tests.blackbox.test_ignore.TestCommands.test_ignore_versioned_file
2118breezy.tests.blackbox.test_import.TestImport.test_import_upstream
2119breezy.tests.blackbox.test_import.TestImport.test_import_upstream_lzma
2120breezy.tests.blackbox.test_info.TestInfo.test_info_dangling_branch_reference
2121breezy.tests.blackbox.test_info.TestInfo.test_info_empty_controldir
2122breezy.tests.blackbox.test_info.TestInfo.test_info_empty_controldir_verbose
2123breezy.tests.blackbox.test_info.TestInfo.test_info_non_existing
2124breezy.tests.blackbox.test_info.TestInfo.test_info_repository_hook
2125breezy.tests.blackbox.test_info.TestInfo.test_info_revinfo_optional
2126breezy.tests.blackbox.test_info.TestInfo.test_info_shared_repository
2127breezy.tests.blackbox.test_info.TestInfo.test_info_shared_repository_with_tree_in_root
2128breezy.tests.blackbox.test_info.TestInfo.test_info_shared_repository_with_trees
2129breezy.tests.blackbox.test_info.TestInfo.test_info_shows_colocated_branches
2130breezy.tests.blackbox.test_info.TestInfo.test_info_stacked
2131breezy.tests.blackbox.test_info.TestInfo.test_info_standalone
2132breezy.tests.blackbox.test_info.TestInfo.test_info_standalone_no_tree
2133breezy.tests.blackbox.test_info.TestInfo.test_info_unshared_repository_with_colocated_branches
2134breezy.tests.blackbox.test_info.TestSmartServerInfo.test_simple_branch_info
2135breezy.tests.blackbox.test_info.TestSmartServerInfo.test_verbose_branch_info
2136breezy.tests.blackbox.test_init.TestInit.test_init_at_repository_root
2137breezy.tests.blackbox.test_init.TestInit.test_init_branch
2138breezy.tests.blackbox.test_init.TestInit.test_init_branch_quiet
2139breezy.tests.blackbox.test_init.TestInit.test_init_colocated
2140breezy.tests.blackbox.test_init.TestInit.test_init_create_prefix
2141breezy.tests.blackbox.test_init.TestInit.test_init_default_format_option
2142breezy.tests.blackbox.test_init.TestInit.test_init_existing_branch
2143breezy.tests.blackbox.test_init.TestInit.test_init_existing_without_workingtree
2144breezy.tests.blackbox.test_init.TestInit.test_init_format_2a
2145breezy.tests.blackbox.test_init.TestInit.test_init_format_bzr
2146breezy.tests.blackbox.test_init.TestInit.test_init_no_tree
2147breezy.tests.blackbox.test_init.TestInit.test_init_unicode
2148breezy.tests.blackbox.test_init.TestInit.test_init_with_format
2149breezy.tests.blackbox.test_init.TestInit.test_no_defaults
2150breezy.tests.blackbox.test_init.TestSFTPInit.test_init
2151breezy.tests.blackbox.test_init.TestSFTPInit.test_init_append_revisions_only
2152breezy.tests.blackbox.test_init.TestSFTPInit.test_init_existing_branch
2153breezy.tests.blackbox.test_init.TestSFTPInit.test_init_existing_branch_with_workingtree
2154breezy.tests.blackbox.test_init.TestSFTPInit.test_init_without_username
2155breezy.tests.blackbox.test_inventory.TestInventory.test_in_subdir
2156breezy.tests.blackbox.test_inventory.TestInventory.test_inventory
2157breezy.tests.blackbox.test_inventory.TestInventory.test_inventory_kind
2158breezy.tests.blackbox.test_inventory.TestInventory.test_inventory_mixed
2159breezy.tests.blackbox.test_inventory.TestInventory.test_inventory_revision
2160breezy.tests.blackbox.test_inventory.TestInventory.test_inventory_show_ids
2161breezy.tests.blackbox.test_inventory.TestInventory.test_inventory_specific_files
2162breezy.tests.blackbox.test_inventory.TestInventory.test_missing_file
2163breezy.tests.blackbox.test_join.TestJoin.test_join
2164breezy.tests.blackbox.test_join.TestJoin.test_join_dot
2165breezy.tests.blackbox.test_join.TestJoin.test_join_error
2166breezy.tests.blackbox.test_join.TestJoin.test_join_reference
2167breezy.tests.blackbox.test_join.TestJoin.test_references_check_repository_support
2168breezy.tests.blackbox.test_link_tree.TestLinkTreeCommand.test_link_tree
2169breezy.tests.blackbox.test_locale.TestLocale.test_log_BOGUS
2170breezy.tests.blackbox.test_locale.TestLocale.test_log_C
2171breezy.tests.blackbox.test_locale.TestMultibyteCodecs.test_plugins_mbcs
2172breezy.tests.blackbox.test_logformats.TestLogFormats.test_log_default_format
2173breezy.tests.blackbox.test_logformats.TestLogFormats.test_log_format_arg
2174breezy.tests.blackbox.test_logformats.TestLogFormats.test_logformat_gnu_changelog
2175breezy.tests.blackbox.test_logformats.TestLogFormats.test_logformat_line_wide
2176breezy.tests.blackbox.test_logformats.TestLogFormats.test_missing_default_format
2177breezy.tests.blackbox.test_logformats.TestLogFormats.test_missing_format_arg
2178breezy.tests.blackbox.test_log.MainlineGhostTests.test_log_norange
2179breezy.tests.blackbox.test_log.MainlineGhostTests.test_log_range
2180breezy.tests.blackbox.test_log.MainlineGhostTests.test_log_range_open_begin
2181breezy.tests.blackbox.test_log.MainlineGhostTests.test_log_range_open_end
2182breezy.tests.blackbox.test_log.Test_GenerateAllRevisions.test_no_start_rev_id_with_end_rev_id_being_a_merge
2183breezy.tests.blackbox.test_log.Test_GenerateAllRevisions.test_not_an_ancestor
2184breezy.tests.blackbox.test_log.Test_GenerateAllRevisions.test_wrong_order
2185breezy.tests.blackbox.test_log.TestLogDiff.test_log_diff_file1
2186breezy.tests.blackbox.test_log.TestLogDiff.test_log_diff_file2
2187breezy.tests.blackbox.test_log.TestLogDiff.test_log_diff_with_merges
2188breezy.tests.blackbox.test_log.TestLogEncodings.test_log_handles_bad_encoding
2189breezy.tests.blackbox.test_log.TestLogEncodings.test_log_handles_encoding
2190breezy.tests.blackbox.test_log.TestLogEncodings.test_stdout_encoding
2191breezy.tests.blackbox.test_log.TestLogErrors.test_log_bad_message_re
2192breezy.tests.blackbox.test_log.TestLogErrors.test_log_change_incompatible_with_revision
2193breezy.tests.blackbox.test_log.TestLogErrors.test_log_change_nonexistent_dotted_revno
2194breezy.tests.blackbox.test_log.TestLogErrors.test_log_change_nonexistent_revno
2195breezy.tests.blackbox.test_log.TestLogErrors.test_log_change_single_revno_only
2196breezy.tests.blackbox.test_log.TestLogErrors.test_log_exclude_ancestry_no_range
2197breezy.tests.blackbox.test_log.TestLogErrors.test_log_exclude_ancestry_single_revision
2198breezy.tests.blackbox.test_log.TestLogErrors.test_log_nonexistent_dotted_revno
2199breezy.tests.blackbox.test_log.TestLogErrors.test_log_nonexistent_file
2200breezy.tests.blackbox.test_log.TestLogErrors.test_log_nonexistent_revno
2201breezy.tests.blackbox.test_log.TestLogErrors.test_log_reversed_dotted_revspecs
2202breezy.tests.blackbox.test_log.TestLogErrors.test_log_reversed_revspecs
2203breezy.tests.blackbox.test_log.TestLogErrors.test_log_unsupported_timezone
2204breezy.tests.blackbox.test_log.TestLogErrors.test_log_zero_begin_revspec
2205breezy.tests.blackbox.test_log.TestLogErrors.test_log_zero_end_revspec
2206breezy.tests.blackbox.test_log.TestLogErrors.test_log_zero_revspec
2207breezy.tests.blackbox.test_log.TestLogExcludeCommonAncestry.test_exclude_common_ancestry_simple_revnos
2208breezy.tests.blackbox.test_log.TestLogFile.test_log_file1
2209breezy.tests.blackbox.test_log.TestLogFile.test_log_file2
2210breezy.tests.blackbox.test_log.TestLogFile.test_log_file3
2211breezy.tests.blackbox.test_log.TestLogFile.test_log_file_historical_end
2212breezy.tests.blackbox.test_log.TestLogFile.test_log_file_historical_missing
2213breezy.tests.blackbox.test_log.TestLogFile.test_log_file_historical_start
2214breezy.tests.blackbox.test_log.TestLogFile.test_log_file_renamed
2215breezy.tests.blackbox.test_log.TestLogFile.test_log_local_branch_file
2216breezy.tests.blackbox.test_log.TestLogMatch.test_author
2217breezy.tests.blackbox.test_log.TestLogMatch.test_committer
2218breezy.tests.blackbox.test_log.TestLogMatch.test_message
2219breezy.tests.blackbox.test_log.TestLogMergedLinearAncestry.test_fallback_when_end_rev_is_not_on_mainline
2220breezy.tests.blackbox.test_log.TestLogMergedLinearAncestry.test_n0
2221breezy.tests.blackbox.test_log.TestLogMergedLinearAncestry.test_n0_forward
2222breezy.tests.blackbox.test_log.TestLogMergedLinearAncestry.test_n1
2223breezy.tests.blackbox.test_log.TestLogMergedLinearAncestry.test_n1_forward
2224breezy.tests.blackbox.test_log.TestLogMerges.test_force_merge_revisions_N
2225breezy.tests.blackbox.test_log.TestLogMerges.test_force_merge_revisions_off
2226breezy.tests.blackbox.test_log.TestLogMerges.test_force_merge_revisions_on
2227breezy.tests.blackbox.test_log.TestLogMerges.test_include_merged
2228breezy.tests.blackbox.test_log.TestLogMerges.test_merges_are_indented_by_level
2229breezy.tests.blackbox.test_log.TestLogMerges.test_merges_partial_range
2230breezy.tests.blackbox.test_log.TestLogMerges.test_merges_partial_range_ignore_before_lower_bound
2231breezy.tests.blackbox.test_log.TestLogMerges.test_merges_single_merge_rev
2232breezy.tests.blackbox.test_log.TestLogMerges.test_omit_merges_without_sidelines
2233breezy.tests.blackbox.test_log.TestLogMerges.test_omit_merges_with_sidelines
2234breezy.tests.blackbox.test_log.TestLogMultiple.test_log_directory
2235breezy.tests.blackbox.test_log.TestLogMultiple.test_log_files
2236breezy.tests.blackbox.test_log.TestLogMultiple.test_log_files_and_directories
2237breezy.tests.blackbox.test_log.TestLogMultiple.test_log_files_and_dirs_in_nested_directory
2238breezy.tests.blackbox.test_log.TestLogMultiple.test_log_in_nested_directory
2239breezy.tests.blackbox.test_log.TestLogMultiple.test_log_nested_directory
2240breezy.tests.blackbox.test_log.TestLogRevSpecs.test_branch_revspec
2241breezy.tests.blackbox.test_log.TestLogRevSpecs.test_log_change_revno
2242breezy.tests.blackbox.test_log.TestLogRevSpecs.test_log_dotted_revspecs
2243breezy.tests.blackbox.test_log.TestLogRevSpecs.test_log_limit
2244breezy.tests.blackbox.test_log.TestLogRevSpecs.test_log_limit_short
2245breezy.tests.blackbox.test_log.TestLogRevSpecs.test_log_negative_begin_revspec
2246breezy.tests.blackbox.test_log.TestLogRevSpecs.test_log_negative_begin_revspec_full_log
2247breezy.tests.blackbox.test_log.TestLogRevSpecs.test_log_negative_both_revspec_full_log
2248breezy.tests.blackbox.test_log.TestLogRevSpecs.test_log_negative_both_revspec_partial
2249breezy.tests.blackbox.test_log.TestLogRevSpecs.test_log_no_revspec
2250breezy.tests.blackbox.test_log.TestLogRevSpecs.test_log_null_begin_revspec
2251breezy.tests.blackbox.test_log.TestLogRevSpecs.test_log_null_both_revspecs
2252breezy.tests.blackbox.test_log.TestLogRevSpecs.test_log_null_end_revspec
2253breezy.tests.blackbox.test_log.TestLogRevSpecs.test_log_positive_revspecs
2254breezy.tests.blackbox.test_log.TestLogRevSpecsWithPaths.test_log_revno_n_path
2255breezy.tests.blackbox.test_log.TestLogRevSpecsWithPaths.test_log_revno_n_path_correct_order
2256breezy.tests.blackbox.test_log.TestLogRevSpecsWithPaths.test_log_revno_n_path_wrong_namespace
2257breezy.tests.blackbox.test_log.TestLogSignatures.test_log_without_signatures
2258breezy.tests.blackbox.test_log.TestLogSignatures.test_log_with_signatures
2259breezy.tests.blackbox.test_log.TestLogTags.test_log_with_tags
2260breezy.tests.blackbox.test_log.TestLogTags.test_merged_log_with_tags
2261breezy.tests.blackbox.test_log.TestLogUnicodeDiff.test_log_show_diff_non_ascii
2262breezy.tests.blackbox.test_log.TestLogVerbose.test_log_long_verbose
2263breezy.tests.blackbox.test_log.TestLogVerbose.test_log_long_verbose_verbose
2264breezy.tests.blackbox.test_log.TestLogVerbose.test_log_short_verbose
2265breezy.tests.blackbox.test_log.TestLogVerbose.test_log_short_verbose_verbose
2266breezy.tests.blackbox.test_log.TestLogVerbose.test_log_s_verbose
2267breezy.tests.blackbox.test_log.TestSmartServerLog.test_per_file
2268breezy.tests.blackbox.test_log.TestSmartServerLog.test_standard_log
2269breezy.tests.blackbox.test_log.TestSmartServerLog.test_verbose_log
2270breezy.tests.blackbox.test_lookup_revision.TestLookupRevision.test_lookup_revison_directory
2271breezy.tests.blackbox.test_lsprof.TestLSProf.test_file
2272breezy.tests.blackbox.test_lsprof.TestLSProf.test_stdout
2273breezy.tests.blackbox.test_ls.TestLS.test_kinds
2274breezy.tests.blackbox.test_ls.TestLS.test_ls_added
2275breezy.tests.blackbox.test_ls.TestLS.test_ls_basic
2276breezy.tests.blackbox.test_ls.TestLS.test_ls_branch
2277breezy.tests.blackbox.test_ls.TestLS.test_ls_directory
2278breezy.tests.blackbox.test_ls.TestLS.test_ls_ignored
2279breezy.tests.blackbox.test_ls.TestLS.test_ls_no_recursive
2280breezy.tests.blackbox.test_ls.TestLS.test_ls_null_verbose
2281breezy.tests.blackbox.test_ls.TestLS.test_ls_path
2282breezy.tests.blackbox.test_ls.TestLS.test_ls_path_nonrecursive
2283breezy.tests.blackbox.test_ls.TestLS.test_ls_revision
2284breezy.tests.blackbox.test_ls.TestLS.test_show_ids
2285breezy.tests.blackbox.test_ls.TestSmartServerLs.test_simple_ls
2286breezy.tests.blackbox.test_merge_directive.TestMergeDirective.test_encoding_exact
2287breezy.tests.blackbox.test_merge_directive.TestMergeDirective.test_mail_default
2288breezy.tests.blackbox.test_merge_directive.TestMergeDirective.test_mail_uses_config
2289breezy.tests.blackbox.test_merge_directive.TestMergeDirective.test_merge_bundle
2290breezy.tests.blackbox.test_merge_directive.TestMergeDirective.test_merge_directive
2291breezy.tests.blackbox.test_merge_directive.TestMergeDirective.test_merge_directive_directory
2292breezy.tests.blackbox.test_merge_directive.TestMergeDirective.test_merge_raw
2293breezy.tests.blackbox.test_merge_directive.TestMergeDirective.test_merge_user_r
2294breezy.tests.blackbox.test_merge_directive.TestMergeDirective.test_message
2295breezy.tests.blackbox.test_merge_directive.TestMergeDirective.test_no_commits
2296breezy.tests.blackbox.test_merge_directive.TestMergeDirective.test_no_common_ancestor
2297breezy.tests.blackbox.test_merge_directive.TestMergeDirective.test_patch_types
2298breezy.tests.blackbox.test_merge_directive.TestMergeDirective.test_public_branch
2299breezy.tests.blackbox.test_merge_directive.TestMergeDirective.test_pull_bundle
2300breezy.tests.blackbox.test_merge_directive.TestMergeDirective.test_pull_raw
2301breezy.tests.blackbox.test_merge_directive.TestMergeDirective.test_pull_user_r
2302breezy.tests.blackbox.test_merge_directive.TestMergeDirective.test_signing
2303breezy.tests.blackbox.test_merge_directive.TestMergeDirective.test_submit_branch
2304breezy.tests.blackbox.test_merge.TestMergeForce.test_merge_force
2305breezy.tests.blackbox.test_merge.TestMergeForce.test_merge_with_pending_merges
2306breezy.tests.blackbox.test_merge.TestMergeForce.test_merge_with_uncommitted_changes
2307breezy.tests.blackbox.test_merge.TestMergeRevisionRange.test_merge_reversed_revision_range(file-only)
2308breezy.tests.blackbox.test_merge.TestMergeRevisionRange.test_merge_reversed_revision_range(whole-tree)
2309breezy.tests.blackbox.test_merge.TestMergeScript.test_merge_empty_branch
2310breezy.tests.blackbox.test_merge.TestMerge.test_cherrypicking_merge
2311breezy.tests.blackbox.test_merge.TestMerge.test_conflict_leaves_base_this_other_files
2312breezy.tests.blackbox.test_merge.TestMerge.test_directive_cherrypick
2313breezy.tests.blackbox.test_merge.TestMerge.test_directive_verify_warning
2314breezy.tests.blackbox.test_merge.TestMerge.test_lca_merge_criss_cross
2315breezy.tests.blackbox.test_merge.TestMerge.test_merge
2316breezy.tests.blackbox.test_merge.TestMerge.test_merge_arbitrary
2317breezy.tests.blackbox.test_merge.TestMerge.test_merge_bundle
2318breezy.tests.blackbox.test_merge.TestMerge.test_merge_criss_cross
2319breezy.tests.blackbox.test_merge.TestMerge.test_merge_defaults_to_reprocess
2320breezy.tests.blackbox.test_merge.TestMerge.test_merge_explicit_reprocess_show_base
2321breezy.tests.blackbox.test_merge.TestMerge.test_merge_fetches_tags
2322breezy.tests.blackbox.test_merge.TestMerge.test_merge_from_submit
2323breezy.tests.blackbox.test_merge.TestMerge.test_merge_interactive_unlocks_branch
2324breezy.tests.blackbox.test_merge.TestMerge.test_merge_kind_change
2325breezy.tests.blackbox.test_merge.TestMerge.test_merge_missing_second_revision_spec
2326breezy.tests.blackbox.test_merge.TestMerge.test_merge_nonexistent_file
2327breezy.tests.blackbox.test_merge.TestMerge.test_merge_override_reprocess
2328breezy.tests.blackbox.test_merge.TestMerge.test_merge_override_show_base
2329breezy.tests.blackbox.test_merge.TestMerge.test_merge_preview
2330breezy.tests.blackbox.test_merge.TestMerge.test_merge_pull
2331breezy.tests.blackbox.test_merge.TestMerge.test_merge_pull_preview
2332breezy.tests.blackbox.test_merge.TestMerge.test_merge_remember
2333breezy.tests.blackbox.test_merge.TestMerge.test_merge_reprocess
2334breezy.tests.blackbox.test_merge.TestMerge.test_merge_uncommitted
2335breezy.tests.blackbox.test_merge.TestMerge.test_merge_uncommitted_file
2336breezy.tests.blackbox.test_merge.TestMerge.test_merge_with_missing_file
2337breezy.tests.blackbox.test_merge.TestMerge.test_no_remember_dont_set_submit
2338breezy.tests.blackbox.test_merge.TestMerge.test_remember_sets_submit
2339breezy.tests.blackbox.test_merge.TestMerge.test_weave_cherrypick
2340breezy.tests.blackbox.test_merge.TestMerge.test_weave_conflict_leaves_base_this_other_files
2341breezy.tests.blackbox.test_missing.TestMissing.test_missing
2342breezy.tests.blackbox.test_missing.TestMissing.test_missing_check_last_location
2343breezy.tests.blackbox.test_missing.TestMissing.test_missing_directory
2344breezy.tests.blackbox.test_missing.TestMissing.test_missing_filtered
2345breezy.tests.blackbox.test_missing.TestMissing.test_missing_quiet
2346breezy.tests.blackbox.test_missing.TestMissing.test_missing_tags
2347breezy.tests.blackbox.test_mkdir.TestMkdir.test_mkdir
2348breezy.tests.blackbox.test_mkdir.TestMkdir.test_mkdir_parents
2349breezy.tests.blackbox.test_mkdir.TestMkdir.test_mkdir_parents_existing_unversioned_dir
2350breezy.tests.blackbox.test_mkdir.TestMkdir.test_mkdir_parents_existing_versioned_dir
2351breezy.tests.blackbox.test_mkdir.TestMkdir.test_mkdir_parents_with_unversioned_parent
2352breezy.tests.blackbox.test_modified.TestModified.test_modified
2353breezy.tests.blackbox.test_modified.TestModified.test_modified_directory
2354breezy.tests.blackbox.test_modified.TestModified.test_modified_with_spaces
2355breezy.tests.blackbox.test_mv.TestMove.test_mv_already_moved_directory
2356breezy.tests.blackbox.test_mv.TestMove.test_mv_already_moved_file
2357breezy.tests.blackbox.test_mv.TestMove.test_mv_already_moved_file_forcing_after
2358breezy.tests.blackbox.test_mv.TestMove.test_mv_already_moved_file_into_subdir
2359breezy.tests.blackbox.test_mv.TestMove.test_mv_already_moved_file_into_unversioned_subdir
2360breezy.tests.blackbox.test_mv.TestMove.test_mv_already_moved_files_forcing_after
2361breezy.tests.blackbox.test_mv.TestMove.test_mv_already_moved_files_into_subdir
2362breezy.tests.blackbox.test_mv.TestMove.test_mv_already_moved_files_into_unversioned_subdir
2363breezy.tests.blackbox.test_mv.TestMove.test_mv_already_moved_files_using_after
2364breezy.tests.blackbox.test_mv.TestMove.test_mv_already_moved_file_to_versioned_target
2365breezy.tests.blackbox.test_mv.TestMove.test_mv_already_moved_file_using_after
2366breezy.tests.blackbox.test_mv.TestMove.test_mv_auto
2367breezy.tests.blackbox.test_mv.TestMove.test_mv_auto_after
2368breezy.tests.blackbox.test_mv.TestMove.test_mv_auto_dry_run
2369breezy.tests.blackbox.test_mv.TestMove.test_mv_auto_one_path
2370breezy.tests.blackbox.test_mv.TestMove.test_mv_auto_two_paths
2371breezy.tests.blackbox.test_mv.TestMove.test_mv_change_case_dir
2372breezy.tests.blackbox.test_mv.TestMove.test_mv_change_case_dir_w_files
2373breezy.tests.blackbox.test_mv.TestMove.test_mv_change_case_file
2374breezy.tests.blackbox.test_mv.TestMove.test_mv_dirs
2375breezy.tests.blackbox.test_mv.TestMove.test_mv_file_to_wrong_case_dir
2376breezy.tests.blackbox.test_mv.TestMove.test_mv_invalid
2377breezy.tests.blackbox.test_mv.TestMove.test_mv_modes
2378breezy.tests.blackbox.test_mv.TestMove.test_mv_no_auto_dry_run
2379breezy.tests.blackbox.test_mv.TestMove.test_mv_nonexisting
2380breezy.tests.blackbox.test_mv.TestMove.test_mv_no_root
2381breezy.tests.blackbox.test_mv.TestMove.test_mv_quiet
2382breezy.tests.blackbox.test_mv.TestMove.test_mv_readonly_lightweight_checkout
2383breezy.tests.blackbox.test_mv.TestMove.test_mv_relative
2384breezy.tests.blackbox.test_mv.TestMove.test_mv_removed_non_ascii
2385breezy.tests.blackbox.test_mv.TestMove.test_mv_smoke_aliases
2386breezy.tests.blackbox.test_mv.TestMove.test_mv_through_symlinks
2387breezy.tests.blackbox.test_mv.TestMove.test_mv_unqualified
2388breezy.tests.blackbox.test_mv.TestMove.test_mv_unversioned
2389breezy.tests.blackbox.test_mv.TestMove.test_mv_unversioned_non_ascii
2390breezy.tests.blackbox.test_nick.TestNick.test_autonick_urlencoded
2391breezy.tests.blackbox.test_nick.TestNick.test_boundless_nick
2392breezy.tests.blackbox.test_nick.TestNick.test_bound_nick
2393breezy.tests.blackbox.test_nick.TestNick.test_bound_nick_explicit
2394breezy.tests.blackbox.test_nick.TestNick.test_nick_command
2395breezy.tests.blackbox.test_nick.TestNick.test_nick_directory
2396breezy.tests.blackbox.test_non_ascii.TestNonAscii.test_added(cp1251)
2397breezy.tests.blackbox.test_non_ascii.TestNonAscii.test_added(iso-8859-1)
2398breezy.tests.blackbox.test_non_ascii.TestNonAscii.test_added(iso-8859-2)
2399breezy.tests.blackbox.test_non_ascii.TestNonAscii.test_added(utf-8,1)
2400breezy.tests.blackbox.test_non_ascii.TestNonAscii.test_added(utf-8,2)
2401breezy.tests.blackbox.test_non_ascii.TestNonAscii.test_ancestry(cp1251)
2402breezy.tests.blackbox.test_non_ascii.TestNonAscii.test_ancestry(iso-8859-1)
2403breezy.tests.blackbox.test_non_ascii.TestNonAscii.test_ancestry(iso-8859-2)
2404breezy.tests.blackbox.test_non_ascii.TestNonAscii.test_ancestry(utf-8,1)
2405breezy.tests.blackbox.test_non_ascii.TestNonAscii.test_ancestry(utf-8,2)
2406breezy.tests.blackbox.test_non_ascii.TestNonAscii.test_branch(cp1251)
2407breezy.tests.blackbox.test_non_ascii.TestNonAscii.test_branch(iso-8859-1)
2408breezy.tests.blackbox.test_non_ascii.TestNonAscii.test_branch(iso-8859-2)
2409breezy.tests.blackbox.test_non_ascii.TestNonAscii.test_branch(utf-8,1)
2410breezy.tests.blackbox.test_non_ascii.TestNonAscii.test_branch(utf-8,2)
2411breezy.tests.blackbox.test_non_ascii.TestNonAscii.test_cat(cp1251)
2412breezy.tests.blackbox.test_non_ascii.TestNonAscii.test_cat(iso-8859-1)
2413breezy.tests.blackbox.test_non_ascii.TestNonAscii.test_cat(iso-8859-2)
2414breezy.tests.blackbox.test_non_ascii.TestNonAscii.test_cat_revision(cp1251)
2415breezy.tests.blackbox.test_non_ascii.TestNonAscii.test_cat_revision(iso-8859-1)
2416breezy.tests.blackbox.test_non_ascii.TestNonAscii.test_cat_revision(iso-8859-2)
2417breezy.tests.blackbox.test_non_ascii.TestNonAscii.test_cat_revision(utf-8,1)
2418breezy.tests.blackbox.test_non_ascii.TestNonAscii.test_cat_revision(utf-8,2)
2419breezy.tests.blackbox.test_non_ascii.TestNonAscii.test_cat(utf-8,1)
2420breezy.tests.blackbox.test_non_ascii.TestNonAscii.test_cat(utf-8,2)
2421breezy.tests.blackbox.test_non_ascii.TestNonAscii.test_deleted(cp1251)
2422breezy.tests.blackbox.test_non_ascii.TestNonAscii.test_deleted(iso-8859-1)
2423breezy.tests.blackbox.test_non_ascii.TestNonAscii.test_deleted(iso-8859-2)
2424breezy.tests.blackbox.test_non_ascii.TestNonAscii.test_deleted(utf-8,1)
2425breezy.tests.blackbox.test_non_ascii.TestNonAscii.test_deleted(utf-8,2)
2426breezy.tests.blackbox.test_non_ascii.TestNonAscii.test_diff(cp1251)
2427breezy.tests.blackbox.test_non_ascii.TestNonAscii.test_diff(iso-8859-1)
2428breezy.tests.blackbox.test_non_ascii.TestNonAscii.test_diff(iso-8859-2)
2429breezy.tests.blackbox.test_non_ascii.TestNonAscii.test_diff(utf-8,1)
2430breezy.tests.blackbox.test_non_ascii.TestNonAscii.test_diff(utf-8,2)
2431breezy.tests.blackbox.test_non_ascii.TestNonAscii.test_file_id(cp1251)
2432breezy.tests.blackbox.test_non_ascii.TestNonAscii.test_file_id(iso-8859-1)
2433breezy.tests.blackbox.test_non_ascii.TestNonAscii.test_file_id(iso-8859-2)
2434breezy.tests.blackbox.test_non_ascii.TestNonAscii.test_file_id(utf-8,1)
2435breezy.tests.blackbox.test_non_ascii.TestNonAscii.test_file_id(utf-8,2)
2436breezy.tests.blackbox.test_non_ascii.TestNonAscii.test_file_path(cp1251)
2437breezy.tests.blackbox.test_non_ascii.TestNonAscii.test_file_path(iso-8859-1)
2438breezy.tests.blackbox.test_non_ascii.TestNonAscii.test_file_path(iso-8859-2)
2439breezy.tests.blackbox.test_non_ascii.TestNonAscii.test_file_path(utf-8,1)
2440breezy.tests.blackbox.test_non_ascii.TestNonAscii.test_file_path(utf-8,2)
2441breezy.tests.blackbox.test_non_ascii.TestNonAscii.test_ignore(cp1251)
2442breezy.tests.blackbox.test_non_ascii.TestNonAscii.test_ignored(cp1251)
2443breezy.tests.blackbox.test_non_ascii.TestNonAscii.test_ignored(iso-8859-1)
2444breezy.tests.blackbox.test_non_ascii.TestNonAscii.test_ignored(iso-8859-2)
2445breezy.tests.blackbox.test_non_ascii.TestNonAscii.test_ignored(utf-8,1)
2446breezy.tests.blackbox.test_non_ascii.TestNonAscii.test_ignored(utf-8,2)
2447breezy.tests.blackbox.test_non_ascii.TestNonAscii.test_ignore(iso-8859-1)
2448breezy.tests.blackbox.test_non_ascii.TestNonAscii.test_ignore(iso-8859-2)
2449breezy.tests.blackbox.test_non_ascii.TestNonAscii.test_ignore(utf-8,1)
2450breezy.tests.blackbox.test_non_ascii.TestNonAscii.test_ignore(utf-8,2)
2451breezy.tests.blackbox.test_non_ascii.TestNonAscii.test_info(cp1251)
2452breezy.tests.blackbox.test_non_ascii.TestNonAscii.test_info(iso-8859-1)
2453breezy.tests.blackbox.test_non_ascii.TestNonAscii.test_info(iso-8859-2)
2454breezy.tests.blackbox.test_non_ascii.TestNonAscii.test_info(utf-8,1)
2455breezy.tests.blackbox.test_non_ascii.TestNonAscii.test_info(utf-8,2)
2456breezy.tests.blackbox.test_non_ascii.TestNonAscii.test_inventory(cp1251)
2457breezy.tests.blackbox.test_non_ascii.TestNonAscii.test_inventory(iso-8859-1)
2458breezy.tests.blackbox.test_non_ascii.TestNonAscii.test_inventory(iso-8859-2)
2459breezy.tests.blackbox.test_non_ascii.TestNonAscii.test_inventory(utf-8,1)
2460breezy.tests.blackbox.test_non_ascii.TestNonAscii.test_inventory(utf-8,2)
2461breezy.tests.blackbox.test_non_ascii.TestNonAscii.test_log(cp1251)
2462breezy.tests.blackbox.test_non_ascii.TestNonAscii.test_log(iso-8859-1)
2463breezy.tests.blackbox.test_non_ascii.TestNonAscii.test_log(iso-8859-2)
2464breezy.tests.blackbox.test_non_ascii.TestNonAscii.test_log(utf-8,1)
2465breezy.tests.blackbox.test_non_ascii.TestNonAscii.test_log(utf-8,2)
2466breezy.tests.blackbox.test_non_ascii.TestNonAscii.test_ls(cp1251)
2467breezy.tests.blackbox.test_non_ascii.TestNonAscii.test_ls(iso-8859-1)
2468breezy.tests.blackbox.test_non_ascii.TestNonAscii.test_ls(iso-8859-2)
2469breezy.tests.blackbox.test_non_ascii.TestNonAscii.test_ls(utf-8,1)
2470breezy.tests.blackbox.test_non_ascii.TestNonAscii.test_ls(utf-8,2)
2471breezy.tests.blackbox.test_non_ascii.TestNonAscii.test_missing(cp1251)
2472breezy.tests.blackbox.test_non_ascii.TestNonAscii.test_missing(iso-8859-1)
2473breezy.tests.blackbox.test_non_ascii.TestNonAscii.test_missing(iso-8859-2)
2474breezy.tests.blackbox.test_non_ascii.TestNonAscii.test_missing(utf-8,1)
2475breezy.tests.blackbox.test_non_ascii.TestNonAscii.test_missing(utf-8,2)
2476breezy.tests.blackbox.test_non_ascii.TestNonAscii.test_mkdir(cp1251)
2477breezy.tests.blackbox.test_non_ascii.TestNonAscii.test_mkdir(iso-8859-1)
2478breezy.tests.blackbox.test_non_ascii.TestNonAscii.test_mkdir(iso-8859-2)
2479breezy.tests.blackbox.test_non_ascii.TestNonAscii.test_mkdir(utf-8,1)
2480breezy.tests.blackbox.test_non_ascii.TestNonAscii.test_mkdir(utf-8,2)
2481breezy.tests.blackbox.test_non_ascii.TestNonAscii.test_modified(cp1251)
2482breezy.tests.blackbox.test_non_ascii.TestNonAscii.test_modified(iso-8859-1)
2483breezy.tests.blackbox.test_non_ascii.TestNonAscii.test_modified(iso-8859-2)
2484breezy.tests.blackbox.test_non_ascii.TestNonAscii.test_modified(utf-8,1)
2485breezy.tests.blackbox.test_non_ascii.TestNonAscii.test_modified(utf-8,2)
2486breezy.tests.blackbox.test_non_ascii.TestNonAscii.test_mv(cp1251)
2487breezy.tests.blackbox.test_non_ascii.TestNonAscii.test_mv(iso-8859-1)
2488breezy.tests.blackbox.test_non_ascii.TestNonAscii.test_mv(iso-8859-2)
2489breezy.tests.blackbox.test_non_ascii.TestNonAscii.test_mv(utf-8,1)
2490breezy.tests.blackbox.test_non_ascii.TestNonAscii.test_mv(utf-8,2)
2491breezy.tests.blackbox.test_non_ascii.TestNonAscii.test_pull(cp1251)
2492breezy.tests.blackbox.test_non_ascii.TestNonAscii.test_pull(iso-8859-1)
2493breezy.tests.blackbox.test_non_ascii.TestNonAscii.test_pull(iso-8859-2)
2494breezy.tests.blackbox.test_non_ascii.TestNonAscii.test_pull(utf-8,1)
2495breezy.tests.blackbox.test_non_ascii.TestNonAscii.test_pull(utf-8,2)
2496breezy.tests.blackbox.test_non_ascii.TestNonAscii.test_push(cp1251)
2497breezy.tests.blackbox.test_non_ascii.TestNonAscii.test_push(iso-8859-1)
2498breezy.tests.blackbox.test_non_ascii.TestNonAscii.test_push(iso-8859-2)
2499breezy.tests.blackbox.test_non_ascii.TestNonAscii.test_push(utf-8,1)
2500breezy.tests.blackbox.test_non_ascii.TestNonAscii.test_push(utf-8,2)
2501breezy.tests.blackbox.test_non_ascii.TestNonAscii.test_relpath(cp1251)
2502breezy.tests.blackbox.test_non_ascii.TestNonAscii.test_relpath(iso-8859-1)
2503breezy.tests.blackbox.test_non_ascii.TestNonAscii.test_relpath(iso-8859-2)
2504breezy.tests.blackbox.test_non_ascii.TestNonAscii.test_relpath(utf-8,1)
2505breezy.tests.blackbox.test_non_ascii.TestNonAscii.test_relpath(utf-8,2)
2506breezy.tests.blackbox.test_non_ascii.TestNonAscii.test_remove(cp1251)
2507breezy.tests.blackbox.test_non_ascii.TestNonAscii.test_remove(iso-8859-1)
2508breezy.tests.blackbox.test_non_ascii.TestNonAscii.test_remove(iso-8859-2)
2509breezy.tests.blackbox.test_non_ascii.TestNonAscii.test_remove(utf-8,1)
2510breezy.tests.blackbox.test_non_ascii.TestNonAscii.test_remove(utf-8,2)
2511breezy.tests.blackbox.test_non_ascii.TestNonAscii.test_remove_verbose(cp1251)
2512breezy.tests.blackbox.test_non_ascii.TestNonAscii.test_remove_verbose(iso-8859-1)
2513breezy.tests.blackbox.test_non_ascii.TestNonAscii.test_remove_verbose(iso-8859-2)
2514breezy.tests.blackbox.test_non_ascii.TestNonAscii.test_remove_verbose(utf-8,1)
2515breezy.tests.blackbox.test_non_ascii.TestNonAscii.test_remove_verbose(utf-8,2)
2516breezy.tests.blackbox.test_non_ascii.TestNonAscii.test_renames(cp1251)
2517breezy.tests.blackbox.test_non_ascii.TestNonAscii.test_renames(iso-8859-1)
2518breezy.tests.blackbox.test_non_ascii.TestNonAscii.test_renames(iso-8859-2)
2519breezy.tests.blackbox.test_non_ascii.TestNonAscii.test_renames(utf-8,1)
2520breezy.tests.blackbox.test_non_ascii.TestNonAscii.test_renames(utf-8,2)
2521breezy.tests.blackbox.test_non_ascii.TestNonAscii.test_revision_history(cp1251)
2522breezy.tests.blackbox.test_non_ascii.TestNonAscii.test_revision_history(iso-8859-1)
2523breezy.tests.blackbox.test_non_ascii.TestNonAscii.test_revision_history(iso-8859-2)
2524breezy.tests.blackbox.test_non_ascii.TestNonAscii.test_revision_history(utf-8,1)
2525breezy.tests.blackbox.test_non_ascii.TestNonAscii.test_revision_history(utf-8,2)
2526breezy.tests.blackbox.test_non_ascii.TestNonAscii.test_revision_info(cp1251)
2527breezy.tests.blackbox.test_non_ascii.TestNonAscii.test_revision_info(iso-8859-1)
2528breezy.tests.blackbox.test_non_ascii.TestNonAscii.test_revision_info(iso-8859-2)
2529breezy.tests.blackbox.test_non_ascii.TestNonAscii.test_revision_info(utf-8,1)
2530breezy.tests.blackbox.test_non_ascii.TestNonAscii.test_revision_info(utf-8,2)
2531breezy.tests.blackbox.test_non_ascii.TestNonAscii.test_revno(cp1251)
2532breezy.tests.blackbox.test_non_ascii.TestNonAscii.test_revno(iso-8859-1)
2533breezy.tests.blackbox.test_non_ascii.TestNonAscii.test_revno(iso-8859-2)
2534breezy.tests.blackbox.test_non_ascii.TestNonAscii.test_revno(utf-8,1)
2535breezy.tests.blackbox.test_non_ascii.TestNonAscii.test_revno(utf-8,2)
2536breezy.tests.blackbox.test_non_ascii.TestNonAscii.test_root(cp1251)
2537breezy.tests.blackbox.test_non_ascii.TestNonAscii.test_root(iso-8859-1)
2538breezy.tests.blackbox.test_non_ascii.TestNonAscii.test_root(iso-8859-2)
2539breezy.tests.blackbox.test_non_ascii.TestNonAscii.test_root(utf-8,1)
2540breezy.tests.blackbox.test_non_ascii.TestNonAscii.test_root(utf-8,2)
2541breezy.tests.blackbox.test_non_ascii.TestNonAscii.test_status(cp1251)
2542breezy.tests.blackbox.test_non_ascii.TestNonAscii.test_status(iso-8859-1)
2543breezy.tests.blackbox.test_non_ascii.TestNonAscii.test_status(iso-8859-2)
2544breezy.tests.blackbox.test_non_ascii.TestNonAscii.test_status(utf-8,1)
2545breezy.tests.blackbox.test_non_ascii.TestNonAscii.test_status(utf-8,2)
2546breezy.tests.blackbox.test_non_ascii.TestNonAscii.test_touching_revisions(cp1251)
2547breezy.tests.blackbox.test_non_ascii.TestNonAscii.test_touching_revisions(iso-8859-1)
2548breezy.tests.blackbox.test_non_ascii.TestNonAscii.test_touching_revisions(iso-8859-2)
2549breezy.tests.blackbox.test_non_ascii.TestNonAscii.test_touching_revisions(utf-8,1)
2550breezy.tests.blackbox.test_non_ascii.TestNonAscii.test_touching_revisions(utf-8,2)
2551breezy.tests.blackbox.test_non_ascii.TestNonAscii.test_unknowns(cp1251)
2552breezy.tests.blackbox.test_non_ascii.TestNonAscii.test_unknowns(iso-8859-1)
2553breezy.tests.blackbox.test_non_ascii.TestNonAscii.test_unknowns(iso-8859-2)
2554breezy.tests.blackbox.test_non_ascii.TestNonAscii.test_unknowns(utf-8,1)
2555breezy.tests.blackbox.test_non_ascii.TestNonAscii.test_unknowns(utf-8,2)
2556breezy.tests.blackbox.test_outside_wt.TestOutsideWT.test_cwd_log
2557breezy.tests.blackbox.test_outside_wt.TestOutsideWT.test_diff_outside_tree
2558breezy.tests.blackbox.test_outside_wt.TestOutsideWT.test_url_log
2559breezy.tests.blackbox.test_pack.TestPack.test_pack_accepts_branch_url
2560breezy.tests.blackbox.test_pack.TestPack.test_pack_accepts_repo_url
2561breezy.tests.blackbox.test_pack.TestPack.test_pack_clean_obsolete_packs
2562breezy.tests.blackbox.test_pack.TestPack.test_pack_silent
2563breezy.tests.blackbox.test_pack.TestSmartServerPack.test_simple_pack
2564breezy.tests.blackbox.test_ping.TestSmartServerPing.test_simple_ping
2565breezy.tests.blackbox.test_plugins.TestPluginHelp.test_plugin_help_builtins_unaffected
2566breezy.tests.blackbox.test_plugins.TestPluginHelp.test_plugin_help_shows_plugin
2567breezy.tests.blackbox.test_pull.TestPullOutput.test_pull_log_format
2568breezy.tests.blackbox.test_pull.TestPull.test_overwrite_children
2569breezy.tests.blackbox.test_pull.TestPull.test_overwrite_tags
2570breezy.tests.blackbox.test_pull.TestPull.test_overwrite_uptodate
2571breezy.tests.blackbox.test_pull.TestPull.test_pull
2572breezy.tests.blackbox.test_pull.TestPull.test_pull_bundle
2573breezy.tests.blackbox.test_pull.TestPull.test_pull_cross_format_from_network
2574breezy.tests.blackbox.test_pull.TestPull.test_pull_cross_format_warning
2575breezy.tests.blackbox.test_pull.TestPull.test_pull_cross_format_warning_no_IDS
2576breezy.tests.blackbox.test_pull.TestPull.test_pull_cross_to_experimental_format_warning
2577breezy.tests.blackbox.test_pull.TestPull.test_pull_dash_d
2578breezy.tests.blackbox.test_pull.TestPull.test_pull_from_directory_service
2579breezy.tests.blackbox.test_pull.TestPull.test_pull_quiet
2580breezy.tests.blackbox.test_pull.TestPull.test_pull_remember
2581breezy.tests.blackbox.test_pull.TestPull.test_pull_revision
2582breezy.tests.blackbox.test_pull.TestPull.test_pull_show_base
2583breezy.tests.blackbox.test_pull.TestPull.test_pull_smart_bound_branch
2584breezy.tests.blackbox.test_pull.TestPull.test_pull_tag_conflicts
2585breezy.tests.blackbox.test_pull.TestPull.test_pull_tag_notification
2586breezy.tests.blackbox.test_pull.TestPull.test_pull_tag_overwrite
2587breezy.tests.blackbox.test_pull.TestPull.test_pull_tags
2588breezy.tests.blackbox.test_pull.TestPull.test_pull_to_experimental_format_warning
2589breezy.tests.blackbox.test_pull.TestPull.test_pull_verbose_defaults_to_long
2590breezy.tests.blackbox.test_pull.TestPull.test_pull_verbose_no_files
2591breezy.tests.blackbox.test_pull.TestPull.test_pull_verbose_uses_default_log
2592breezy.tests.blackbox.test_pull.TestPull.test_pull_warns_about_show_base_when_no_working_tree
2593breezy.tests.blackbox.test_push.TestPushForeign.test_no_roundtripping
2594breezy.tests.blackbox.test_push.TestPushOutput.test_push_log_format
2595breezy.tests.blackbox.test_push.TestPushOutput.test_push_with_revspec
2596breezy.tests.blackbox.test_push.TestPushRedirect.test_push_gracefully_handles_too_many_redirects
2597breezy.tests.blackbox.test_push.TestPushRedirect.test_push_redirects_on_mkdir
2598breezy.tests.blackbox.test_push.TestPushStrictWithChanges.test_push_bogus_config_var_ignored(out-of-sync-trees)
2599breezy.tests.blackbox.test_push.TestPushStrictWithChanges.test_push_bogus_config_var_ignored(pending-merges)
2600breezy.tests.blackbox.test_push.TestPushStrictWithChanges.test_push_bogus_config_var_ignored(uncommitted)
2601breezy.tests.blackbox.test_push.TestPushStrictWithChanges.test_push_default(out-of-sync-trees)
2602breezy.tests.blackbox.test_push.TestPushStrictWithChanges.test_push_default(pending-merges)
2603breezy.tests.blackbox.test_push.TestPushStrictWithChanges.test_push_default(uncommitted)
2604breezy.tests.blackbox.test_push.TestPushStrictWithChanges.test_push_no_strict_command_line_override_config(out-of-sync-trees)
2605breezy.tests.blackbox.test_push.TestPushStrictWithChanges.test_push_no_strict_command_line_override_config(pending-merges)
2606breezy.tests.blackbox.test_push.TestPushStrictWithChanges.test_push_no_strict_command_line_override_config(uncommitted)
2607breezy.tests.blackbox.test_push.TestPushStrictWithChanges.test_push_no_strict(out-of-sync-trees)
2608breezy.tests.blackbox.test_push.TestPushStrictWithChanges.test_push_no_strict(pending-merges)
2609breezy.tests.blackbox.test_push.TestPushStrictWithChanges.test_push_no_strict(uncommitted)
2610breezy.tests.blackbox.test_push.TestPushStrictWithChanges.test_push_respect_config_var_strict(out-of-sync-trees)
2611breezy.tests.blackbox.test_push.TestPushStrictWithChanges.test_push_respect_config_var_strict(pending-merges)
2612breezy.tests.blackbox.test_push.TestPushStrictWithChanges.test_push_respect_config_var_strict(uncommitted)
2613breezy.tests.blackbox.test_push.TestPushStrictWithChanges.test_push_strict_command_line_override_config(out-of-sync-trees)
2614breezy.tests.blackbox.test_push.TestPushStrictWithChanges.test_push_strict_command_line_override_config(pending-merges)
2615breezy.tests.blackbox.test_push.TestPushStrictWithChanges.test_push_strict_command_line_override_config(uncommitted)
2616breezy.tests.blackbox.test_push.TestPushStrictWithChanges.test_push_strict_with_changes(out-of-sync-trees)
2617breezy.tests.blackbox.test_push.TestPushStrictWithChanges.test_push_strict_with_changes(pending-merges)
2618breezy.tests.blackbox.test_push.TestPushStrictWithChanges.test_push_strict_with_changes(uncommitted)
2619breezy.tests.blackbox.test_push.TestPushStrictWithChanges.test_push_with_revision(out-of-sync-trees)
2620breezy.tests.blackbox.test_push.TestPushStrictWithChanges.test_push_with_revision(pending-merges)
2621breezy.tests.blackbox.test_push.TestPushStrictWithChanges.test_push_with_revision(uncommitted)
2622breezy.tests.blackbox.test_push.TestPushStrictWithoutChanges.test_push_config_var_no_strict
2623breezy.tests.blackbox.test_push.TestPushStrictWithoutChanges.test_push_config_var_strict
2624breezy.tests.blackbox.test_push.TestPushStrictWithoutChanges.test_push_default
2625breezy.tests.blackbox.test_push.TestPushStrictWithoutChanges.test_push_no_strict
2626breezy.tests.blackbox.test_push.TestPushStrictWithoutChanges.test_push_strict
2627breezy.tests.blackbox.test_push.TestPush.test_overwrite_tags
2628breezy.tests.blackbox.test_push.TestPush.test_push_create_prefix
2629breezy.tests.blackbox.test_push.TestPush.test_push_dash_d
2630breezy.tests.blackbox.test_push.TestPush.test_push_does_not_change_format_with_default_if_target_cannot
2631breezy.tests.blackbox.test_push.TestPush.test_push_doesnt_create_broken_branch
2632breezy.tests.blackbox.test_push.TestPush.test_push_error_on_vfs_http
2633breezy.tests.blackbox.test_push.TestPush.test_push_from_subdir
2634breezy.tests.blackbox.test_push.TestPush.test_push_funky_id
2635breezy.tests.blackbox.test_push.TestPush.test_push_new_branch_revision_count
2636breezy.tests.blackbox.test_push.TestPush.test_push_new_branch_stacked_no_parent
2637breezy.tests.blackbox.test_push.TestPush.test_push_new_branch_stacked_on
2638breezy.tests.blackbox.test_push.TestPush.test_push_new_branch_stacked_uses_parent_public
2639breezy.tests.blackbox.test_push.TestPush.test_push_new_branch_stacked_uses_parent_when_no_public_url
2640breezy.tests.blackbox.test_push.TestPush.test_push_notifies_default_stacking
2641breezy.tests.blackbox.test_push.TestPush.test_push_no_tree
2642breezy.tests.blackbox.test_push.TestPush.test_push_only_pushes_history
2643breezy.tests.blackbox.test_push.TestPush.test_push_onto_just_bzrdir
2644breezy.tests.blackbox.test_push.TestPush.test_push_onto_repo
2645breezy.tests.blackbox.test_push.TestPush.test_push_quiet
2646breezy.tests.blackbox.test_push.TestPush.test_push_remember
2647breezy.tests.blackbox.test_push.TestPush.test_push_repository_no_branch_doesnt_fetch_all_revs
2648breezy.tests.blackbox.test_push.TestPush.test_push_smart_incremental_acceptance
2649breezy.tests.blackbox.test_push.TestPush.test_push_smart_non_stacked_streaming_acceptance
2650breezy.tests.blackbox.test_push.TestPush.test_push_smart_stacked_streaming_acceptance
2651breezy.tests.blackbox.test_push.TestPush.test_push_smart_tags_streaming_acceptance
2652breezy.tests.blackbox.test_push.TestPush.test_push_smart_with_default_stacking_relative_path
2653breezy.tests.blackbox.test_push.TestPush.test_push_smart_with_default_stacking_url_path_segment
2654breezy.tests.blackbox.test_push.TestPush.test_push_stacks_with_default_stacking_if_target_is_stackable
2655breezy.tests.blackbox.test_push.TestPush.test_push_suggests_parent_alias
2656breezy.tests.blackbox.test_push.TestPush.test_push_use_existing
2657breezy.tests.blackbox.test_push.TestPush.test_push_use_existing_into_empty_bzrdir
2658breezy.tests.blackbox.test_push.TestPush.test_push_verbose_shows_log
2659breezy.tests.blackbox.test_push.TestPush.test_push_without_tree
2660breezy.tests.blackbox.test_push.TestPush.test_push_with_revisionspec
2661breezy.tests.blackbox.test_reconcile.TestSmartServerReconcile.test_simple_reconcile
2662breezy.tests.blackbox.test_reconcile.TrivialTest.test_does_something_reconcile
2663breezy.tests.blackbox.test_reconcile.TrivialTest.test_trivial_reconcile
2664breezy.tests.blackbox.test_reconfigure.TestReconfigureStacking.test_reconfigure_stacking
2665breezy.tests.blackbox.test_reconfigure.TestReconfigure.test_branch_and_use_shared
2666breezy.tests.blackbox.test_reconfigure.TestReconfigure.test_branch_to_specified_checkout
2667breezy.tests.blackbox.test_reconfigure.TestReconfigure.test_branch_to_tree
2668breezy.tests.blackbox.test_reconfigure.TestReconfigure.test_checkout_to_lightweight_checkout
2669breezy.tests.blackbox.test_reconfigure.TestReconfigure.test_force
2670breezy.tests.blackbox.test_reconfigure.TestReconfigure.test_lightweight_checkout_to_checkout
2671breezy.tests.blackbox.test_reconfigure.TestReconfigure.test_lightweight_checkout_to_tree
2672breezy.tests.blackbox.test_reconfigure.TestReconfigure.test_lightweight_format_checkout_to_tree
2673breezy.tests.blackbox.test_reconfigure.TestReconfigure.test_lightweight_knit_checkout_to_tree
2674breezy.tests.blackbox.test_reconfigure.TestReconfigure.test_lightweight_pack092_checkout_to_tree
2675breezy.tests.blackbox.test_reconfigure.TestReconfigure.test_lightweight_rich_root_pack_checkout_to_tree
2676breezy.tests.blackbox.test_reconfigure.TestReconfigure.test_make_without_trees
2677breezy.tests.blackbox.test_reconfigure.TestReconfigure.test_make_without_trees_already_no_trees
2678breezy.tests.blackbox.test_reconfigure.TestReconfigure.test_make_without_trees_leaves_tree_alone
2679breezy.tests.blackbox.test_reconfigure.TestReconfigure.test_make_with_trees
2680breezy.tests.blackbox.test_reconfigure.TestReconfigure.test_make_with_trees_already_trees
2681breezy.tests.blackbox.test_reconfigure.TestReconfigure.test_make_with_trees_nonshared_repo
2682breezy.tests.blackbox.test_reconfigure.TestReconfigure.test_no_args
2683breezy.tests.blackbox.test_reconfigure.TestReconfigure.test_no_type
2684breezy.tests.blackbox.test_reconfigure.TestReconfigure.test_shared_format_to_standalone
2685breezy.tests.blackbox.test_reconfigure.TestReconfigure.test_shared_knit_to_standalone
2686breezy.tests.blackbox.test_reconfigure.TestReconfigure.test_shared_pack092_to_standalone
2687breezy.tests.blackbox.test_reconfigure.TestReconfigure.test_shared_rich_root_pack_to_standalone
2688breezy.tests.blackbox.test_reconfigure.TestReconfigure.test_standalone_to_use_shared
2689breezy.tests.blackbox.test_reconfigure.TestReconfigure.test_tree_to_branch
2690breezy.tests.blackbox.test_reconfigure.TestReconfigure.test_use_shared_and_branch
2691breezy.tests.blackbox.test_reconfigure.TestReconfigure.test_use_shared_to_standalone
2692breezy.tests.blackbox.test_reference.TestReference.test_missing_file
2693breezy.tests.blackbox.test_reference.TestReference.test_no_args_lists
2694breezy.tests.blackbox.test_reference.TestReference.test_one_arg_displays
2695breezy.tests.blackbox.test_reference.TestReference.test_one_arg_uses_containing_tree
2696breezy.tests.blackbox.test_reference.TestReference.test_two_args_sets
2697breezy.tests.blackbox.test_reference.TestReference.test_uses_basis_tree_location
2698breezy.tests.blackbox.test_reference.TestReference.test_uses_working_tree_location
2699breezy.tests.blackbox.test_remember_option.TestPullRemember.test_first_use_no_option
2700breezy.tests.blackbox.test_remember_option.TestPullRemember.test_first_use_no_remember
2701breezy.tests.blackbox.test_remember_option.TestPullRemember.test_first_use_remember
2702breezy.tests.blackbox.test_remember_option.TestPullRemember.test_next_uses_no_option
2703breezy.tests.blackbox.test_remember_option.TestPullRemember.test_next_uses_no_remember
2704breezy.tests.blackbox.test_remember_option.TestPullRemember.test_next_uses_remember
2705breezy.tests.blackbox.test_remember_option.TestPushRemember.test_first_use_no_option
2706breezy.tests.blackbox.test_remember_option.TestPushRemember.test_first_use_no_remember
2707breezy.tests.blackbox.test_remember_option.TestPushRemember.test_first_use_remember
2708breezy.tests.blackbox.test_remember_option.TestPushRemember.test_next_uses_no_option
2709breezy.tests.blackbox.test_remember_option.TestPushRemember.test_next_uses_no_remember
2710breezy.tests.blackbox.test_remember_option.TestPushRemember.test_next_uses_remember
2711breezy.tests.blackbox.test_remember_option.TestSendRemember.test_first_use_no_option
2712breezy.tests.blackbox.test_remember_option.TestSendRemember.test_first_use_no_remember
2713breezy.tests.blackbox.test_remember_option.TestSendRemember.test_first_use_remember
2714breezy.tests.blackbox.test_remember_option.TestSendRemember.test_next_uses_no_option
2715breezy.tests.blackbox.test_remember_option.TestSendRemember.test_next_uses_no_remember
2716breezy.tests.blackbox.test_remember_option.TestSendRemember.test_next_uses_remember
2717breezy.tests.blackbox.test_remerge.TestRemerge.test_conflicts
2718breezy.tests.blackbox.test_remerge.TestRemerge.test_remerge
2719breezy.tests.blackbox.test_remove.TestRemove.test_remove_changed_files
2720breezy.tests.blackbox.test_remove.TestRemove.test_remove_changed_files_from_child_dir
2721breezy.tests.blackbox.test_remove.TestRemove.test_remove_changed_ignored_files
2722breezy.tests.blackbox.test_remove.TestRemove.test_remove_deleted_files
2723breezy.tests.blackbox.test_remove.TestRemove.test_remove_files
2724breezy.tests.blackbox.test_remove.TestRemove.test_remove_invalid_files
2725breezy.tests.blackbox.test_remove.TestRemove.test_remove_keep_files
2726breezy.tests.blackbox.test_remove.TestRemove.test_remove_keep_non_existing_files
2727breezy.tests.blackbox.test_remove.TestRemove.test_remove_keep_one_file
2728breezy.tests.blackbox.test_remove.TestRemove.test_remove_keep_unversioned_files
2729breezy.tests.blackbox.test_remove.TestRemove.test_remove_new_no_files_specified
2730breezy.tests.blackbox.test_remove.TestRemove.test_remove_no_backup_unversioned_files
2731breezy.tests.blackbox.test_remove.TestRemove.test_remove_no_files_specified
2732breezy.tests.blackbox.test_remove.TestRemove.test_remove_no_files_specified_already_deleted
2733breezy.tests.blackbox.test_remove.TestRemove.test_remove_no_files_specified_missing_dir_and_contents
2734breezy.tests.blackbox.test_remove.TestRemove.test_remove_no_files_specified_missing_file
2735breezy.tests.blackbox.test_remove.TestRemove.test_remove_no_files_specified_missing_link
2736breezy.tests.blackbox.test_remove.TestRemove.test_remove_non_existing_files
2737breezy.tests.blackbox.test_remove.TestRemove.test_remove_one_deleted_file
2738breezy.tests.blackbox.test_remove.TestRemove.test_remove_one_file
2739breezy.tests.blackbox.test_remove.TestRemove.test_remove_unversioned_files
2740breezy.tests.blackbox.test_remove.TestRemove.test_remove_with_new
2741breezy.tests.blackbox.test_remove.TestRemove.test_remove_with_new_in_dir1
2742breezy.tests.blackbox.test_remove.TestRemove.test_remove_with_new_in_dir2
2743breezy.tests.blackbox.test_remove.TestRemove.test_rm_one_file
2744breezy.tests.blackbox.test_remove_tree.TestRemoveTree.test_remove_tree_checkout
2745breezy.tests.blackbox.test_remove_tree.TestRemoveTree.test_remove_tree_checkout_explicit
2746breezy.tests.blackbox.test_remove_tree.TestRemoveTree.test_remove_tree_empty_dir
2747breezy.tests.blackbox.test_remove_tree.TestRemoveTree.test_remove_tree_lightweight_checkout
2748breezy.tests.blackbox.test_remove_tree.TestRemoveTree.test_remove_tree_lightweight_checkout_explicit
2749breezy.tests.blackbox.test_remove_tree.TestRemoveTree.test_remove_tree_multiple_branch_explicit
2750breezy.tests.blackbox.test_remove_tree.TestRemoveTree.test_remove_tree_original_branch
2751breezy.tests.blackbox.test_remove_tree.TestRemoveTree.test_remove_tree_original_branch_explicit
2752breezy.tests.blackbox.test_remove_tree.TestRemoveTree.test_remove_tree_pending_merges
2753breezy.tests.blackbox.test_remove_tree.TestRemoveTree.test_remove_tree_pending_merges_force
2754breezy.tests.blackbox.test_remove_tree.TestRemoveTree.test_remove_tree_remote_path
2755breezy.tests.blackbox.test_remove_tree.TestRemoveTree.test_remove_tree_repeatedly
2756breezy.tests.blackbox.test_remove_tree.TestRemoveTree.test_remove_tree_shelved_changes
2757breezy.tests.blackbox.test_remove_tree.TestRemoveTree.test_remove_tree_shelved_changes_force
2758breezy.tests.blackbox.test_remove_tree.TestRemoveTree.test_remove_tree_sprouted_branch
2759breezy.tests.blackbox.test_remove_tree.TestRemoveTree.test_remove_tree_sprouted_branch_explicit
2760breezy.tests.blackbox.test_remove_tree.TestRemoveTree.test_remove_tree_uncommitted_changes
2761breezy.tests.blackbox.test_remove_tree.TestRemoveTree.test_remove_tree_uncommitted_changes_force
2762breezy.tests.blackbox.test_repair_workingtree.TestRepairWorkingTree.test_repair_corrupted_dirstate
2763breezy.tests.blackbox.test_repair_workingtree.TestRepairWorkingTree.test_repair_destroyed_with_revs_passes
2764breezy.tests.blackbox.test_repair_workingtree.TestRepairWorkingTree.test_repair_forced
2765breezy.tests.blackbox.test_repair_workingtree.TestRepairWorkingTree.test_repair_naive_destroyed_fails
2766breezy.tests.blackbox.test_repair_workingtree.TestRepairWorkingTree.test_repair_refuses_uncorrupted
2767breezy.tests.blackbox.test_re_sign.ReSign.test_resign
2768breezy.tests.blackbox.test_re_sign.ReSign.test_resign_directory
2769breezy.tests.blackbox.test_re_sign.ReSign.test_resign_multiple
2770breezy.tests.blackbox.test_re_sign.ReSign.test_resign_range
2771breezy.tests.blackbox.test_resolve.TestBug788000.test_bug_788000
2772breezy.tests.blackbox.test_resolve.TestResolveAuto.test_auto_resolve
2773breezy.tests.blackbox.test_resolve.TestResolve.test_resolve_all
2774breezy.tests.blackbox.test_resolve.TestResolve.test_resolve_all_via_directory_option
2775breezy.tests.blackbox.test_resolve.TestResolve.test_resolve_from_subdir
2776breezy.tests.blackbox.test_resolve.TestResolve.test_resolve_one_by_one
2777breezy.tests.blackbox.test_resolve.TestResolve.test_resolve_via_directory_option
2778breezy.tests.blackbox.test_revert.TestRevert.test_revert
2779breezy.tests.blackbox.test_revert.TestRevert.test_revert_chatter
2780breezy.tests.blackbox.test_revert.TestRevert.test_revert_forget_merges
2781breezy.tests.blackbox.test_revert.TestRevert.test_revert_in_checkout
2782breezy.tests.blackbox.test_revert.TestRevert.test_revert_in_subdir
2783breezy.tests.blackbox.test_revert.TestRevert.test_revert_newly_added
2784breezy.tests.blackbox.test_revert.TestRevert.test_revert_removing_file
2785breezy.tests.blackbox.test_revert.TestRevert.test_revert_to_revision_in_subdir
2786breezy.tests.blackbox.test_revision_history.TestRevisionHistory.test_revision_history
2787breezy.tests.blackbox.test_revision_history.TestRevisionHistory.test_revision_history_with_checkout
2788breezy.tests.blackbox.test_revision_history.TestRevisionHistory.test_revision_history_with_lightweight_checkout
2789breezy.tests.blackbox.test_revision_history.TestRevisionHistory.test_revision_history_with_location
2790breezy.tests.blackbox.test_revision_history.TestRevisionHistory.test_revision_history_with_repo_branch
2791breezy.tests.blackbox.test_revision_info.TestRevisionInfo.test_revision_info
2792breezy.tests.blackbox.test_revision_info.TestRevisionInfo.test_revision_info_explicit_branch_dir
2793breezy.tests.blackbox.test_revision_info.TestRevisionInfo.test_revision_info_not_in_history
2794breezy.tests.blackbox.test_revision_info.TestRevisionInfo.test_revision_info_tree
2795breezy.tests.blackbox.test_revision_info.TestRevisionInfo.test_revision_info_tree_no_working_tree
2796breezy.tests.blackbox.test_revno.TestRevno.test_dotted_revno_tree
2797breezy.tests.blackbox.test_revno.TestRevno.test_revno
2798breezy.tests.blackbox.test_revno.TestRevno.test_revno_and_tree_mutually_exclusive
2799breezy.tests.blackbox.test_revno.TestRevno.test_revno_tree
2800breezy.tests.blackbox.test_revno.TestRevno.test_revno_tree_no_tree
2801breezy.tests.blackbox.test_revno.TestRevno.test_revno_with_revision
2802breezy.tests.blackbox.test_revno.TestRevno.test_stale_revno_tree
2803breezy.tests.blackbox.test_revno.TestSmartServerRevno.test_simple_branch_revno
2804breezy.tests.blackbox.test_revno.TestSmartServerRevno.test_simple_branch_revno_lookup
2805breezy.tests.blackbox.test_rmbranch.TestRemoveBranch.test_no_arg
2806breezy.tests.blackbox.test_rmbranch.TestRemoveBranch.test_no_branch
2807breezy.tests.blackbox.test_rmbranch.TestRemoveBranch.test_no_tree
2808breezy.tests.blackbox.test_rmbranch.TestRemoveBranch.test_remove_active_colo_branch
2809breezy.tests.blackbox.test_rmbranch.TestRemoveBranch.test_remove_colo
2810breezy.tests.blackbox.test_rmbranch.TestRemoveBranch.test_remove_colo_directory
2811breezy.tests.blackbox.test_rmbranch.TestRemoveBranch.test_remove_local
2812breezy.tests.blackbox.test_rmbranch.TestSmartServerRemoveBranch.test_simple_remove_branch
2813breezy.tests.blackbox.test_script.TestTestScript.test_empty_file
2814breezy.tests.blackbox.test_script.TestTestScript.test_failing_script
2815breezy.tests.blackbox.test_script.TestTestScript.test_null_output
2816breezy.tests.blackbox.test_script.TestTestScript.test_simple_file
2817breezy.tests.blackbox.test_script.TestTestScript.test_unknnown_file
2818breezy.tests.blackbox.test_selftest.TestOptions.test_list_only
2819breezy.tests.blackbox.test_selftest.TestOptions.test_load_list
2820breezy.tests.blackbox.test_selftest.TestOptions.test_lsprof_tests
2821breezy.tests.blackbox.test_selftest.TestOptions.test_parallel_fork_unsupported
2822breezy.tests.blackbox.test_selftest.TestOptions.test_parameters_passed_to_core
2823breezy.tests.blackbox.test_selftest.TestOptions.test_starting_with
2824breezy.tests.blackbox.test_selftest.TestOptions.test_starting_with_multiple_argument
2825breezy.tests.blackbox.test_selftest.TestOptions.test_subunitv1
2826breezy.tests.blackbox.test_selftest.TestOptions.test_subunitv2
2827breezy.tests.blackbox.test_selftest.TestOptions.test_transport_set_to_memory
2828breezy.tests.blackbox.test_selftest.TestOptions.test_transport_set_to_sftp
2829breezy.tests.blackbox.test_send.TestBundleStrictWithoutChanges.test_send_config_var_no_strict
2830breezy.tests.blackbox.test_send.TestBundleStrictWithoutChanges.test_send_config_var_strict
2831breezy.tests.blackbox.test_send.TestBundleStrictWithoutChanges.test_send_default
2832breezy.tests.blackbox.test_send.TestBundleStrictWithoutChanges.test_send_no_strict
2833breezy.tests.blackbox.test_send.TestBundleStrictWithoutChanges.test_send_strict
2834breezy.tests.blackbox.test_send.TestBundleStrictWithoutChanges.test_send_without_workingtree
2835breezy.tests.blackbox.test_send.TestSendStrictWithChanges.test_send_bogus_config_var_ignored(out-of-sync-trees)
2836breezy.tests.blackbox.test_send.TestSendStrictWithChanges.test_send_bogus_config_var_ignored(pending_merges)
2837breezy.tests.blackbox.test_send.TestSendStrictWithChanges.test_send_bogus_config_var_ignored(uncommitted)
2838breezy.tests.blackbox.test_send.TestSendStrictWithChanges.test_send_default(out-of-sync-trees)
2839breezy.tests.blackbox.test_send.TestSendStrictWithChanges.test_send_default(pending_merges)
2840breezy.tests.blackbox.test_send.TestSendStrictWithChanges.test_send_default(uncommitted)
2841breezy.tests.blackbox.test_send.TestSendStrictWithChanges.test_send_no_strict_command_line_override_config(out-of-sync-trees)
2842breezy.tests.blackbox.test_send.TestSendStrictWithChanges.test_send_no_strict_command_line_override_config(pending_merges)
2843breezy.tests.blackbox.test_send.TestSendStrictWithChanges.test_send_no_strict_command_line_override_config(uncommitted)
2844breezy.tests.blackbox.test_send.TestSendStrictWithChanges.test_send_no_strict(out-of-sync-trees)
2845breezy.tests.blackbox.test_send.TestSendStrictWithChanges.test_send_no_strict(pending_merges)
2846breezy.tests.blackbox.test_send.TestSendStrictWithChanges.test_send_no_strict(uncommitted)
2847breezy.tests.blackbox.test_send.TestSendStrictWithChanges.test_send_respect_config_var_strict(out-of-sync-trees)
2848breezy.tests.blackbox.test_send.TestSendStrictWithChanges.test_send_respect_config_var_strict(pending_merges)
2849breezy.tests.blackbox.test_send.TestSendStrictWithChanges.test_send_respect_config_var_strict(uncommitted)
2850breezy.tests.blackbox.test_send.TestSendStrictWithChanges.test_send_strict_command_line_override_config(out-of-sync-trees)
2851breezy.tests.blackbox.test_send.TestSendStrictWithChanges.test_send_strict_command_line_override_config(pending_merges)
2852breezy.tests.blackbox.test_send.TestSendStrictWithChanges.test_send_strict_command_line_override_config(uncommitted)
2853breezy.tests.blackbox.test_send.TestSendStrictWithChanges.test_send_strict_with_changes(out-of-sync-trees)
2854breezy.tests.blackbox.test_send.TestSendStrictWithChanges.test_send_strict_with_changes(pending_merges)
2855breezy.tests.blackbox.test_send.TestSendStrictWithChanges.test_send_strict_with_changes(uncommitted)
2856breezy.tests.blackbox.test_send.TestSendStrictWithChanges.test_send_with_revision(out-of-sync-trees)
2857breezy.tests.blackbox.test_send.TestSendStrictWithChanges.test_send_with_revision(pending_merges)
2858breezy.tests.blackbox.test_send.TestSendStrictWithChanges.test_send_with_revision(uncommitted)
2859breezy.tests.blackbox.test_send.TestSendStrictWithoutChanges.test_send_config_var_no_strict
2860breezy.tests.blackbox.test_send.TestSendStrictWithoutChanges.test_send_config_var_strict
2861breezy.tests.blackbox.test_send.TestSendStrictWithoutChanges.test_send_default
2862breezy.tests.blackbox.test_send.TestSendStrictWithoutChanges.test_send_no_strict
2863breezy.tests.blackbox.test_send.TestSendStrictWithoutChanges.test_send_strict
2864breezy.tests.blackbox.test_send.TestSendStrictWithoutChanges.test_send_without_workingtree
2865breezy.tests.blackbox.test_send.TestSend.test_bundle
2866breezy.tests.blackbox.test_send.TestSend.test_content_options
2867breezy.tests.blackbox.test_send.TestSend.test_format
2868breezy.tests.blackbox.test_send.TestSend.test_format_child_option
2869breezy.tests.blackbox.test_send.TestSend.test_from_option
2870breezy.tests.blackbox.test_send.TestSend.test_mailto_child_option
2871breezy.tests.blackbox.test_send.TestSend.test_mailto_option
2872breezy.tests.blackbox.test_send.TestSend.test_message_option
2873breezy.tests.blackbox.test_send.TestSend.test_no_common_ancestor
2874breezy.tests.blackbox.test_send.TestSend.test_nonexistant_branch
2875breezy.tests.blackbox.test_send.TestSend.test_note_revisions
2876breezy.tests.blackbox.test_send.TestSend.test_omitted_revision
2877breezy.tests.blackbox.test_send.TestSend.test_output
2878breezy.tests.blackbox.test_send.TestSend.test_output_option
2879breezy.tests.blackbox.test_send.TestSend.test_revision_branch_interaction
2880breezy.tests.blackbox.test_send.TestSend.test_uses_parent
2881breezy.tests.blackbox.test_send.TestSend.test_uses_submit
2882breezy.tests.blackbox.test_send.TestSmartServerSend.test_send
2883breezy.tests.blackbox.test_serve.TestBzrServe.test_bzr_serve_dhpss
2884breezy.tests.blackbox.test_serve.TestBzrServe.test_bzr_serve_graceful_shutdown
2885breezy.tests.blackbox.test_serve.TestBzrServe.test_bzr_serve_inet_readonly
2886breezy.tests.blackbox.test_serve.TestBzrServe.test_bzr_serve_inet_readwrite
2887breezy.tests.blackbox.test_serve.TestBzrServe.test_bzr_serve_port_readonly
2888breezy.tests.blackbox.test_serve.TestBzrServe.test_bzr_serve_port_readwrite
2889breezy.tests.blackbox.test_serve.TestBzrServe.test_bzr_serve_quiet
2890breezy.tests.blackbox.test_serve.TestBzrServe.test_bzr_serve_supports_client_timeout
2891breezy.tests.blackbox.test_serve.TestBzrServe.test_bzr_serve_supports_configurable_timeout
2892breezy.tests.blackbox.test_serve.TestBzrServe.test_bzr_serve_supports_protocol
2893breezy.tests.blackbox.test_serve.TestBzrServe.test_server_exception_no_hook
2894breezy.tests.blackbox.test_serve.TestBzrServe.test_server_exception_with_hook
2895breezy.tests.blackbox.test_serve.TestCmdServeChrooting.test_serve_tcp
2896breezy.tests.blackbox.test_serve.TestUserdirExpansion.test_bzr_serve_does_not_expand_userdir_outside_base
2897breezy.tests.blackbox.test_serve.TestUserdirExpansion.test_bzr_serve_expands_userdir
2898breezy.tests.blackbox.test_serve.TestUserdirExpansion.test_get_base_path
2899breezy.tests.blackbox.test_shared_repository.TestSharedRepo.test_branch
2900breezy.tests.blackbox.test_shared_repository.TestSharedRepo.test_branch_tree
2901breezy.tests.blackbox.test_shared_repository.TestSharedRepo.test_init
2902breezy.tests.blackbox.test_shared_repository.TestSharedRepo.test_init_repo_existing_dir
2903breezy.tests.blackbox.test_shared_repository.TestSharedRepo.test_init_repo_smart_acceptance
2904breezy.tests.blackbox.test_shared_repository.TestSharedRepo.test_init_repo_with_post_repo_init_hook
2905breezy.tests.blackbox.test_shared_repository.TestSharedRepo.test_notification_on_branch_from_nonrepository
2906breezy.tests.blackbox.test_shared_repository.TestSharedRepo.test_notification_on_branch_from_repository
2907breezy.tests.blackbox.test_shared_repository.TestSharedRepo.test_no_trees_argument
2908breezy.tests.blackbox.test_shared_repository.TestSharedRepo.test_trees_argument
2909breezy.tests.blackbox.test_shared_repository.TestSharedRepo.test_trees_default
2910breezy.tests.blackbox.test_shell_complete.ShellCompleteTests.test_list
2911breezy.tests.blackbox.test_shell_complete.ShellCompleteTests.test_specific_command
2912breezy.tests.blackbox.test_shell_complete.ShellCompleteTests.test_specific_command_missing
2913breezy.tests.blackbox.test_shelve.TestShelveList.test_no_shelved_changes
2914breezy.tests.blackbox.test_shelve.TestShelveList.test_shelf_order
2915breezy.tests.blackbox.test_shelve.TestShelveList.test_shelve_destroy
2916breezy.tests.blackbox.test_shelve.TestShelveList.test_shelve_list_via_directory
2917breezy.tests.blackbox.test_shelve.TestShelveList.test_shelve_no_message
2918breezy.tests.blackbox.test_shelve.TestShelveList.test_shelve_one
2919breezy.tests.blackbox.test_shelve.TestShelveList.test_unshelve_keep
2920breezy.tests.blackbox.test_shelve.TestShelveRelpath.test_shelve_in_subdir
2921breezy.tests.blackbox.test_shelve.TestShelveRelpath.test_shelve_via_directory
2922breezy.tests.blackbox.test_shelve.TestShelveUnshelve.test_directory
2923breezy.tests.blackbox.test_shelve.TestUnshelvePreview.test_non_ascii
2924breezy.tests.blackbox.test_sign_my_commits.SignMyCommits.test_sign_diff_committer
2925breezy.tests.blackbox.test_sign_my_commits.SignMyCommits.test_sign_dry_run
2926breezy.tests.blackbox.test_sign_my_commits.SignMyCommits.test_sign_my_commits
2927breezy.tests.blackbox.test_sign_my_commits.SignMyCommits.test_sign_my_commits_location
2928breezy.tests.blackbox.test_sign_my_commits.TestSmartServerSignMyCommits.test_sign_single_commit
2929breezy.tests.blackbox.test_split.TestSplit.test_split
2930breezy.tests.blackbox.test_split.TestSplit.test_split_repo_failure
2931breezy.tests.blackbox.test_split.TestSplit.test_split_rich_root
2932breezy.tests.blackbox.test_split.TestSplit.test_split_rich_root_pack
2933breezy.tests.blackbox.test_split.TestSplit.test_split_tree_failure
2934breezy.tests.blackbox.test_status.BranchStatus.test_branch_status
2935breezy.tests.blackbox.test_status.BranchStatus.test_branch_status_revisions
2936breezy.tests.blackbox.test_status.BranchStatus.test_pending
2937breezy.tests.blackbox.test_status.BranchStatus.test_specific_files_conflicts
2938breezy.tests.blackbox.test_status.BranchStatus.test_status_multiple_nonexistent_files
2939breezy.tests.blackbox.test_status.BranchStatus.test_status_nonexistent_file
2940breezy.tests.blackbox.test_status.BranchStatus.test_status_nonexistent_file_with_others
2941breezy.tests.blackbox.test_status.BranchStatus.test_status_nonexistent_file_with_unversioned
2942breezy.tests.blackbox.test_status.BranchStatus.test_status_on_ignored
2943breezy.tests.blackbox.test_status.BranchStatus.test_status_out_of_date
2944breezy.tests.blackbox.test_status.BranchStatus.test_status_with_shelves
2945breezy.tests.blackbox.test_status.BranchStatus.test_status_write_lock
2946breezy.tests.blackbox.test_status.BranchStatus.test_tree_status_ignores
2947breezy.tests.blackbox.test_status.BranchStatus.test_tree_status_specific_files
2948breezy.tests.blackbox.test_status.CheckoutStatus.test_branch_status
2949breezy.tests.blackbox.test_status.CheckoutStatus.test_branch_status_revisions
2950breezy.tests.blackbox.test_status.CheckoutStatus.test_pending
2951breezy.tests.blackbox.test_status.CheckoutStatus.test_specific_files_conflicts
2952breezy.tests.blackbox.test_status.CheckoutStatus.test_status_multiple_nonexistent_files
2953breezy.tests.blackbox.test_status.CheckoutStatus.test_status_nonexistent_file
2954breezy.tests.blackbox.test_status.CheckoutStatus.test_status_nonexistent_file_with_others
2955breezy.tests.blackbox.test_status.CheckoutStatus.test_status_nonexistent_file_with_unversioned
2956breezy.tests.blackbox.test_status.CheckoutStatus.test_status_on_ignored
2957breezy.tests.blackbox.test_status.CheckoutStatus.test_status_out_of_date
2958breezy.tests.blackbox.test_status.CheckoutStatus.test_status_with_shelves
2959breezy.tests.blackbox.test_status.CheckoutStatus.test_status_write_lock
2960breezy.tests.blackbox.test_status.CheckoutStatus.test_tree_status_ignores
2961breezy.tests.blackbox.test_status.CheckoutStatus.test_tree_status_specific_files
2962breezy.tests.blackbox.test_status.TestStatusEncodings.test_stdout_ascii
2963breezy.tests.blackbox.test_status.TestStatusEncodings.test_stdout_latin1
2964breezy.tests.blackbox.test_status.TestStatus.test_kind_change_plain
2965breezy.tests.blackbox.test_status.TestStatus.test_kind_change_short
2966breezy.tests.blackbox.test_status.TestStatus.test_pending_specific_files
2967breezy.tests.blackbox.test_status.TestStatus.test_status_illegal_revision_specifiers
2968breezy.tests.blackbox.test_status.TestStatus.test_status_no_pending
2969breezy.tests.blackbox.test_status.TestStatus.test_status_plain
2970breezy.tests.blackbox.test_status.TestStatus.test_status_short
2971breezy.tests.blackbox.test_status.TestStatus.test_status_SV
2972breezy.tests.blackbox.test_status.TestStatus.test_status_versioned
2973breezy.tests.blackbox.test_switch.TestSmartServerSwitch.test_switch_lightweight
2974breezy.tests.blackbox.test_switch.TestSwitchDoesntOpenMasterBranch.test_switch_create_doesnt_open_master_branch
2975breezy.tests.blackbox.test_switch.TestSwitchParentLocation.test_switch_parent_heavyweight
2976breezy.tests.blackbox.test_switch.TestSwitchParentLocation.test_switch_parent_lightweight
2977breezy.tests.blackbox.test_switch.TestSwitchStandAloneCorruption.test_empty_tree_switch
2978breezy.tests.blackbox.test_switch.TestSwitchStandAloneCorruption.test_switch_create_colo_locks_repo_path
2979breezy.tests.blackbox.test_switch.TestSwitchStandAloneCorruption.test_switch_on_previous_rev
2980breezy.tests.blackbox.test_switch.TestSwitch.test_create_branch
2981breezy.tests.blackbox.test_switch.TestSwitch.test_create_branch_directory_services
2982breezy.tests.blackbox.test_switch.TestSwitch.test_create_branch_local
2983breezy.tests.blackbox.test_switch.TestSwitch.test_create_branch_no_branch
2984breezy.tests.blackbox.test_switch.TestSwitch.test_create_branch_short_name
2985breezy.tests.blackbox.test_switch.TestSwitch.test_switch_existing_colocated
2986breezy.tests.blackbox.test_switch.TestSwitch.test_switch_explicit_nick
2987breezy.tests.blackbox.test_switch.TestSwitch.test_switch_explicit_nick_lightweight
2988breezy.tests.blackbox.test_switch.TestSwitch.test_switch_finds_relative_bound_branch
2989breezy.tests.blackbox.test_switch.TestSwitch.test_switch_finds_relative_branch
2990breezy.tests.blackbox.test_switch.TestSwitch.test_switch_finds_relative_unicode_branch
2991breezy.tests.blackbox.test_switch.TestSwitch.test_switch_into_colocated
2992breezy.tests.blackbox.test_switch.TestSwitch.test_switch_into_unrelated_colocated
2993breezy.tests.blackbox.test_switch.TestSwitch.test_switch_lightweight_after_branch_moved
2994breezy.tests.blackbox.test_switch.TestSwitch.test_switch_lightweight_after_branch_moved_relative
2995breezy.tests.blackbox.test_switch.TestSwitch.test_switch_lightweight_co_with_post_switch_hook
2996breezy.tests.blackbox.test_switch.TestSwitch.test_switch_lightweight_directory
2997breezy.tests.blackbox.test_switch.TestSwitch.test_switch_new_colocated
2998breezy.tests.blackbox.test_switch.TestSwitch.test_switch_new_colocated_unicode
2999breezy.tests.blackbox.test_switch.TestSwitch.test_switch_nick
3000breezy.tests.blackbox.test_switch.TestSwitch.test_switch_nick_lightweight
3001breezy.tests.blackbox.test_switch.TestSwitch.test_switch_only_revision
3002breezy.tests.blackbox.test_switch.TestSwitch.test_switch_out_of_date_light_checkout
3003breezy.tests.blackbox.test_switch.TestSwitch.test_switch_revision
3004breezy.tests.blackbox.test_switch.TestSwitch.test_switch_up_to_date_light_checkout
3005breezy.tests.blackbox.test_switch.TestSwitch.test_switch_with_post_switch_hook
3006breezy.tests.blackbox.test_switch.TestSwitchUncommitted.test_does_not_restore_changes
3007breezy.tests.blackbox.test_switch.TestSwitchUncommitted.test_does_not_store
3008breezy.tests.blackbox.test_switch.TestSwitchUncommitted.test_store_and_restore_uncommitted
3009breezy.tests.blackbox.test_tags.TestSmartServerCat.test_set_tag
3010breezy.tests.blackbox.test_tags.TestSmartServerCat.test_show_tags
3011breezy.tests.blackbox.test_tags.TestTagging.test_automatic_tag_name
3012breezy.tests.blackbox.test_tags.TestTagging.test_branch_push_pull_merge_copies_tags
3013breezy.tests.blackbox.test_tags.TestTagging.test_cannot_tag_range
3014breezy.tests.blackbox.test_tags.TestTagging.test_commit_in_heavyweight_checkout_copies_tags_to_master
3015breezy.tests.blackbox.test_tags.TestTagging.test_commit_in_heavyweight_checkout_reports_tag_conflict
3016breezy.tests.blackbox.test_tags.TestTagging.test_conflicting_tags
3017breezy.tests.blackbox.test_tags.TestTagging.test_list_tags
3018breezy.tests.blackbox.test_tags.TestTagging.test_list_tags_dotted_revnos_unsupported
3019breezy.tests.blackbox.test_tags.TestTagging.test_list_tags_revision_filtering
3020breezy.tests.blackbox.test_tags.TestTagging.test_merge_without_commit_does_not_propagate_tags_to_master
3021breezy.tests.blackbox.test_tags.TestTagging.test_no_tag_name
3022breezy.tests.blackbox.test_tags.TestTagging.test_sort_tags_custom
3023breezy.tests.blackbox.test_tags.TestTagging.test_tag_command_help
3024breezy.tests.blackbox.test_tags.TestTagging.test_tag_current_rev
3025breezy.tests.blackbox.test_tags.TestTagging.test_tag_delete_quiet
3026breezy.tests.blackbox.test_tags.TestTagging.test_tag_delete_requires_name
3027breezy.tests.blackbox.test_tags.TestTagging.test_tag_quiet
3028breezy.tests.blackbox.test_tags.TestTagging.test_tag_same_revision
3029breezy.tests.blackbox.test_tags.TestTagging.test_tags_with_mainline_ghosts
3030breezy.tests.blackbox.test_testament.TestTestament.test_testament_command
3031breezy.tests.blackbox.test_testament.TestTestament.test_testament_command_2
3032breezy.tests.blackbox.test_testament.TestTestament.test_testament_command_3
3033breezy.tests.blackbox.test_testament.TestTestament.test_testament_non_ascii
3034breezy.tests.blackbox.test_too_much.HTTPTests.test_branch
3035breezy.tests.blackbox.test_too_much.HTTPTests.test_check
3036breezy.tests.blackbox.test_too_much.HTTPTests.test_log
3037breezy.tests.blackbox.test_too_much.HTTPTests.test_push
3038breezy.tests.blackbox.test_too_much.OldTests.test_bzr
3039breezy.tests.blackbox.test_too_much.SFTPTestsAbsoluteSibling.test_branch
3040breezy.tests.blackbox.test_too_much.SFTPTestsAbsoluteSibling.test_check
3041breezy.tests.blackbox.test_too_much.SFTPTestsAbsoluteSibling.test_log
3042breezy.tests.blackbox.test_too_much.SFTPTestsAbsoluteSibling.test_push
3043breezy.tests.blackbox.test_too_much.SFTPTestsAbsolute.test_branch
3044breezy.tests.blackbox.test_too_much.SFTPTestsAbsolute.test_check
3045breezy.tests.blackbox.test_too_much.SFTPTestsAbsolute.test_log
3046breezy.tests.blackbox.test_too_much.SFTPTestsAbsolute.test_push
3047breezy.tests.blackbox.test_too_much.SFTPTestsRelative.test_branch
3048breezy.tests.blackbox.test_too_much.SFTPTestsRelative.test_check
3049breezy.tests.blackbox.test_too_much.SFTPTestsRelative.test_log
3050breezy.tests.blackbox.test_too_much.SFTPTestsRelative.test_push
3051breezy.tests.blackbox.test_too_much.TestCommands.test_conflicts
3052breezy.tests.blackbox.test_too_much.TestCommands.test_external_command
3053breezy.tests.blackbox.test_too_much.TestCommands.test_invalid_commands
3054breezy.tests.blackbox.test_too_much.TestCommands.test_locations
3055breezy.tests.blackbox.test_too_much.TestCommands.test_pull_verbose
3056breezy.tests.blackbox.test_too_much.TestCommands.test_push
3057breezy.tests.blackbox.test_too_much.TestCommands.test_revert
3058breezy.tests.blackbox.test_too_much.TestCommands.test_status
3059breezy.tests.blackbox.test_too_much.TestCommands.test_unknown_command
3060breezy.tests.blackbox.test_uncommit.TestInconsistentDelta.test_inconsistent_delta
3061breezy.tests.blackbox.test_uncommit.TestSmartServerUncommit.test_uncommit
3062breezy.tests.blackbox.test_uncommit.TestUncommit.test_uncommit
3063breezy.tests.blackbox.test_uncommit.TestUncommit.test_uncommit_bound
3064breezy.tests.blackbox.test_uncommit.TestUncommit.test_uncommit_bound_local
3065breezy.tests.blackbox.test_uncommit.TestUncommit.test_uncommit_checkout
3066breezy.tests.blackbox.test_uncommit.TestUncommit.test_uncommit_interactive
3067breezy.tests.blackbox.test_uncommit.TestUncommit.test_uncommit_keep_tags
3068breezy.tests.blackbox.test_uncommit.TestUncommit.test_uncommit_merge_plus_pending
3069breezy.tests.blackbox.test_uncommit.TestUncommit.test_uncommit_merges
3070breezy.tests.blackbox.test_uncommit.TestUncommit.test_uncommit_multiple_merge
3071breezy.tests.blackbox.test_uncommit.TestUncommit.test_uncommit_neg_1
3072breezy.tests.blackbox.test_uncommit.TestUncommit.test_uncommit_no_history
3073breezy.tests.blackbox.test_uncommit.TestUncommit.test_uncommit_nonascii
3074breezy.tests.blackbox.test_uncommit.TestUncommit.test_uncommit_octopus_merge
3075breezy.tests.blackbox.test_uncommit.TestUncommit.test_uncommit_pending_merge
3076breezy.tests.blackbox.test_uncommit.TestUncommit.test_uncommit_removes_tags
3077breezy.tests.blackbox.test_uncommit.TestUncommit.test_uncommit_revision
3078breezy.tests.blackbox.test_uncommit.TestUncommit.test_uncommit_shows_log_with_revision_id
3079breezy.tests.blackbox.test_unknowns.TestUnknowns.test_unknowns
3080breezy.tests.blackbox.test_unknowns.TestUnknowns.test_unknowns_directory
3081breezy.tests.blackbox.test_update.TestUpdate.test_no_upgrade_single_file
3082breezy.tests.blackbox.test_update.TestUpdate.test_readonly_lightweight_update
3083breezy.tests.blackbox.test_update.TestUpdate.test_smoke_update_checkout_bound_branch_local_commits
3084breezy.tests.blackbox.test_update.TestUpdate.test_update_checkout_prevent_double_merge
3085breezy.tests.blackbox.test_update.TestUpdate.test_update_conflicts_returns_2
3086breezy.tests.blackbox.test_update.TestUpdate.test_update_dash_r
3087breezy.tests.blackbox.test_update.TestUpdate.test_update_dash_r_in_master
3088breezy.tests.blackbox.test_update.TestUpdate.test_update_dash_r_outside_history
3089breezy.tests.blackbox.test_update.TestUpdate.test_update_out_of_date_light_checkout
3090breezy.tests.blackbox.test_update.TestUpdate.test_update_out_of_date_standalone_tree
3091breezy.tests.blackbox.test_update.TestUpdate.test_update_quiet
3092breezy.tests.blackbox.test_update.TestUpdate.test_update_show_base
3093breezy.tests.blackbox.test_update.TestUpdate.test_update_standalone_trivial
3094breezy.tests.blackbox.test_update.TestUpdate.test_update_standalone_trivial_with_alias_up
3095breezy.tests.blackbox.test_update.TestUpdate.test_update_up_to_date_checkout
3096breezy.tests.blackbox.test_update.TestUpdate.test_update_up_to_date_light_checkout
3097breezy.tests.blackbox.test_update.TestUpdate.test_update_with_merge_merged_to_master
3098breezy.tests.blackbox.test_update.TestUpdate.test_update_with_merges
3099breezy.tests.blackbox.test_upgrade.SFTPTests.test_upgrade_url
3100breezy.tests.blackbox.test_upgrade.TestWithUpgradableBranches.test_readonly_url_error
3101breezy.tests.blackbox.test_upgrade.TestWithUpgradableBranches.test_upgrade_branch_in_repo
3102breezy.tests.blackbox.test_upgrade.TestWithUpgradableBranches.test_upgrade_checkout
3103breezy.tests.blackbox.test_upgrade.TestWithUpgradableBranches.test_upgrade_clean_supported
3104breezy.tests.blackbox.test_upgrade.TestWithUpgradableBranches.test_upgrade_control_dir
3105breezy.tests.blackbox.test_upgrade.TestWithUpgradableBranches.test_upgrade_dry_run_supported
3106breezy.tests.blackbox.test_upgrade.TestWithUpgradableBranches.test_upgrade_explicit_knit
3107breezy.tests.blackbox.test_upgrade.TestWithUpgradableBranches.test_upgrade_permission_check
3108breezy.tests.blackbox.test_upgrade.TestWithUpgradableBranches.test_upgrade_repo
3109breezy.tests.blackbox.test_upgrade.TestWithUpgradableBranches.test_upgrade_repository_scans_branches
3110breezy.tests.blackbox.test_upgrade.TestWithUpgradableBranches.test_upgrade_up_to_date
3111breezy.tests.blackbox.test_upgrade.TestWithUpgradableBranches.test_upgrade_up_to_date_checkout_warns_branch_left_alone
3112breezy.tests.blackbox.test_upgrade.TestWithUpgradableBranches.test_upgrade_with_existing_backup_dir
3113breezy.tests.blackbox.test_upgrade.UpgradeRecommendedTests.test_no_upgrade_recommendation_from_bzrdir
3114breezy.tests.blackbox.test_upgrade.UpgradeRecommendedTests.test_recommend_upgrade_wt4
3115breezy.tests.blackbox.test_upgrade.UpgradeRecommendedTests.test_upgrade_shared_repo
3116breezy.tests.blackbox.test_verify_signatures.TestSmartServerVerifySignatures.test_verify_signatures
3117breezy.tests.blackbox.test_verify_signatures.TestVerifySignatures.test_verify_signatures
3118breezy.tests.blackbox.test_verify_signatures.TestVerifySignatures.test_verify_signatures_acceptable_key
3119breezy.tests.blackbox.test_verify_signatures.TestVerifySignatures.test_verify_signatures_verbose
3120breezy.tests.blackbox.test_verify_signatures.TestVerifySignatures.test_verify_signatures_verbose_all_valid
3121breezy.tests.blackbox.test_version_info.TestVersionInfo.test_all
3122breezy.tests.blackbox.test_version_info.TestVersionInfo.test_basic
3123breezy.tests.blackbox.test_version_info.TestVersionInfo.test_clean
3124breezy.tests.blackbox.test_version_info.TestVersionInfo.test_custom_implies_all
3125breezy.tests.blackbox.test_version_info.TestVersionInfo.test_custom_no_clean_in_template
3126breezy.tests.blackbox.test_version_info.TestVersionInfo.test_custom_without_template
3127breezy.tests.blackbox.test_version_info.TestVersionInfo.test_invalid_format
3128breezy.tests.blackbox.test_version_info.TestVersionInfo.test_no_branch
3129breezy.tests.blackbox.test_version_info.TestVersionInfo.test_non_ascii
3130breezy.tests.blackbox.test_version_info.TestVersionInfo.test_no_working_tree
3131breezy.tests.blackbox.test_version_info.TestVersionInfo.test_python
3132breezy.tests.blackbox.test_version_info.TestVersionInfo.test_revision
3133breezy.tests.blackbox.test_version_info.TestVersionInfo.test_rio
3134breezy.tests.blackbox.test_versioning.SubdirCommit.test_subdir_commit
3135breezy.tests.blackbox.test_versioning.TestMkdir.test_mkdir
3136breezy.tests.blackbox.test_versioning.TestMkdir.test_mkdir_fails_cleanly
3137breezy.tests.blackbox.test_versioning.TestMkdir.test_mkdir_in_subdir
3138breezy.tests.blackbox.test_versioning.TestMkdir.test_mkdir_quiet
3139breezy.tests.blackbox.test_versioning.TestMkdir.test_mkdir_w_nested_trees
3140breezy.tests.blackbox.test_version.TestVersionBzrLogLocation.test_dev_null
3141breezy.tests.blackbox.test_version.TestVersionBzrLogLocation.test_simple
3142breezy.tests.blackbox.test_version.TestVersionBzrLogLocation.test_unicode_brz_log
3143breezy.tests.blackbox.test_version.TestVersion.test_main_version
3144breezy.tests.blackbox.test_version.TestVersion.test_version
3145breezy.tests.blackbox.test_version.TestVersion.test_version_short
3146breezy.tests.blackbox.test_version.TestVersionUnicodeOutput.test_command
3147breezy.tests.blackbox.test_version.TestVersionUnicodeOutput.test_flag
3148breezy.tests.blackbox.test_version.TestVersionUnicodeOutput.test_unicode_bzr_home
3149breezy.tests.blackbox.test_view.TestViewUI.test_define_view
3150breezy.tests.blackbox.test_view.TestViewUI.test_delete_view
3151breezy.tests.blackbox.test_view.TestViewUI.test_list_view
3152breezy.tests.blackbox.test_view.TestViewUI.test_switch_view
3153breezy.tests.blackbox.test_view.TestViewUI.test_view_command_help
3154breezy.tests.blackbox.test_whoami.TestWhoami.test_warning
3155breezy.tests.blackbox.test_whoami.TestWhoami.test_whoami_ascii
3156breezy.tests.blackbox.test_whoami.TestWhoami.test_whoami_branch
3157breezy.tests.blackbox.test_whoami.TestWhoami.test_whoami_directory
3158breezy.tests.blackbox.test_whoami.TestWhoami.test_whoami_email_arg
3159breezy.tests.blackbox.test_whoami.TestWhoami.test_whoami_email_no_args
3160breezy.tests.blackbox.test_whoami.TestWhoami.test_whoami_no_args_no_conf
3161breezy.tests.blackbox.test_whoami.TestWhoami.test_whoami_nonbranch_directory
3162breezy.tests.blackbox.test_whoami.TestWhoami.test_whoami_not_set
3163breezy.tests.blackbox.test_whoami.TestWhoami.test_whoami_remote_directory
3164breezy.tests.blackbox.test_whoami.TestWhoami.test_whoami_utf8
3165breezy.tests.commands.test_branch.TestBranch.test_branch_local_remote
3166breezy.tests.commands.test_branch.TestBranch.test_branch_remote_local
3167breezy.tests.commands.test_branch.TestBranch.test_branch_remote_remote
3168breezy.tests.commands.test_cat.TestCat.test_cat
3169breezy.tests.commands.test_checkout.TestCheckout.test_checkout
3170breezy.tests.commands.test_checkout.TestCheckout.test_checkout_lightweight
3171breezy.tests.commands.test_commit.TestCommitWithBoundBranch.test_commit_both_modified
3172breezy.tests.commands.test_commit.TestCommitWithBoundBranch.test_commit_local
3173breezy.tests.commands.test_commit.TestCommitWithBoundBranch.test_commit_mine_modified
3174breezy.tests.commands.test_init_repository.TestInitRepository.test_init_repository
3175breezy.tests.commands.test_init.TestInit.test_init
3176breezy.tests.commands.test_merge.TestMerge.test_merge
3177breezy.tests.commands.test_missing.TestMissing.test_missing
3178breezy.tests.commands.test_pull.TestPull.test_pull
3179breezy.tests.commands.test_pull.TestPull.test_pull_with_bound_branch
3180breezy.tests.commands.test_push.TestPush.test_push
3181breezy.tests.commands.test_push.TestPush.test_push_onto_stacked
3182breezy.tests.commands.test_revert.TestRevert.test_revert_tree_write_lock_and_branch_read_lock
3183breezy.tests.commands.test_update.TestUpdate.test_update
3184breezy.tests.per_branch.test_branch.ChrootedTests.test_open_containing(BranchReferenceFormat)
3185breezy.tests.per_branch.test_branch.ChrootedTests.test_open_containing(BzrBranchFormat4)
3186breezy.tests.per_branch.test_branch.ChrootedTests.test_open_containing(BzrBranchFormat5)
3187breezy.tests.per_branch.test_branch.ChrootedTests.test_open_containing(BzrBranchFormat6)
3188breezy.tests.per_branch.test_branch.ChrootedTests.test_open_containing(BzrBranchFormat7)
3189breezy.tests.per_branch.test_branch.ChrootedTests.test_open_containing(BzrBranchFormat8)
3190breezy.tests.per_branch.test_branch.ChrootedTests.test_open_containing(LocalGitBranchFormat)
3191breezy.tests.per_branch.test_branch.ChrootedTests.test_open_containing(RemoteBranchFormat-default)
3192breezy.tests.per_branch.test_branch.ChrootedTests.test_open_containing(RemoteBranchFormat-v2)
3193breezy.tests.per_branch.test_branch.ChrootedTests.test_open_containing(RemoteGitBranchFormat)
3194breezy.tests.per_branch.test_branch.TestBound.test_bind_clears_cached_master_branch(BranchReferenceFormat)
3195breezy.tests.per_branch.test_branch.TestBound.test_bind_clears_cached_master_branch(BzrBranchFormat4)
3196breezy.tests.per_branch.test_branch.TestBound.test_bind_clears_cached_master_branch(BzrBranchFormat5)
3197breezy.tests.per_branch.test_branch.TestBound.test_bind_clears_cached_master_branch(BzrBranchFormat6)
3198breezy.tests.per_branch.test_branch.TestBound.test_bind_clears_cached_master_branch(BzrBranchFormat7)
3199breezy.tests.per_branch.test_branch.TestBound.test_bind_clears_cached_master_branch(BzrBranchFormat8)
3200breezy.tests.per_branch.test_branch.TestBound.test_bind_clears_cached_master_branch(LocalGitBranchFormat)
3201breezy.tests.per_branch.test_branch.TestBound.test_bind_clears_cached_master_branch(RemoteBranchFormat-default)
3202breezy.tests.per_branch.test_branch.TestBound.test_bind_clears_cached_master_branch(RemoteBranchFormat-v2)
3203breezy.tests.per_branch.test_branch.TestBound.test_bind_clears_cached_master_branch(RemoteGitBranchFormat)
3204breezy.tests.per_branch.test_branch.TestBound.test_bind_diverged(BranchReferenceFormat)
3205breezy.tests.per_branch.test_branch.TestBound.test_bind_diverged(BzrBranchFormat4)
3206breezy.tests.per_branch.test_branch.TestBound.test_bind_diverged(BzrBranchFormat5)
3207breezy.tests.per_branch.test_branch.TestBound.test_bind_diverged(BzrBranchFormat6)
3208breezy.tests.per_branch.test_branch.TestBound.test_bind_diverged(BzrBranchFormat7)
3209breezy.tests.per_branch.test_branch.TestBound.test_bind_diverged(BzrBranchFormat8)
3210breezy.tests.per_branch.test_branch.TestBound.test_bind_diverged(LocalGitBranchFormat)
3211breezy.tests.per_branch.test_branch.TestBound.test_bind_diverged(RemoteBranchFormat-default)
3212breezy.tests.per_branch.test_branch.TestBound.test_bind_diverged(RemoteBranchFormat-v2)
3213breezy.tests.per_branch.test_branch.TestBound.test_bind_diverged(RemoteGitBranchFormat)
3214breezy.tests.per_branch.test_branch.TestBound.test_bind_unbind(BranchReferenceFormat)
3215breezy.tests.per_branch.test_branch.TestBound.test_bind_unbind(BzrBranchFormat4)
3216breezy.tests.per_branch.test_branch.TestBound.test_bind_unbind(BzrBranchFormat5)
3217breezy.tests.per_branch.test_branch.TestBound.test_bind_unbind(BzrBranchFormat6)
3218breezy.tests.per_branch.test_branch.TestBound.test_bind_unbind(BzrBranchFormat7)
3219breezy.tests.per_branch.test_branch.TestBound.test_bind_unbind(BzrBranchFormat8)
3220breezy.tests.per_branch.test_branch.TestBound.test_bind_unbind(LocalGitBranchFormat)
3221breezy.tests.per_branch.test_branch.TestBound.test_bind_unbind(RemoteBranchFormat-default)
3222breezy.tests.per_branch.test_branch.TestBound.test_bind_unbind(RemoteBranchFormat-v2)
3223breezy.tests.per_branch.test_branch.TestBound.test_bind_unbind(RemoteGitBranchFormat)
3224breezy.tests.per_branch.test_branch.TestBound.test_old_bound_location(BranchReferenceFormat)
3225breezy.tests.per_branch.test_branch.TestBound.test_old_bound_location(BzrBranchFormat4)
3226breezy.tests.per_branch.test_branch.TestBound.test_old_bound_location(BzrBranchFormat5)
3227breezy.tests.per_branch.test_branch.TestBound.test_old_bound_location(BzrBranchFormat6)
3228breezy.tests.per_branch.test_branch.TestBound.test_old_bound_location(BzrBranchFormat7)
3229breezy.tests.per_branch.test_branch.TestBound.test_old_bound_location(BzrBranchFormat8)
3230breezy.tests.per_branch.test_branch.TestBound.test_old_bound_location(LocalGitBranchFormat)
3231breezy.tests.per_branch.test_branch.TestBound.test_old_bound_location(RemoteBranchFormat-default)
3232breezy.tests.per_branch.test_branch.TestBound.test_old_bound_location(RemoteBranchFormat-v2)
3233breezy.tests.per_branch.test_branch.TestBound.test_old_bound_location(RemoteGitBranchFormat)
3234breezy.tests.per_branch.test_branch.TestBound.test_set_bound_location_clears_cached_master_branch(BranchReferenceFormat)
3235breezy.tests.per_branch.test_branch.TestBound.test_set_bound_location_clears_cached_master_branch(BzrBranchFormat4)
3236breezy.tests.per_branch.test_branch.TestBound.test_set_bound_location_clears_cached_master_branch(BzrBranchFormat5)
3237breezy.tests.per_branch.test_branch.TestBound.test_set_bound_location_clears_cached_master_branch(BzrBranchFormat6)
3238breezy.tests.per_branch.test_branch.TestBound.test_set_bound_location_clears_cached_master_branch(BzrBranchFormat7)
3239breezy.tests.per_branch.test_branch.TestBound.test_set_bound_location_clears_cached_master_branch(BzrBranchFormat8)
3240breezy.tests.per_branch.test_branch.TestBound.test_set_bound_location_clears_cached_master_branch(LocalGitBranchFormat)
3241breezy.tests.per_branch.test_branch.TestBound.test_set_bound_location_clears_cached_master_branch(RemoteBranchFormat-default)
3242breezy.tests.per_branch.test_branch.TestBound.test_set_bound_location_clears_cached_master_branch(RemoteBranchFormat-v2)
3243breezy.tests.per_branch.test_branch.TestBound.test_set_bound_location_clears_cached_master_branch(RemoteGitBranchFormat)
3244breezy.tests.per_branch.test_branch.TestBound.test_unbind_clears_cached_master_branch(BranchReferenceFormat)
3245breezy.tests.per_branch.test_branch.TestBound.test_unbind_clears_cached_master_branch(BzrBranchFormat4)
3246breezy.tests.per_branch.test_branch.TestBound.test_unbind_clears_cached_master_branch(BzrBranchFormat5)
3247breezy.tests.per_branch.test_branch.TestBound.test_unbind_clears_cached_master_branch(BzrBranchFormat6)
3248breezy.tests.per_branch.test_branch.TestBound.test_unbind_clears_cached_master_branch(BzrBranchFormat7)
3249breezy.tests.per_branch.test_branch.TestBound.test_unbind_clears_cached_master_branch(BzrBranchFormat8)
3250breezy.tests.per_branch.test_branch.TestBound.test_unbind_clears_cached_master_branch(LocalGitBranchFormat)
3251breezy.tests.per_branch.test_branch.TestBound.test_unbind_clears_cached_master_branch(RemoteBranchFormat-default)
3252breezy.tests.per_branch.test_branch.TestBound.test_unbind_clears_cached_master_branch(RemoteBranchFormat-v2)
3253breezy.tests.per_branch.test_branch.TestBound.test_unbind_clears_cached_master_branch(RemoteGitBranchFormat)
3254breezy.tests.per_branch.test_branch.TestBranchControlComponent.test_urls(BranchReferenceFormat)
3255breezy.tests.per_branch.test_branch.TestBranchControlComponent.test_urls(BzrBranchFormat4)
3256breezy.tests.per_branch.test_branch.TestBranchControlComponent.test_urls(BzrBranchFormat5)
3257breezy.tests.per_branch.test_branch.TestBranchControlComponent.test_urls(BzrBranchFormat6)
3258breezy.tests.per_branch.test_branch.TestBranchControlComponent.test_urls(BzrBranchFormat7)
3259breezy.tests.per_branch.test_branch.TestBranchControlComponent.test_urls(BzrBranchFormat8)
3260breezy.tests.per_branch.test_branch.TestBranchControlComponent.test_urls(LocalGitBranchFormat)
3261breezy.tests.per_branch.test_branch.TestBranchControlComponent.test_urls(RemoteBranchFormat-default)
3262breezy.tests.per_branch.test_branch.TestBranchControlComponent.test_urls(RemoteBranchFormat-v2)
3263breezy.tests.per_branch.test_branch.TestBranchControlComponent.test_urls(RemoteGitBranchFormat)
3264breezy.tests.per_branch.test_branch.TestBranchFormat.test_branch_format_network_name(BranchReferenceFormat)
3265breezy.tests.per_branch.test_branch.TestBranchFormat.test_branch_format_network_name(BzrBranchFormat4)
3266breezy.tests.per_branch.test_branch.TestBranchFormat.test_branch_format_network_name(BzrBranchFormat5)
3267breezy.tests.per_branch.test_branch.TestBranchFormat.test_branch_format_network_name(BzrBranchFormat6)
3268breezy.tests.per_branch.test_branch.TestBranchFormat.test_branch_format_network_name(BzrBranchFormat7)
3269breezy.tests.per_branch.test_branch.TestBranchFormat.test_branch_format_network_name(BzrBranchFormat8)
3270breezy.tests.per_branch.test_branch.TestBranchFormat.test_branch_format_network_name(LocalGitBranchFormat)
3271breezy.tests.per_branch.test_branch.TestBranchFormat.test_branch_format_network_name(RemoteBranchFormat-default)
3272breezy.tests.per_branch.test_branch.TestBranchFormat.test_branch_format_network_name(RemoteBranchFormat-v2)
3273breezy.tests.per_branch.test_branch.TestBranchFormat.test_branch_format_network_name(RemoteGitBranchFormat)
3274breezy.tests.per_branch.test_branch.TestBranchFormat.test_get_config_calls(BranchReferenceFormat)
3275breezy.tests.per_branch.test_branch.TestBranchFormat.test_get_config_calls(BzrBranchFormat4)
3276breezy.tests.per_branch.test_branch.TestBranchFormat.test_get_config_calls(BzrBranchFormat5)
3277breezy.tests.per_branch.test_branch.TestBranchFormat.test_get_config_calls(BzrBranchFormat6)
3278breezy.tests.per_branch.test_branch.TestBranchFormat.test_get_config_calls(BzrBranchFormat7)
3279breezy.tests.per_branch.test_branch.TestBranchFormat.test_get_config_calls(BzrBranchFormat8)
3280breezy.tests.per_branch.test_branch.TestBranchFormat.test_get_config_calls(LocalGitBranchFormat)
3281breezy.tests.per_branch.test_branch.TestBranchFormat.test_get_config_calls(RemoteBranchFormat-default)
3282breezy.tests.per_branch.test_branch.TestBranchFormat.test_get_config_calls(RemoteBranchFormat-v2)
3283breezy.tests.per_branch.test_branch.TestBranchFormat.test_get_config_calls(RemoteGitBranchFormat)
3284breezy.tests.per_branch.test_branch.TestBranchPushLocations.test_get_push_location_exact(BranchReferenceFormat)
3285breezy.tests.per_branch.test_branch.TestBranchPushLocations.test_get_push_location_exact(BzrBranchFormat4)
3286breezy.tests.per_branch.test_branch.TestBranchPushLocations.test_get_push_location_exact(BzrBranchFormat5)
3287breezy.tests.per_branch.test_branch.TestBranchPushLocations.test_get_push_location_exact(BzrBranchFormat6)
3288breezy.tests.per_branch.test_branch.TestBranchPushLocations.test_get_push_location_exact(BzrBranchFormat7)
3289breezy.tests.per_branch.test_branch.TestBranchPushLocations.test_get_push_location_exact(BzrBranchFormat8)
3290breezy.tests.per_branch.test_branch.TestBranchPushLocations.test_get_push_location_exact(LocalGitBranchFormat)
3291breezy.tests.per_branch.test_branch.TestBranchPushLocations.test_get_push_location_exact(RemoteBranchFormat-default)
3292breezy.tests.per_branch.test_branch.TestBranchPushLocations.test_get_push_location_exact(RemoteBranchFormat-v2)
3293breezy.tests.per_branch.test_branch.TestBranchPushLocations.test_get_push_location_exact(RemoteGitBranchFormat)
3294breezy.tests.per_branch.test_branch.TestBranchPushLocations.test_get_push_location_unset(BranchReferenceFormat)
3295breezy.tests.per_branch.test_branch.TestBranchPushLocations.test_get_push_location_unset(BzrBranchFormat4)
3296breezy.tests.per_branch.test_branch.TestBranchPushLocations.test_get_push_location_unset(BzrBranchFormat5)
3297breezy.tests.per_branch.test_branch.TestBranchPushLocations.test_get_push_location_unset(BzrBranchFormat6)
3298breezy.tests.per_branch.test_branch.TestBranchPushLocations.test_get_push_location_unset(BzrBranchFormat7)
3299breezy.tests.per_branch.test_branch.TestBranchPushLocations.test_get_push_location_unset(BzrBranchFormat8)
3300breezy.tests.per_branch.test_branch.TestBranchPushLocations.test_get_push_location_unset(LocalGitBranchFormat)
3301breezy.tests.per_branch.test_branch.TestBranchPushLocations.test_get_push_location_unset(RemoteBranchFormat-default)
3302breezy.tests.per_branch.test_branch.TestBranchPushLocations.test_get_push_location_unset(RemoteBranchFormat-v2)
3303breezy.tests.per_branch.test_branch.TestBranchPushLocations.test_get_push_location_unset(RemoteGitBranchFormat)
3304breezy.tests.per_branch.test_branch.TestBranchPushLocations.test_set_push_location(BranchReferenceFormat)
3305breezy.tests.per_branch.test_branch.TestBranchPushLocations.test_set_push_location(BzrBranchFormat4)
3306breezy.tests.per_branch.test_branch.TestBranchPushLocations.test_set_push_location(BzrBranchFormat5)
3307breezy.tests.per_branch.test_branch.TestBranchPushLocations.test_set_push_location(BzrBranchFormat6)
3308breezy.tests.per_branch.test_branch.TestBranchPushLocations.test_set_push_location(BzrBranchFormat7)
3309breezy.tests.per_branch.test_branch.TestBranchPushLocations.test_set_push_location(BzrBranchFormat8)
3310breezy.tests.per_branch.test_branch.TestBranchPushLocations.test_set_push_location(LocalGitBranchFormat)
3311breezy.tests.per_branch.test_branch.TestBranchPushLocations.test_set_push_location(RemoteBranchFormat-default)
3312breezy.tests.per_branch.test_branch.TestBranchPushLocations.test_set_push_location(RemoteBranchFormat-v2)
3313breezy.tests.per_branch.test_branch.TestBranchPushLocations.test_set_push_location(RemoteGitBranchFormat)
3314breezy.tests.per_branch.test_branch.TestBranch.test_bad_revision(BranchReferenceFormat)
3315breezy.tests.per_branch.test_branch.TestBranch.test_bad_revision(BzrBranchFormat4)
3316breezy.tests.per_branch.test_branch.TestBranch.test_bad_revision(BzrBranchFormat5)
3317breezy.tests.per_branch.test_branch.TestBranch.test_bad_revision(BzrBranchFormat6)
3318breezy.tests.per_branch.test_branch.TestBranch.test_bad_revision(BzrBranchFormat7)
3319breezy.tests.per_branch.test_branch.TestBranch.test_bad_revision(BzrBranchFormat8)
3320breezy.tests.per_branch.test_branch.TestBranch.test_bad_revision(LocalGitBranchFormat)
3321breezy.tests.per_branch.test_branch.TestBranch.test_bad_revision(RemoteBranchFormat-default)
3322breezy.tests.per_branch.test_branch.TestBranch.test_bad_revision(RemoteBranchFormat-v2)
3323breezy.tests.per_branch.test_branch.TestBranch.test_bad_revision(RemoteGitBranchFormat)
3324breezy.tests.per_branch.test_branch.TestBranch.test_clone_branch_nickname(BranchReferenceFormat)
3325breezy.tests.per_branch.test_branch.TestBranch.test_clone_branch_nickname(BzrBranchFormat4)
3326breezy.tests.per_branch.test_branch.TestBranch.test_clone_branch_nickname(BzrBranchFormat5)
3327breezy.tests.per_branch.test_branch.TestBranch.test_clone_branch_nickname(BzrBranchFormat6)
3328breezy.tests.per_branch.test_branch.TestBranch.test_clone_branch_nickname(BzrBranchFormat7)
3329breezy.tests.per_branch.test_branch.TestBranch.test_clone_branch_nickname(BzrBranchFormat8)
3330breezy.tests.per_branch.test_branch.TestBranch.test_clone_branch_nickname(LocalGitBranchFormat)
3331breezy.tests.per_branch.test_branch.TestBranch.test_clone_branch_nickname(RemoteBranchFormat-default)
3332breezy.tests.per_branch.test_branch.TestBranch.test_clone_branch_nickname(RemoteBranchFormat-v2)
3333breezy.tests.per_branch.test_branch.TestBranch.test_clone_branch_nickname(RemoteGitBranchFormat)
3334breezy.tests.per_branch.test_branch.TestBranch.test_clone_branch_parent(BranchReferenceFormat)
3335breezy.tests.per_branch.test_branch.TestBranch.test_clone_branch_parent(BzrBranchFormat4)
3336breezy.tests.per_branch.test_branch.TestBranch.test_clone_branch_parent(BzrBranchFormat5)
3337breezy.tests.per_branch.test_branch.TestBranch.test_clone_branch_parent(BzrBranchFormat6)
3338breezy.tests.per_branch.test_branch.TestBranch.test_clone_branch_parent(BzrBranchFormat7)
3339breezy.tests.per_branch.test_branch.TestBranch.test_clone_branch_parent(BzrBranchFormat8)
3340breezy.tests.per_branch.test_branch.TestBranch.test_clone_branch_parent(LocalGitBranchFormat)
3341breezy.tests.per_branch.test_branch.TestBranch.test_clone_branch_parent(RemoteBranchFormat-default)
3342breezy.tests.per_branch.test_branch.TestBranch.test_clone_branch_parent(RemoteBranchFormat-v2)
3343breezy.tests.per_branch.test_branch.TestBranch.test_clone_branch_parent(RemoteGitBranchFormat)
3344breezy.tests.per_branch.test_branch.TestBranch.test_clone_partial(BranchReferenceFormat)
3345breezy.tests.per_branch.test_branch.TestBranch.test_clone_partial(BzrBranchFormat4)
3346breezy.tests.per_branch.test_branch.TestBranch.test_clone_partial(BzrBranchFormat5)
3347breezy.tests.per_branch.test_branch.TestBranch.test_clone_partial(BzrBranchFormat6)
3348breezy.tests.per_branch.test_branch.TestBranch.test_clone_partial(BzrBranchFormat7)
3349breezy.tests.per_branch.test_branch.TestBranch.test_clone_partial(BzrBranchFormat8)
3350breezy.tests.per_branch.test_branch.TestBranch.test_clone_partial(LocalGitBranchFormat)
3351breezy.tests.per_branch.test_branch.TestBranch.test_clone_partial(RemoteBranchFormat-default)
3352breezy.tests.per_branch.test_branch.TestBranch.test_clone_partial(RemoteBranchFormat-v2)
3353breezy.tests.per_branch.test_branch.TestBranch.test_clone_partial(RemoteGitBranchFormat)
3354breezy.tests.per_branch.test_branch.TestBranch.test_commit_nicks(BranchReferenceFormat)
3355breezy.tests.per_branch.test_branch.TestBranch.test_commit_nicks(BzrBranchFormat4)
3356breezy.tests.per_branch.test_branch.TestBranch.test_commit_nicks(BzrBranchFormat5)
3357breezy.tests.per_branch.test_branch.TestBranch.test_commit_nicks(BzrBranchFormat6)
3358breezy.tests.per_branch.test_branch.TestBranch.test_commit_nicks(BzrBranchFormat7)
3359breezy.tests.per_branch.test_branch.TestBranch.test_commit_nicks(BzrBranchFormat8)
3360breezy.tests.per_branch.test_branch.TestBranch.test_commit_nicks(LocalGitBranchFormat)
3361breezy.tests.per_branch.test_branch.TestBranch.test_commit_nicks(RemoteBranchFormat-default)
3362breezy.tests.per_branch.test_branch.TestBranch.test_commit_nicks(RemoteBranchFormat-v2)
3363breezy.tests.per_branch.test_branch.TestBranch.test_commit_nicks(RemoteGitBranchFormat)
3364breezy.tests.per_branch.test_branch.TestBranch.test_create_anonymous_heavyweight_checkout(BranchReferenceFormat)
3365breezy.tests.per_branch.test_branch.TestBranch.test_create_anonymous_heavyweight_checkout(BzrBranchFormat4)
3366breezy.tests.per_branch.test_branch.TestBranch.test_create_anonymous_heavyweight_checkout(BzrBranchFormat5)
3367breezy.tests.per_branch.test_branch.TestBranch.test_create_anonymous_heavyweight_checkout(BzrBranchFormat6)
3368breezy.tests.per_branch.test_branch.TestBranch.test_create_anonymous_heavyweight_checkout(BzrBranchFormat7)
3369breezy.tests.per_branch.test_branch.TestBranch.test_create_anonymous_heavyweight_checkout(BzrBranchFormat8)
3370breezy.tests.per_branch.test_branch.TestBranch.test_create_anonymous_heavyweight_checkout(LocalGitBranchFormat)
3371breezy.tests.per_branch.test_branch.TestBranch.test_create_anonymous_heavyweight_checkout(RemoteBranchFormat-default)
3372breezy.tests.per_branch.test_branch.TestBranch.test_create_anonymous_heavyweight_checkout(RemoteBranchFormat-v2)
3373breezy.tests.per_branch.test_branch.TestBranch.test_create_anonymous_heavyweight_checkout(RemoteGitBranchFormat)
3374breezy.tests.per_branch.test_branch.TestBranch.test_create_anonymous_lightweight_checkout(BranchReferenceFormat)
3375breezy.tests.per_branch.test_branch.TestBranch.test_create_anonymous_lightweight_checkout(BzrBranchFormat4)
3376breezy.tests.per_branch.test_branch.TestBranch.test_create_anonymous_lightweight_checkout(BzrBranchFormat5)
3377breezy.tests.per_branch.test_branch.TestBranch.test_create_anonymous_lightweight_checkout(BzrBranchFormat6)
3378breezy.tests.per_branch.test_branch.TestBranch.test_create_anonymous_lightweight_checkout(BzrBranchFormat7)
3379breezy.tests.per_branch.test_branch.TestBranch.test_create_anonymous_lightweight_checkout(BzrBranchFormat8)
3380breezy.tests.per_branch.test_branch.TestBranch.test_create_anonymous_lightweight_checkout(LocalGitBranchFormat)
3381breezy.tests.per_branch.test_branch.TestBranch.test_create_anonymous_lightweight_checkout(RemoteBranchFormat-default)
3382breezy.tests.per_branch.test_branch.TestBranch.test_create_anonymous_lightweight_checkout(RemoteBranchFormat-v2)
3383breezy.tests.per_branch.test_branch.TestBranch.test_create_anonymous_lightweight_checkout(RemoteGitBranchFormat)
3384breezy.tests.per_branch.test_branch.TestBranch.test_create_append_revisions_only(BranchReferenceFormat)
3385breezy.tests.per_branch.test_branch.TestBranch.test_create_append_revisions_only(BzrBranchFormat4)
3386breezy.tests.per_branch.test_branch.TestBranch.test_create_append_revisions_only(BzrBranchFormat5)
3387breezy.tests.per_branch.test_branch.TestBranch.test_create_append_revisions_only(BzrBranchFormat6)
3388breezy.tests.per_branch.test_branch.TestBranch.test_create_append_revisions_only(BzrBranchFormat7)
3389breezy.tests.per_branch.test_branch.TestBranch.test_create_append_revisions_only(BzrBranchFormat8)
3390breezy.tests.per_branch.test_branch.TestBranch.test_create_append_revisions_only(LocalGitBranchFormat)
3391breezy.tests.per_branch.test_branch.TestBranch.test_create_append_revisions_only(RemoteBranchFormat-default)
3392breezy.tests.per_branch.test_branch.TestBranch.test_create_append_revisions_only(RemoteBranchFormat-v2)
3393breezy.tests.per_branch.test_branch.TestBranch.test_create_append_revisions_only(RemoteGitBranchFormat)
3394breezy.tests.per_branch.test_branch.TestBranch.test_create_checkout(BranchReferenceFormat)
3395breezy.tests.per_branch.test_branch.TestBranch.test_create_checkout(BzrBranchFormat4)
3396breezy.tests.per_branch.test_branch.TestBranch.test_create_checkout(BzrBranchFormat5)
3397breezy.tests.per_branch.test_branch.TestBranch.test_create_checkout(BzrBranchFormat6)
3398breezy.tests.per_branch.test_branch.TestBranch.test_create_checkout(BzrBranchFormat7)
3399breezy.tests.per_branch.test_branch.TestBranch.test_create_checkout(BzrBranchFormat8)
3400breezy.tests.per_branch.test_branch.TestBranch.test_create_checkout(LocalGitBranchFormat)
3401breezy.tests.per_branch.test_branch.TestBranch.test_create_checkout(RemoteBranchFormat-default)
3402breezy.tests.per_branch.test_branch.TestBranch.test_create_checkout(RemoteBranchFormat-v2)
3403breezy.tests.per_branch.test_branch.TestBranch.test_create_checkout(RemoteGitBranchFormat)
3404breezy.tests.per_branch.test_branch.TestBranch.test_create_colocated(BranchReferenceFormat)
3405breezy.tests.per_branch.test_branch.TestBranch.test_create_colocated(BzrBranchFormat4)
3406breezy.tests.per_branch.test_branch.TestBranch.test_create_colocated(BzrBranchFormat5)
3407breezy.tests.per_branch.test_branch.TestBranch.test_create_colocated(BzrBranchFormat6)
3408breezy.tests.per_branch.test_branch.TestBranch.test_create_colocated(BzrBranchFormat7)
3409breezy.tests.per_branch.test_branch.TestBranch.test_create_colocated(BzrBranchFormat8)
3410breezy.tests.per_branch.test_branch.TestBranch.test_create_colocated(LocalGitBranchFormat)
3411breezy.tests.per_branch.test_branch.TestBranch.test_create_colocated(RemoteBranchFormat-default)
3412breezy.tests.per_branch.test_branch.TestBranch.test_create_colocated(RemoteBranchFormat-v2)
3413breezy.tests.per_branch.test_branch.TestBranch.test_create_colocated(RemoteGitBranchFormat)
3414breezy.tests.per_branch.test_branch.TestBranch.test_create_memorytree(BranchReferenceFormat)
3415breezy.tests.per_branch.test_branch.TestBranch.test_create_memorytree(BzrBranchFormat4)
3416breezy.tests.per_branch.test_branch.TestBranch.test_create_memorytree(BzrBranchFormat5)
3417breezy.tests.per_branch.test_branch.TestBranch.test_create_memorytree(BzrBranchFormat6)
3418breezy.tests.per_branch.test_branch.TestBranch.test_create_memorytree(BzrBranchFormat7)
3419breezy.tests.per_branch.test_branch.TestBranch.test_create_memorytree(BzrBranchFormat8)
3420breezy.tests.per_branch.test_branch.TestBranch.test_create_memorytree(LocalGitBranchFormat)
3421breezy.tests.per_branch.test_branch.TestBranch.test_create_memorytree(RemoteBranchFormat-default)
3422breezy.tests.per_branch.test_branch.TestBranch.test_create_memorytree(RemoteBranchFormat-v2)
3423breezy.tests.per_branch.test_branch.TestBranch.test_create_memorytree(RemoteGitBranchFormat)
3424breezy.tests.per_branch.test_branch.TestBranch.test_create_open_branch_uses_repository(BranchReferenceFormat)
3425breezy.tests.per_branch.test_branch.TestBranch.test_create_open_branch_uses_repository(BzrBranchFormat4)
3426breezy.tests.per_branch.test_branch.TestBranch.test_create_open_branch_uses_repository(BzrBranchFormat5)
3427breezy.tests.per_branch.test_branch.TestBranch.test_create_open_branch_uses_repository(BzrBranchFormat6)
3428breezy.tests.per_branch.test_branch.TestBranch.test_create_open_branch_uses_repository(BzrBranchFormat7)
3429breezy.tests.per_branch.test_branch.TestBranch.test_create_open_branch_uses_repository(BzrBranchFormat8)
3430breezy.tests.per_branch.test_branch.TestBranch.test_create_open_branch_uses_repository(LocalGitBranchFormat)
3431breezy.tests.per_branch.test_branch.TestBranch.test_create_open_branch_uses_repository(RemoteBranchFormat-default)
3432breezy.tests.per_branch.test_branch.TestBranch.test_create_open_branch_uses_repository(RemoteBranchFormat-v2)
3433breezy.tests.per_branch.test_branch.TestBranch.test_create_open_branch_uses_repository(RemoteGitBranchFormat)
3434breezy.tests.per_branch.test_branch.TestBranch.test_create_tree_with_merge(BranchReferenceFormat)
3435breezy.tests.per_branch.test_branch.TestBranch.test_create_tree_with_merge(BzrBranchFormat4)
3436breezy.tests.per_branch.test_branch.TestBranch.test_create_tree_with_merge(BzrBranchFormat5)
3437breezy.tests.per_branch.test_branch.TestBranch.test_create_tree_with_merge(BzrBranchFormat6)
3438breezy.tests.per_branch.test_branch.TestBranch.test_create_tree_with_merge(BzrBranchFormat7)
3439breezy.tests.per_branch.test_branch.TestBranch.test_create_tree_with_merge(BzrBranchFormat8)
3440breezy.tests.per_branch.test_branch.TestBranch.test_create_tree_with_merge(LocalGitBranchFormat)
3441breezy.tests.per_branch.test_branch.TestBranch.test_create_tree_with_merge(RemoteBranchFormat-default)
3442breezy.tests.per_branch.test_branch.TestBranch.test_create_tree_with_merge(RemoteBranchFormat-v2)
3443breezy.tests.per_branch.test_branch.TestBranch.test_create_tree_with_merge(RemoteGitBranchFormat)
3444breezy.tests.per_branch.test_branch.TestBranch.test_fetch_revisions(BranchReferenceFormat)
3445breezy.tests.per_branch.test_branch.TestBranch.test_fetch_revisions(BzrBranchFormat4)
3446breezy.tests.per_branch.test_branch.TestBranch.test_fetch_revisions(BzrBranchFormat5)
3447breezy.tests.per_branch.test_branch.TestBranch.test_fetch_revisions(BzrBranchFormat6)
3448breezy.tests.per_branch.test_branch.TestBranch.test_fetch_revisions(BzrBranchFormat7)
3449breezy.tests.per_branch.test_branch.TestBranch.test_fetch_revisions(BzrBranchFormat8)
3450breezy.tests.per_branch.test_branch.TestBranch.test_fetch_revisions(LocalGitBranchFormat)
3451breezy.tests.per_branch.test_branch.TestBranch.test_fetch_revisions(RemoteBranchFormat-default)
3452breezy.tests.per_branch.test_branch.TestBranch.test_fetch_revisions(RemoteBranchFormat-v2)
3453breezy.tests.per_branch.test_branch.TestBranch.test_fetch_revisions(RemoteGitBranchFormat)
3454breezy.tests.per_branch.test_branch.TestBranch.test_format_description(BranchReferenceFormat)
3455breezy.tests.per_branch.test_branch.TestBranch.test_format_description(BzrBranchFormat4)
3456breezy.tests.per_branch.test_branch.TestBranch.test_format_description(BzrBranchFormat5)
3457breezy.tests.per_branch.test_branch.TestBranch.test_format_description(BzrBranchFormat6)
3458breezy.tests.per_branch.test_branch.TestBranch.test_format_description(BzrBranchFormat7)
3459breezy.tests.per_branch.test_branch.TestBranch.test_format_description(BzrBranchFormat8)
3460breezy.tests.per_branch.test_branch.TestBranch.test_format_description(LocalGitBranchFormat)
3461breezy.tests.per_branch.test_branch.TestBranch.test_format_description(RemoteBranchFormat-default)
3462breezy.tests.per_branch.test_branch.TestBranch.test_format_description(RemoteBranchFormat-v2)
3463breezy.tests.per_branch.test_branch.TestBranch.test_format_description(RemoteGitBranchFormat)
3464breezy.tests.per_branch.test_branch.TestBranch.test_generate_revision_history(BranchReferenceFormat)
3465breezy.tests.per_branch.test_branch.TestBranch.test_generate_revision_history(BzrBranchFormat4)
3466breezy.tests.per_branch.test_branch.TestBranch.test_generate_revision_history(BzrBranchFormat5)
3467breezy.tests.per_branch.test_branch.TestBranch.test_generate_revision_history(BzrBranchFormat6)
3468breezy.tests.per_branch.test_branch.TestBranch.test_generate_revision_history(BzrBranchFormat7)
3469breezy.tests.per_branch.test_branch.TestBranch.test_generate_revision_history(BzrBranchFormat8)
3470breezy.tests.per_branch.test_branch.TestBranch.test_generate_revision_history(LocalGitBranchFormat)
3471breezy.tests.per_branch.test_branch.TestBranch.test_generate_revision_history_NULL_REVISION(BranchReferenceFormat)
3472breezy.tests.per_branch.test_branch.TestBranch.test_generate_revision_history_NULL_REVISION(BzrBranchFormat4)
3473breezy.tests.per_branch.test_branch.TestBranch.test_generate_revision_history_NULL_REVISION(BzrBranchFormat5)
3474breezy.tests.per_branch.test_branch.TestBranch.test_generate_revision_history_NULL_REVISION(BzrBranchFormat6)
3475breezy.tests.per_branch.test_branch.TestBranch.test_generate_revision_history_NULL_REVISION(BzrBranchFormat7)
3476breezy.tests.per_branch.test_branch.TestBranch.test_generate_revision_history_NULL_REVISION(BzrBranchFormat8)
3477breezy.tests.per_branch.test_branch.TestBranch.test_generate_revision_history_NULL_REVISION(LocalGitBranchFormat)
3478breezy.tests.per_branch.test_branch.TestBranch.test_generate_revision_history_NULL_REVISION(RemoteBranchFormat-default)
3479breezy.tests.per_branch.test_branch.TestBranch.test_generate_revision_history_NULL_REVISION(RemoteBranchFormat-v2)
3480breezy.tests.per_branch.test_branch.TestBranch.test_generate_revision_history_NULL_REVISION(RemoteGitBranchFormat)
3481breezy.tests.per_branch.test_branch.TestBranch.test_generate_revision_history(RemoteBranchFormat-default)
3482breezy.tests.per_branch.test_branch.TestBranch.test_generate_revision_history(RemoteBranchFormat-v2)
3483breezy.tests.per_branch.test_branch.TestBranch.test_generate_revision_history(RemoteGitBranchFormat)
3484breezy.tests.per_branch.test_branch.TestBranch.test_get_commit_builder(BranchReferenceFormat)
3485breezy.tests.per_branch.test_branch.TestBranch.test_get_commit_builder(BzrBranchFormat4)
3486breezy.tests.per_branch.test_branch.TestBranch.test_get_commit_builder(BzrBranchFormat5)
3487breezy.tests.per_branch.test_branch.TestBranch.test_get_commit_builder(BzrBranchFormat6)
3488breezy.tests.per_branch.test_branch.TestBranch.test_get_commit_builder(BzrBranchFormat7)
3489breezy.tests.per_branch.test_branch.TestBranch.test_get_commit_builder(BzrBranchFormat8)
3490breezy.tests.per_branch.test_branch.TestBranch.test_get_commit_builder(LocalGitBranchFormat)
3491breezy.tests.per_branch.test_branch.TestBranch.test_get_commit_builder(RemoteBranchFormat-default)
3492breezy.tests.per_branch.test_branch.TestBranch.test_get_commit_builder(RemoteBranchFormat-v2)
3493breezy.tests.per_branch.test_branch.TestBranch.test_get_commit_builder(RemoteGitBranchFormat)
3494breezy.tests.per_branch.test_branch.TestBranch.test_get_set_append_revisions_only(BranchReferenceFormat)
3495breezy.tests.per_branch.test_branch.TestBranch.test_get_set_append_revisions_only(BzrBranchFormat4)
3496breezy.tests.per_branch.test_branch.TestBranch.test_get_set_append_revisions_only(BzrBranchFormat5)
3497breezy.tests.per_branch.test_branch.TestBranch.test_get_set_append_revisions_only(BzrBranchFormat6)
3498breezy.tests.per_branch.test_branch.TestBranch.test_get_set_append_revisions_only(BzrBranchFormat7)
3499breezy.tests.per_branch.test_branch.TestBranch.test_get_set_append_revisions_only(BzrBranchFormat8)
3500breezy.tests.per_branch.test_branch.TestBranch.test_get_set_append_revisions_only(LocalGitBranchFormat)
3501breezy.tests.per_branch.test_branch.TestBranch.test_get_set_append_revisions_only(RemoteBranchFormat-default)
3502breezy.tests.per_branch.test_branch.TestBranch.test_get_set_append_revisions_only(RemoteBranchFormat-v2)
3503breezy.tests.per_branch.test_branch.TestBranch.test_get_set_append_revisions_only(RemoteGitBranchFormat)
3504breezy.tests.per_branch.test_branch.TestBranch.test_heads_to_fetch(BranchReferenceFormat)
3505breezy.tests.per_branch.test_branch.TestBranch.test_heads_to_fetch(BzrBranchFormat4)
3506breezy.tests.per_branch.test_branch.TestBranch.test_heads_to_fetch(BzrBranchFormat5)
3507breezy.tests.per_branch.test_branch.TestBranch.test_heads_to_fetch(BzrBranchFormat6)
3508breezy.tests.per_branch.test_branch.TestBranch.test_heads_to_fetch(BzrBranchFormat7)
3509breezy.tests.per_branch.test_branch.TestBranch.test_heads_to_fetch(BzrBranchFormat8)
3510breezy.tests.per_branch.test_branch.TestBranch.test_heads_to_fetch(LocalGitBranchFormat)
3511breezy.tests.per_branch.test_branch.TestBranch.test_heads_to_fetch_not_null_revision(BranchReferenceFormat)
3512breezy.tests.per_branch.test_branch.TestBranch.test_heads_to_fetch_not_null_revision(BzrBranchFormat4)
3513breezy.tests.per_branch.test_branch.TestBranch.test_heads_to_fetch_not_null_revision(BzrBranchFormat5)
3514breezy.tests.per_branch.test_branch.TestBranch.test_heads_to_fetch_not_null_revision(BzrBranchFormat6)
3515breezy.tests.per_branch.test_branch.TestBranch.test_heads_to_fetch_not_null_revision(BzrBranchFormat7)
3516breezy.tests.per_branch.test_branch.TestBranch.test_heads_to_fetch_not_null_revision(BzrBranchFormat8)
3517breezy.tests.per_branch.test_branch.TestBranch.test_heads_to_fetch_not_null_revision(LocalGitBranchFormat)
3518breezy.tests.per_branch.test_branch.TestBranch.test_heads_to_fetch_not_null_revision(RemoteBranchFormat-default)
3519breezy.tests.per_branch.test_branch.TestBranch.test_heads_to_fetch_not_null_revision(RemoteBranchFormat-v2)
3520breezy.tests.per_branch.test_branch.TestBranch.test_heads_to_fetch_not_null_revision(RemoteGitBranchFormat)
3521breezy.tests.per_branch.test_branch.TestBranch.test_heads_to_fetch(RemoteBranchFormat-default)
3522breezy.tests.per_branch.test_branch.TestBranch.test_heads_to_fetch(RemoteBranchFormat-v2)
3523breezy.tests.per_branch.test_branch.TestBranch.test_heads_to_fetch(RemoteGitBranchFormat)
3524breezy.tests.per_branch.test_branch.TestBranch.test_nicks(BranchReferenceFormat)
3525breezy.tests.per_branch.test_branch.TestBranch.test_nicks(BzrBranchFormat4)
3526breezy.tests.per_branch.test_branch.TestBranch.test_nicks(BzrBranchFormat5)
3527breezy.tests.per_branch.test_branch.TestBranch.test_nicks(BzrBranchFormat6)
3528breezy.tests.per_branch.test_branch.TestBranch.test_nicks(BzrBranchFormat7)
3529breezy.tests.per_branch.test_branch.TestBranch.test_nicks(BzrBranchFormat8)
3530breezy.tests.per_branch.test_branch.TestBranch.test_nicks_bzr(BranchReferenceFormat)
3531breezy.tests.per_branch.test_branch.TestBranch.test_nicks_bzr(BzrBranchFormat4)
3532breezy.tests.per_branch.test_branch.TestBranch.test_nicks_bzr(BzrBranchFormat5)
3533breezy.tests.per_branch.test_branch.TestBranch.test_nicks_bzr(BzrBranchFormat6)
3534breezy.tests.per_branch.test_branch.TestBranch.test_nicks_bzr(BzrBranchFormat7)
3535breezy.tests.per_branch.test_branch.TestBranch.test_nicks_bzr(BzrBranchFormat8)
3536breezy.tests.per_branch.test_branch.TestBranch.test_nicks_bzr(LocalGitBranchFormat)
3537breezy.tests.per_branch.test_branch.TestBranch.test_nicks_bzr(RemoteBranchFormat-default)
3538breezy.tests.per_branch.test_branch.TestBranch.test_nicks_bzr(RemoteBranchFormat-v2)
3539breezy.tests.per_branch.test_branch.TestBranch.test_nicks_bzr(RemoteGitBranchFormat)
3540breezy.tests.per_branch.test_branch.TestBranch.test_nicks(LocalGitBranchFormat)
3541breezy.tests.per_branch.test_branch.TestBranch.test_nicks(RemoteBranchFormat-default)
3542breezy.tests.per_branch.test_branch.TestBranch.test_nicks(RemoteBranchFormat-v2)
3543breezy.tests.per_branch.test_branch.TestBranch.test_nicks(RemoteGitBranchFormat)
3544breezy.tests.per_branch.test_branch.TestBranch.test_public_branch(BranchReferenceFormat)
3545breezy.tests.per_branch.test_branch.TestBranch.test_public_branch(BzrBranchFormat4)
3546breezy.tests.per_branch.test_branch.TestBranch.test_public_branch(BzrBranchFormat5)
3547breezy.tests.per_branch.test_branch.TestBranch.test_public_branch(BzrBranchFormat6)
3548breezy.tests.per_branch.test_branch.TestBranch.test_public_branch(BzrBranchFormat7)
3549breezy.tests.per_branch.test_branch.TestBranch.test_public_branch(BzrBranchFormat8)
3550breezy.tests.per_branch.test_branch.TestBranch.test_public_branch(LocalGitBranchFormat)
3551breezy.tests.per_branch.test_branch.TestBranch.test_public_branch(RemoteBranchFormat-default)
3552breezy.tests.per_branch.test_branch.TestBranch.test_public_branch(RemoteBranchFormat-v2)
3553breezy.tests.per_branch.test_branch.TestBranch.test_public_branch(RemoteGitBranchFormat)
3554breezy.tests.per_branch.test_branch.TestBranch.test_record_initial_ghost(BranchReferenceFormat)
3555breezy.tests.per_branch.test_branch.TestBranch.test_record_initial_ghost(BzrBranchFormat4)
3556breezy.tests.per_branch.test_branch.TestBranch.test_record_initial_ghost(BzrBranchFormat5)
3557breezy.tests.per_branch.test_branch.TestBranch.test_record_initial_ghost(BzrBranchFormat6)
3558breezy.tests.per_branch.test_branch.TestBranch.test_record_initial_ghost(BzrBranchFormat7)
3559breezy.tests.per_branch.test_branch.TestBranch.test_record_initial_ghost(BzrBranchFormat8)
3560breezy.tests.per_branch.test_branch.TestBranch.test_record_initial_ghost(LocalGitBranchFormat)
3561breezy.tests.per_branch.test_branch.TestBranch.test_record_initial_ghost(RemoteBranchFormat-default)
3562breezy.tests.per_branch.test_branch.TestBranch.test_record_initial_ghost(RemoteBranchFormat-v2)
3563breezy.tests.per_branch.test_branch.TestBranch.test_record_initial_ghost(RemoteGitBranchFormat)
3564breezy.tests.per_branch.test_branch.TestBranch.test_record_two_ghosts(BranchReferenceFormat)
3565breezy.tests.per_branch.test_branch.TestBranch.test_record_two_ghosts(BzrBranchFormat4)
3566breezy.tests.per_branch.test_branch.TestBranch.test_record_two_ghosts(BzrBranchFormat5)
3567breezy.tests.per_branch.test_branch.TestBranch.test_record_two_ghosts(BzrBranchFormat6)
3568breezy.tests.per_branch.test_branch.TestBranch.test_record_two_ghosts(BzrBranchFormat7)
3569breezy.tests.per_branch.test_branch.TestBranch.test_record_two_ghosts(BzrBranchFormat8)
3570breezy.tests.per_branch.test_branch.TestBranch.test_record_two_ghosts(LocalGitBranchFormat)
3571breezy.tests.per_branch.test_branch.TestBranch.test_record_two_ghosts(RemoteBranchFormat-default)
3572breezy.tests.per_branch.test_branch.TestBranch.test_record_two_ghosts(RemoteBranchFormat-v2)
3573breezy.tests.per_branch.test_branch.TestBranch.test_record_two_ghosts(RemoteGitBranchFormat)
3574breezy.tests.per_branch.test_branch.TestBranch.test_revision_ids_are_utf8(BranchReferenceFormat)
3575breezy.tests.per_branch.test_branch.TestBranch.test_revision_ids_are_utf8(BzrBranchFormat4)
3576breezy.tests.per_branch.test_branch.TestBranch.test_revision_ids_are_utf8(BzrBranchFormat5)
3577breezy.tests.per_branch.test_branch.TestBranch.test_revision_ids_are_utf8(BzrBranchFormat6)
3578breezy.tests.per_branch.test_branch.TestBranch.test_revision_ids_are_utf8(BzrBranchFormat7)
3579breezy.tests.per_branch.test_branch.TestBranch.test_revision_ids_are_utf8(BzrBranchFormat8)
3580breezy.tests.per_branch.test_branch.TestBranch.test_revision_ids_are_utf8(LocalGitBranchFormat)
3581breezy.tests.per_branch.test_branch.TestBranch.test_revision_ids_are_utf8(RemoteBranchFormat-default)
3582breezy.tests.per_branch.test_branch.TestBranch.test_revision_ids_are_utf8(RemoteBranchFormat-v2)
3583breezy.tests.per_branch.test_branch.TestBranch.test_revision_ids_are_utf8(RemoteGitBranchFormat)
3584breezy.tests.per_branch.test_branch.TestBranch.test_submit_branch(BranchReferenceFormat)
3585breezy.tests.per_branch.test_branch.TestBranch.test_submit_branch(BzrBranchFormat4)
3586breezy.tests.per_branch.test_branch.TestBranch.test_submit_branch(BzrBranchFormat5)
3587breezy.tests.per_branch.test_branch.TestBranch.test_submit_branch(BzrBranchFormat6)
3588breezy.tests.per_branch.test_branch.TestBranch.test_submit_branch(BzrBranchFormat7)
3589breezy.tests.per_branch.test_branch.TestBranch.test_submit_branch(BzrBranchFormat8)
3590breezy.tests.per_branch.test_branch.TestBranch.test_submit_branch(LocalGitBranchFormat)
3591breezy.tests.per_branch.test_branch.TestBranch.test_submit_branch(RemoteBranchFormat-default)
3592breezy.tests.per_branch.test_branch.TestBranch.test_submit_branch(RemoteBranchFormat-v2)
3593breezy.tests.per_branch.test_branch.TestBranch.test_submit_branch(RemoteGitBranchFormat)
3594breezy.tests.per_branch.test_branch.TestChildSubmitFormats.test_get_child_submit_format(BranchReferenceFormat)
3595breezy.tests.per_branch.test_branch.TestChildSubmitFormats.test_get_child_submit_format(BzrBranchFormat4)
3596breezy.tests.per_branch.test_branch.TestChildSubmitFormats.test_get_child_submit_format(BzrBranchFormat5)
3597breezy.tests.per_branch.test_branch.TestChildSubmitFormats.test_get_child_submit_format(BzrBranchFormat6)
3598breezy.tests.per_branch.test_branch.TestChildSubmitFormats.test_get_child_submit_format(BzrBranchFormat7)
3599breezy.tests.per_branch.test_branch.TestChildSubmitFormats.test_get_child_submit_format(BzrBranchFormat8)
3600breezy.tests.per_branch.test_branch.TestChildSubmitFormats.test_get_child_submit_format_default(BranchReferenceFormat)
3601breezy.tests.per_branch.test_branch.TestChildSubmitFormats.test_get_child_submit_format_default(BzrBranchFormat4)
3602breezy.tests.per_branch.test_branch.TestChildSubmitFormats.test_get_child_submit_format_default(BzrBranchFormat5)
3603breezy.tests.per_branch.test_branch.TestChildSubmitFormats.test_get_child_submit_format_default(BzrBranchFormat6)
3604breezy.tests.per_branch.test_branch.TestChildSubmitFormats.test_get_child_submit_format_default(BzrBranchFormat7)
3605breezy.tests.per_branch.test_branch.TestChildSubmitFormats.test_get_child_submit_format_default(BzrBranchFormat8)
3606breezy.tests.per_branch.test_branch.TestChildSubmitFormats.test_get_child_submit_format_default(LocalGitBranchFormat)
3607breezy.tests.per_branch.test_branch.TestChildSubmitFormats.test_get_child_submit_format_default(RemoteBranchFormat-default)
3608breezy.tests.per_branch.test_branch.TestChildSubmitFormats.test_get_child_submit_format_default(RemoteBranchFormat-v2)
3609breezy.tests.per_branch.test_branch.TestChildSubmitFormats.test_get_child_submit_format_default(RemoteGitBranchFormat)
3610breezy.tests.per_branch.test_branch.TestChildSubmitFormats.test_get_child_submit_format(LocalGitBranchFormat)
3611breezy.tests.per_branch.test_branch.TestChildSubmitFormats.test_get_child_submit_format(RemoteBranchFormat-default)
3612breezy.tests.per_branch.test_branch.TestChildSubmitFormats.test_get_child_submit_format(RemoteBranchFormat-v2)
3613breezy.tests.per_branch.test_branch.TestChildSubmitFormats.test_get_child_submit_format(RemoteGitBranchFormat)
3614breezy.tests.per_branch.test_branch.TestFormat.test_format_initialize_find_open(BranchReferenceFormat)
3615breezy.tests.per_branch.test_branch.TestFormat.test_format_initialize_find_open(BzrBranchFormat4)
3616breezy.tests.per_branch.test_branch.TestFormat.test_format_initialize_find_open(BzrBranchFormat5)
3617breezy.tests.per_branch.test_branch.TestFormat.test_format_initialize_find_open(BzrBranchFormat6)
3618breezy.tests.per_branch.test_branch.TestFormat.test_format_initialize_find_open(BzrBranchFormat7)
3619breezy.tests.per_branch.test_branch.TestFormat.test_format_initialize_find_open(BzrBranchFormat8)
3620breezy.tests.per_branch.test_branch.TestFormat.test_format_initialize_find_open(LocalGitBranchFormat)
3621breezy.tests.per_branch.test_branch.TestFormat.test_format_initialize_find_open(RemoteBranchFormat-default)
3622breezy.tests.per_branch.test_branch.TestFormat.test_format_initialize_find_open(RemoteBranchFormat-v2)
3623breezy.tests.per_branch.test_branch.TestFormat.test_format_initialize_find_open(RemoteGitBranchFormat)
3624breezy.tests.per_branch.test_branch.TestFormat.test_get_reference(BranchReferenceFormat)
3625breezy.tests.per_branch.test_branch.TestFormat.test_get_reference(BzrBranchFormat4)
3626breezy.tests.per_branch.test_branch.TestFormat.test_get_reference(BzrBranchFormat5)
3627breezy.tests.per_branch.test_branch.TestFormat.test_get_reference(BzrBranchFormat6)
3628breezy.tests.per_branch.test_branch.TestFormat.test_get_reference(BzrBranchFormat7)
3629breezy.tests.per_branch.test_branch.TestFormat.test_get_reference(BzrBranchFormat8)
3630breezy.tests.per_branch.test_branch.TestFormat.test_get_reference(LocalGitBranchFormat)
3631breezy.tests.per_branch.test_branch.TestFormat.test_get_reference(RemoteBranchFormat-default)
3632breezy.tests.per_branch.test_branch.TestFormat.test_get_reference(RemoteBranchFormat-v2)
3633breezy.tests.per_branch.test_branch.TestFormat.test_get_reference(RemoteGitBranchFormat)
3634breezy.tests.per_branch.test_branch.TestFormat.test_set_reference(BranchReferenceFormat)
3635breezy.tests.per_branch.test_branch.TestFormat.test_set_reference(BzrBranchFormat4)
3636breezy.tests.per_branch.test_branch.TestFormat.test_set_reference(BzrBranchFormat5)
3637breezy.tests.per_branch.test_branch.TestFormat.test_set_reference(BzrBranchFormat6)
3638breezy.tests.per_branch.test_branch.TestFormat.test_set_reference(BzrBranchFormat7)
3639breezy.tests.per_branch.test_branch.TestFormat.test_set_reference(BzrBranchFormat8)
3640breezy.tests.per_branch.test_branch.TestFormat.test_set_reference(LocalGitBranchFormat)
3641breezy.tests.per_branch.test_branch.TestFormat.test_set_reference(RemoteBranchFormat-default)
3642breezy.tests.per_branch.test_branch.TestFormat.test_set_reference(RemoteBranchFormat-v2)
3643breezy.tests.per_branch.test_branch.TestFormat.test_set_reference(RemoteGitBranchFormat)
3644breezy.tests.per_branch.test_branch.TestIgnoreFallbacksParameter.test_fallbacks_are_opened(BranchReferenceFormat)
3645breezy.tests.per_branch.test_branch.TestIgnoreFallbacksParameter.test_fallbacks_are_opened(BzrBranchFormat4)
3646breezy.tests.per_branch.test_branch.TestIgnoreFallbacksParameter.test_fallbacks_are_opened(BzrBranchFormat5)
3647breezy.tests.per_branch.test_branch.TestIgnoreFallbacksParameter.test_fallbacks_are_opened(BzrBranchFormat6)
3648breezy.tests.per_branch.test_branch.TestIgnoreFallbacksParameter.test_fallbacks_are_opened(BzrBranchFormat7)
3649breezy.tests.per_branch.test_branch.TestIgnoreFallbacksParameter.test_fallbacks_are_opened(BzrBranchFormat8)
3650breezy.tests.per_branch.test_branch.TestIgnoreFallbacksParameter.test_fallbacks_are_opened(LocalGitBranchFormat)
3651breezy.tests.per_branch.test_branch.TestIgnoreFallbacksParameter.test_fallbacks_are_opened(RemoteBranchFormat-default)
3652breezy.tests.per_branch.test_branch.TestIgnoreFallbacksParameter.test_fallbacks_are_opened(RemoteBranchFormat-v2)
3653breezy.tests.per_branch.test_branch.TestIgnoreFallbacksParameter.test_fallbacks_are_opened(RemoteGitBranchFormat)
3654breezy.tests.per_branch.test_branch.TestIgnoreFallbacksParameter.test_fallbacks_not_opened(BranchReferenceFormat)
3655breezy.tests.per_branch.test_branch.TestIgnoreFallbacksParameter.test_fallbacks_not_opened(BzrBranchFormat4)
3656breezy.tests.per_branch.test_branch.TestIgnoreFallbacksParameter.test_fallbacks_not_opened(BzrBranchFormat5)
3657breezy.tests.per_branch.test_branch.TestIgnoreFallbacksParameter.test_fallbacks_not_opened(BzrBranchFormat6)
3658breezy.tests.per_branch.test_branch.TestIgnoreFallbacksParameter.test_fallbacks_not_opened(BzrBranchFormat7)
3659breezy.tests.per_branch.test_branch.TestIgnoreFallbacksParameter.test_fallbacks_not_opened(BzrBranchFormat8)
3660breezy.tests.per_branch.test_branch.TestIgnoreFallbacksParameter.test_fallbacks_not_opened(LocalGitBranchFormat)
3661breezy.tests.per_branch.test_branch.TestIgnoreFallbacksParameter.test_fallbacks_not_opened(RemoteBranchFormat-default)
3662breezy.tests.per_branch.test_branch.TestIgnoreFallbacksParameter.test_fallbacks_not_opened(RemoteBranchFormat-v2)
3663breezy.tests.per_branch.test_branch.TestIgnoreFallbacksParameter.test_fallbacks_not_opened(RemoteGitBranchFormat)
3664breezy.tests.per_branch.test_branch.TestReferenceLocation.test_branch_relative_reference_location(BranchReferenceFormat)
3665breezy.tests.per_branch.test_branch.TestReferenceLocation.test_branch_relative_reference_location(BzrBranchFormat4)
3666breezy.tests.per_branch.test_branch.TestReferenceLocation.test_branch_relative_reference_location(BzrBranchFormat5)
3667breezy.tests.per_branch.test_branch.TestReferenceLocation.test_branch_relative_reference_location(BzrBranchFormat6)
3668breezy.tests.per_branch.test_branch.TestReferenceLocation.test_branch_relative_reference_location(BzrBranchFormat7)
3669breezy.tests.per_branch.test_branch.TestReferenceLocation.test_branch_relative_reference_location(BzrBranchFormat8)
3670breezy.tests.per_branch.test_branch.TestReferenceLocation.test_branch_relative_reference_location(LocalGitBranchFormat)
3671breezy.tests.per_branch.test_branch.TestReferenceLocation.test_branch_relative_reference_location(RemoteBranchFormat-default)
3672breezy.tests.per_branch.test_branch.TestReferenceLocation.test_branch_relative_reference_location(RemoteBranchFormat-v2)
3673breezy.tests.per_branch.test_branch.TestReferenceLocation.test_branch_relative_reference_location(RemoteGitBranchFormat)
3674breezy.tests.per_branch.test_branch.TestReferenceLocation.test_clone_copies_reference_location(BranchReferenceFormat)
3675breezy.tests.per_branch.test_branch.TestReferenceLocation.test_clone_copies_reference_location(BzrBranchFormat4)
3676breezy.tests.per_branch.test_branch.TestReferenceLocation.test_clone_copies_reference_location(BzrBranchFormat5)
3677breezy.tests.per_branch.test_branch.TestReferenceLocation.test_clone_copies_reference_location(BzrBranchFormat6)
3678breezy.tests.per_branch.test_branch.TestReferenceLocation.test_clone_copies_reference_location(BzrBranchFormat7)
3679breezy.tests.per_branch.test_branch.TestReferenceLocation.test_clone_copies_reference_location(BzrBranchFormat8)
3680breezy.tests.per_branch.test_branch.TestReferenceLocation.test_clone_copies_reference_location(LocalGitBranchFormat)
3681breezy.tests.per_branch.test_branch.TestReferenceLocation.test_clone_copies_reference_location(RemoteBranchFormat-default)
3682breezy.tests.per_branch.test_branch.TestReferenceLocation.test_clone_copies_reference_location(RemoteBranchFormat-v2)
3683breezy.tests.per_branch.test_branch.TestReferenceLocation.test_clone_copies_reference_location(RemoteGitBranchFormat)
3684breezy.tests.per_branch.test_branch.TestReferenceLocation.test_copied_locations_are_rebased(BranchReferenceFormat)
3685breezy.tests.per_branch.test_branch.TestReferenceLocation.test_copied_locations_are_rebased(BzrBranchFormat4)
3686breezy.tests.per_branch.test_branch.TestReferenceLocation.test_copied_locations_are_rebased(BzrBranchFormat5)
3687breezy.tests.per_branch.test_branch.TestReferenceLocation.test_copied_locations_are_rebased(BzrBranchFormat6)
3688breezy.tests.per_branch.test_branch.TestReferenceLocation.test_copied_locations_are_rebased(BzrBranchFormat7)
3689breezy.tests.per_branch.test_branch.TestReferenceLocation.test_copied_locations_are_rebased(BzrBranchFormat8)
3690breezy.tests.per_branch.test_branch.TestReferenceLocation.test_copied_locations_are_rebased(LocalGitBranchFormat)
3691breezy.tests.per_branch.test_branch.TestReferenceLocation.test_copied_locations_are_rebased(RemoteBranchFormat-default)
3692breezy.tests.per_branch.test_branch.TestReferenceLocation.test_copied_locations_are_rebased(RemoteBranchFormat-v2)
3693breezy.tests.per_branch.test_branch.TestReferenceLocation.test_copied_locations_are_rebased(RemoteGitBranchFormat)
3694breezy.tests.per_branch.test_branch.TestReferenceLocation.test_get_reference_info(BranchReferenceFormat)
3695breezy.tests.per_branch.test_branch.TestReferenceLocation.test_get_reference_info(BzrBranchFormat4)
3696breezy.tests.per_branch.test_branch.TestReferenceLocation.test_get_reference_info(BzrBranchFormat5)
3697breezy.tests.per_branch.test_branch.TestReferenceLocation.test_get_reference_info(BzrBranchFormat6)
3698breezy.tests.per_branch.test_branch.TestReferenceLocation.test_get_reference_info(BzrBranchFormat7)
3699breezy.tests.per_branch.test_branch.TestReferenceLocation.test_get_reference_info(BzrBranchFormat8)
3700breezy.tests.per_branch.test_branch.TestReferenceLocation.test_get_reference_info(LocalGitBranchFormat)
3701breezy.tests.per_branch.test_branch.TestReferenceLocation.test_get_reference_info(RemoteBranchFormat-default)
3702breezy.tests.per_branch.test_branch.TestReferenceLocation.test_get_reference_info(RemoteBranchFormat-v2)
3703breezy.tests.per_branch.test_branch.TestReferenceLocation.test_get_reference_info(RemoteGitBranchFormat)
3704breezy.tests.per_branch.test_branch.TestReferenceLocation.test_merge_updates_references(BranchReferenceFormat)
3705breezy.tests.per_branch.test_branch.TestReferenceLocation.test_merge_updates_references(BzrBranchFormat4)
3706breezy.tests.per_branch.test_branch.TestReferenceLocation.test_merge_updates_references(BzrBranchFormat5)
3707breezy.tests.per_branch.test_branch.TestReferenceLocation.test_merge_updates_references(BzrBranchFormat6)
3708breezy.tests.per_branch.test_branch.TestReferenceLocation.test_merge_updates_references(BzrBranchFormat7)
3709breezy.tests.per_branch.test_branch.TestReferenceLocation.test_merge_updates_references(BzrBranchFormat8)
3710breezy.tests.per_branch.test_branch.TestReferenceLocation.test_merge_updates_references(LocalGitBranchFormat)
3711breezy.tests.per_branch.test_branch.TestReferenceLocation.test_merge_updates_references(RemoteBranchFormat-default)
3712breezy.tests.per_branch.test_branch.TestReferenceLocation.test_merge_updates_references(RemoteBranchFormat-v2)
3713breezy.tests.per_branch.test_branch.TestReferenceLocation.test_merge_updates_references(RemoteGitBranchFormat)
3714breezy.tests.per_branch.test_branch.TestReferenceLocation.test_pull_updates_references(BranchReferenceFormat)
3715breezy.tests.per_branch.test_branch.TestReferenceLocation.test_pull_updates_references(BzrBranchFormat4)
3716breezy.tests.per_branch.test_branch.TestReferenceLocation.test_pull_updates_references(BzrBranchFormat5)
3717breezy.tests.per_branch.test_branch.TestReferenceLocation.test_pull_updates_references(BzrBranchFormat6)
3718breezy.tests.per_branch.test_branch.TestReferenceLocation.test_pull_updates_references(BzrBranchFormat7)
3719breezy.tests.per_branch.test_branch.TestReferenceLocation.test_pull_updates_references(BzrBranchFormat8)
3720breezy.tests.per_branch.test_branch.TestReferenceLocation.test_pull_updates_references(LocalGitBranchFormat)
3721breezy.tests.per_branch.test_branch.TestReferenceLocation.test_pull_updates_references(RemoteBranchFormat-default)
3722breezy.tests.per_branch.test_branch.TestReferenceLocation.test_pull_updates_references(RemoteBranchFormat-v2)
3723breezy.tests.per_branch.test_branch.TestReferenceLocation.test_pull_updates_references(RemoteGitBranchFormat)
3724breezy.tests.per_branch.test_branch.TestReferenceLocation.test_push_updates_references(BranchReferenceFormat)
3725breezy.tests.per_branch.test_branch.TestReferenceLocation.test_push_updates_references(BzrBranchFormat4)
3726breezy.tests.per_branch.test_branch.TestReferenceLocation.test_push_updates_references(BzrBranchFormat5)
3727breezy.tests.per_branch.test_branch.TestReferenceLocation.test_push_updates_references(BzrBranchFormat6)
3728breezy.tests.per_branch.test_branch.TestReferenceLocation.test_push_updates_references(BzrBranchFormat7)
3729breezy.tests.per_branch.test_branch.TestReferenceLocation.test_push_updates_references(BzrBranchFormat8)
3730breezy.tests.per_branch.test_branch.TestReferenceLocation.test_push_updates_references(LocalGitBranchFormat)
3731breezy.tests.per_branch.test_branch.TestReferenceLocation.test_push_updates_references(RemoteBranchFormat-default)
3732breezy.tests.per_branch.test_branch.TestReferenceLocation.test_push_updates_references(RemoteBranchFormat-v2)
3733breezy.tests.per_branch.test_branch.TestReferenceLocation.test_push_updates_references(RemoteGitBranchFormat)
3734breezy.tests.per_branch.test_branch.TestReferenceLocation.test_reference_parent_accepts_possible_transports(BranchReferenceFormat)
3735breezy.tests.per_branch.test_branch.TestReferenceLocation.test_reference_parent_accepts_possible_transports(BzrBranchFormat4)
3736breezy.tests.per_branch.test_branch.TestReferenceLocation.test_reference_parent_accepts_possible_transports(BzrBranchFormat5)
3737breezy.tests.per_branch.test_branch.TestReferenceLocation.test_reference_parent_accepts_possible_transports(BzrBranchFormat6)
3738breezy.tests.per_branch.test_branch.TestReferenceLocation.test_reference_parent_accepts_possible_transports(BzrBranchFormat7)
3739breezy.tests.per_branch.test_branch.TestReferenceLocation.test_reference_parent_accepts_possible_transports(BzrBranchFormat8)
3740breezy.tests.per_branch.test_branch.TestReferenceLocation.test_reference_parent_accepts_possible_transports(LocalGitBranchFormat)
3741breezy.tests.per_branch.test_branch.TestReferenceLocation.test_reference_parent_accepts_possible_transports(RemoteBranchFormat-default)
3742breezy.tests.per_branch.test_branch.TestReferenceLocation.test_reference_parent_accepts_possible_transports(RemoteBranchFormat-v2)
3743breezy.tests.per_branch.test_branch.TestReferenceLocation.test_reference_parent_accepts_possible_transports(RemoteGitBranchFormat)
3744breezy.tests.per_branch.test_branch.TestReferenceLocation.test_reference_parent(BranchReferenceFormat)
3745breezy.tests.per_branch.test_branch.TestReferenceLocation.test_reference_parent(BzrBranchFormat4)
3746breezy.tests.per_branch.test_branch.TestReferenceLocation.test_reference_parent(BzrBranchFormat5)
3747breezy.tests.per_branch.test_branch.TestReferenceLocation.test_reference_parent(BzrBranchFormat6)
3748breezy.tests.per_branch.test_branch.TestReferenceLocation.test_reference_parent(BzrBranchFormat7)
3749breezy.tests.per_branch.test_branch.TestReferenceLocation.test_reference_parent(BzrBranchFormat8)
3750breezy.tests.per_branch.test_branch.TestReferenceLocation.test_reference_parent_from_reference_info_(BranchReferenceFormat)
3751breezy.tests.per_branch.test_branch.TestReferenceLocation.test_reference_parent_from_reference_info_(BzrBranchFormat4)
3752breezy.tests.per_branch.test_branch.TestReferenceLocation.test_reference_parent_from_reference_info_(BzrBranchFormat5)
3753breezy.tests.per_branch.test_branch.TestReferenceLocation.test_reference_parent_from_reference_info_(BzrBranchFormat6)
3754breezy.tests.per_branch.test_branch.TestReferenceLocation.test_reference_parent_from_reference_info_(BzrBranchFormat7)
3755breezy.tests.per_branch.test_branch.TestReferenceLocation.test_reference_parent_from_reference_info_(BzrBranchFormat8)
3756breezy.tests.per_branch.test_branch.TestReferenceLocation.test_reference_parent_from_reference_info_(LocalGitBranchFormat)
3757breezy.tests.per_branch.test_branch.TestReferenceLocation.test_reference_parent_from_reference_info_(RemoteBranchFormat-default)
3758breezy.tests.per_branch.test_branch.TestReferenceLocation.test_reference_parent_from_reference_info_(RemoteBranchFormat-v2)
3759breezy.tests.per_branch.test_branch.TestReferenceLocation.test_reference_parent_from_reference_info_(RemoteGitBranchFormat)
3760breezy.tests.per_branch.test_branch.TestReferenceLocation.test_reference_parent(LocalGitBranchFormat)
3761breezy.tests.per_branch.test_branch.TestReferenceLocation.test_reference_parent(RemoteBranchFormat-default)
3762breezy.tests.per_branch.test_branch.TestReferenceLocation.test_reference_parent(RemoteBranchFormat-v2)
3763breezy.tests.per_branch.test_branch.TestReferenceLocation.test_reference_parent(RemoteGitBranchFormat)
3764breezy.tests.per_branch.test_branch.TestReferenceLocation.test_set_get_reference_info(BranchReferenceFormat)
3765breezy.tests.per_branch.test_branch.TestReferenceLocation.test_set_get_reference_info(BzrBranchFormat4)
3766breezy.tests.per_branch.test_branch.TestReferenceLocation.test_set_get_reference_info(BzrBranchFormat5)
3767breezy.tests.per_branch.test_branch.TestReferenceLocation.test_set_get_reference_info(BzrBranchFormat6)
3768breezy.tests.per_branch.test_branch.TestReferenceLocation.test_set_get_reference_info(BzrBranchFormat7)
3769breezy.tests.per_branch.test_branch.TestReferenceLocation.test_set_get_reference_info(BzrBranchFormat8)
3770breezy.tests.per_branch.test_branch.TestReferenceLocation.test_set_get_reference_info(LocalGitBranchFormat)
3771breezy.tests.per_branch.test_branch.TestReferenceLocation.test_set_get_reference_info(RemoteBranchFormat-default)
3772breezy.tests.per_branch.test_branch.TestReferenceLocation.test_set_get_reference_info(RemoteBranchFormat-v2)
3773breezy.tests.per_branch.test_branch.TestReferenceLocation.test_set_get_reference_info(RemoteGitBranchFormat)
3774breezy.tests.per_branch.test_branch.TestReferenceLocation.test_set_null_reference_info(BranchReferenceFormat)
3775breezy.tests.per_branch.test_branch.TestReferenceLocation.test_set_null_reference_info(BzrBranchFormat4)
3776breezy.tests.per_branch.test_branch.TestReferenceLocation.test_set_null_reference_info(BzrBranchFormat5)
3777breezy.tests.per_branch.test_branch.TestReferenceLocation.test_set_null_reference_info(BzrBranchFormat6)
3778breezy.tests.per_branch.test_branch.TestReferenceLocation.test_set_null_reference_info(BzrBranchFormat7)
3779breezy.tests.per_branch.test_branch.TestReferenceLocation.test_set_null_reference_info(BzrBranchFormat8)
3780breezy.tests.per_branch.test_branch.TestReferenceLocation.test_set_null_reference_info(LocalGitBranchFormat)
3781breezy.tests.per_branch.test_branch.TestReferenceLocation.test_set_null_reference_info(RemoteBranchFormat-default)
3782breezy.tests.per_branch.test_branch.TestReferenceLocation.test_set_null_reference_info(RemoteBranchFormat-v2)
3783breezy.tests.per_branch.test_branch.TestReferenceLocation.test_set_null_reference_info(RemoteGitBranchFormat)
3784breezy.tests.per_branch.test_branch.TestReferenceLocation.test_set_null_reference_info_when_null(BranchReferenceFormat)
3785breezy.tests.per_branch.test_branch.TestReferenceLocation.test_set_null_reference_info_when_null(BzrBranchFormat4)
3786breezy.tests.per_branch.test_branch.TestReferenceLocation.test_set_null_reference_info_when_null(BzrBranchFormat5)
3787breezy.tests.per_branch.test_branch.TestReferenceLocation.test_set_null_reference_info_when_null(BzrBranchFormat6)
3788breezy.tests.per_branch.test_branch.TestReferenceLocation.test_set_null_reference_info_when_null(BzrBranchFormat7)
3789breezy.tests.per_branch.test_branch.TestReferenceLocation.test_set_null_reference_info_when_null(BzrBranchFormat8)
3790breezy.tests.per_branch.test_branch.TestReferenceLocation.test_set_null_reference_info_when_null(LocalGitBranchFormat)
3791breezy.tests.per_branch.test_branch.TestReferenceLocation.test_set_null_reference_info_when_null(RemoteBranchFormat-default)
3792breezy.tests.per_branch.test_branch.TestReferenceLocation.test_set_null_reference_info_when_null(RemoteBranchFormat-v2)
3793breezy.tests.per_branch.test_branch.TestReferenceLocation.test_set_null_reference_info_when_null(RemoteGitBranchFormat)
3794breezy.tests.per_branch.test_branch.TestReferenceLocation.test_set_reference_info(BranchReferenceFormat)
3795breezy.tests.per_branch.test_branch.TestReferenceLocation.test_set_reference_info(BzrBranchFormat4)
3796breezy.tests.per_branch.test_branch.TestReferenceLocation.test_set_reference_info(BzrBranchFormat5)
3797breezy.tests.per_branch.test_branch.TestReferenceLocation.test_set_reference_info(BzrBranchFormat6)
3798breezy.tests.per_branch.test_branch.TestReferenceLocation.test_set_reference_info(BzrBranchFormat7)
3799breezy.tests.per_branch.test_branch.TestReferenceLocation.test_set_reference_info(BzrBranchFormat8)
3800breezy.tests.per_branch.test_branch.TestReferenceLocation.test_set_reference_info(LocalGitBranchFormat)
3801breezy.tests.per_branch.test_branch.TestReferenceLocation.test_set_reference_info(RemoteBranchFormat-default)
3802breezy.tests.per_branch.test_branch.TestReferenceLocation.test_set_reference_info(RemoteBranchFormat-v2)
3803breezy.tests.per_branch.test_branch.TestReferenceLocation.test_set_reference_info(RemoteGitBranchFormat)
3804breezy.tests.per_branch.test_branch.TestReferenceLocation.test_sprout_copies_reference_location(BranchReferenceFormat)
3805breezy.tests.per_branch.test_branch.TestReferenceLocation.test_sprout_copies_reference_location(BzrBranchFormat4)
3806breezy.tests.per_branch.test_branch.TestReferenceLocation.test_sprout_copies_reference_location(BzrBranchFormat5)
3807breezy.tests.per_branch.test_branch.TestReferenceLocation.test_sprout_copies_reference_location(BzrBranchFormat6)
3808breezy.tests.per_branch.test_branch.TestReferenceLocation.test_sprout_copies_reference_location(BzrBranchFormat7)
3809breezy.tests.per_branch.test_branch.TestReferenceLocation.test_sprout_copies_reference_location(BzrBranchFormat8)
3810breezy.tests.per_branch.test_branch.TestReferenceLocation.test_sprout_copies_reference_location(LocalGitBranchFormat)
3811breezy.tests.per_branch.test_branch.TestReferenceLocation.test_sprout_copies_reference_location(RemoteBranchFormat-default)
3812breezy.tests.per_branch.test_branch.TestReferenceLocation.test_sprout_copies_reference_location(RemoteBranchFormat-v2)
3813breezy.tests.per_branch.test_branch.TestReferenceLocation.test_sprout_copies_reference_location(RemoteGitBranchFormat)
3814breezy.tests.per_branch.test_branch.TestReferenceLocation.test_update_references_retains_known_references(BranchReferenceFormat)
3815breezy.tests.per_branch.test_branch.TestReferenceLocation.test_update_references_retains_known_references(BzrBranchFormat4)
3816breezy.tests.per_branch.test_branch.TestReferenceLocation.test_update_references_retains_known_references(BzrBranchFormat5)
3817breezy.tests.per_branch.test_branch.TestReferenceLocation.test_update_references_retains_known_references(BzrBranchFormat6)
3818breezy.tests.per_branch.test_branch.TestReferenceLocation.test_update_references_retains_known_references(BzrBranchFormat7)
3819breezy.tests.per_branch.test_branch.TestReferenceLocation.test_update_references_retains_known_references(BzrBranchFormat8)
3820breezy.tests.per_branch.test_branch.TestReferenceLocation.test_update_references_retains_known_references(LocalGitBranchFormat)
3821breezy.tests.per_branch.test_branch.TestReferenceLocation.test_update_references_retains_known_references(RemoteBranchFormat-default)
3822breezy.tests.per_branch.test_branch.TestReferenceLocation.test_update_references_retains_known_references(RemoteBranchFormat-v2)
3823breezy.tests.per_branch.test_branch.TestReferenceLocation.test_update_references_retains_known_references(RemoteGitBranchFormat)
3824breezy.tests.per_branch.test_branch.TestReferenceLocation.test_update_references_retains_old_references(BranchReferenceFormat)
3825breezy.tests.per_branch.test_branch.TestReferenceLocation.test_update_references_retains_old_references(BzrBranchFormat4)
3826breezy.tests.per_branch.test_branch.TestReferenceLocation.test_update_references_retains_old_references(BzrBranchFormat5)
3827breezy.tests.per_branch.test_branch.TestReferenceLocation.test_update_references_retains_old_references(BzrBranchFormat6)
3828breezy.tests.per_branch.test_branch.TestReferenceLocation.test_update_references_retains_old_references(BzrBranchFormat7)
3829breezy.tests.per_branch.test_branch.TestReferenceLocation.test_update_references_retains_old_references(BzrBranchFormat8)
3830breezy.tests.per_branch.test_branch.TestReferenceLocation.test_update_references_retains_old_references(LocalGitBranchFormat)
3831breezy.tests.per_branch.test_branch.TestReferenceLocation.test_update_references_retains_old_references(RemoteBranchFormat-default)
3832breezy.tests.per_branch.test_branch.TestReferenceLocation.test_update_references_retains_old_references(RemoteBranchFormat-v2)
3833breezy.tests.per_branch.test_branch.TestReferenceLocation.test_update_references_retains_old_references(RemoteGitBranchFormat)
3834breezy.tests.per_branch.test_branch.TestReferenceLocation.test_update_references_skips_known_references(BranchReferenceFormat)
3835breezy.tests.per_branch.test_branch.TestReferenceLocation.test_update_references_skips_known_references(BzrBranchFormat4)
3836breezy.tests.per_branch.test_branch.TestReferenceLocation.test_update_references_skips_known_references(BzrBranchFormat5)
3837breezy.tests.per_branch.test_branch.TestReferenceLocation.test_update_references_skips_known_references(BzrBranchFormat6)
3838breezy.tests.per_branch.test_branch.TestReferenceLocation.test_update_references_skips_known_references(BzrBranchFormat7)
3839breezy.tests.per_branch.test_branch.TestReferenceLocation.test_update_references_skips_known_references(BzrBranchFormat8)
3840breezy.tests.per_branch.test_branch.TestReferenceLocation.test_update_references_skips_known_references(LocalGitBranchFormat)
3841breezy.tests.per_branch.test_branch.TestReferenceLocation.test_update_references_skips_known_references(RemoteBranchFormat-default)
3842breezy.tests.per_branch.test_branch.TestReferenceLocation.test_update_references_skips_known_references(RemoteBranchFormat-v2)
3843breezy.tests.per_branch.test_branch.TestReferenceLocation.test_update_references_skips_known_references(RemoteGitBranchFormat)
3844breezy.tests.per_branch.test_branch.TestStrict.test_strict_history(BranchReferenceFormat)
3845breezy.tests.per_branch.test_branch.TestStrict.test_strict_history(BzrBranchFormat4)
3846breezy.tests.per_branch.test_branch.TestStrict.test_strict_history(BzrBranchFormat5)
3847breezy.tests.per_branch.test_branch.TestStrict.test_strict_history(BzrBranchFormat6)
3848breezy.tests.per_branch.test_branch.TestStrict.test_strict_history(BzrBranchFormat7)
3849breezy.tests.per_branch.test_branch.TestStrict.test_strict_history(BzrBranchFormat8)
3850breezy.tests.per_branch.test_branch.TestStrict.test_strict_history(LocalGitBranchFormat)
3851breezy.tests.per_branch.test_branch.TestStrict.test_strict_history(RemoteBranchFormat-default)
3852breezy.tests.per_branch.test_branch.TestStrict.test_strict_history(RemoteBranchFormat-v2)
3853breezy.tests.per_branch.test_branch.TestStrict.test_strict_history(RemoteGitBranchFormat)
3854breezy.tests.per_branch.test_branch.TestTestCaseWithBranch.test_branch_format_matches_bzrdir_branch_format(BranchReferenceFormat)
3855breezy.tests.per_branch.test_branch.TestTestCaseWithBranch.test_branch_format_matches_bzrdir_branch_format(BzrBranchFormat4)
3856breezy.tests.per_branch.test_branch.TestTestCaseWithBranch.test_branch_format_matches_bzrdir_branch_format(BzrBranchFormat5)
3857breezy.tests.per_branch.test_branch.TestTestCaseWithBranch.test_branch_format_matches_bzrdir_branch_format(BzrBranchFormat6)
3858breezy.tests.per_branch.test_branch.TestTestCaseWithBranch.test_branch_format_matches_bzrdir_branch_format(BzrBranchFormat7)
3859breezy.tests.per_branch.test_branch.TestTestCaseWithBranch.test_branch_format_matches_bzrdir_branch_format(BzrBranchFormat8)
3860breezy.tests.per_branch.test_branch.TestTestCaseWithBranch.test_branch_format_matches_bzrdir_branch_format(LocalGitBranchFormat)
3861breezy.tests.per_branch.test_branch.TestTestCaseWithBranch.test_branch_format_matches_bzrdir_branch_format(RemoteBranchFormat-default)
3862breezy.tests.per_branch.test_branch.TestTestCaseWithBranch.test_branch_format_matches_bzrdir_branch_format(RemoteBranchFormat-v2)
3863breezy.tests.per_branch.test_branch.TestTestCaseWithBranch.test_branch_format_matches_bzrdir_branch_format(RemoteGitBranchFormat)
3864breezy.tests.per_branch.test_branch.TestTestCaseWithBranch.test_make_branch_gets_expected_format(BranchReferenceFormat)
3865breezy.tests.per_branch.test_branch.TestTestCaseWithBranch.test_make_branch_gets_expected_format(BzrBranchFormat4)
3866breezy.tests.per_branch.test_branch.TestTestCaseWithBranch.test_make_branch_gets_expected_format(BzrBranchFormat5)
3867breezy.tests.per_branch.test_branch.TestTestCaseWithBranch.test_make_branch_gets_expected_format(BzrBranchFormat6)
3868breezy.tests.per_branch.test_branch.TestTestCaseWithBranch.test_make_branch_gets_expected_format(BzrBranchFormat7)
3869breezy.tests.per_branch.test_branch.TestTestCaseWithBranch.test_make_branch_gets_expected_format(BzrBranchFormat8)
3870breezy.tests.per_branch.test_branch.TestTestCaseWithBranch.test_make_branch_gets_expected_format(LocalGitBranchFormat)
3871breezy.tests.per_branch.test_branch.TestTestCaseWithBranch.test_make_branch_gets_expected_format(RemoteBranchFormat-default)
3872breezy.tests.per_branch.test_branch.TestTestCaseWithBranch.test_make_branch_gets_expected_format(RemoteBranchFormat-v2)
3873breezy.tests.per_branch.test_branch.TestTestCaseWithBranch.test_make_branch_gets_expected_format(RemoteGitBranchFormat)
3874breezy.tests.per_branch.test_branch.TestUncommittedChanges.test_get_unshelver_bound(BranchReferenceFormat)
3875breezy.tests.per_branch.test_branch.TestUncommittedChanges.test_get_unshelver_bound(BzrBranchFormat4)
3876breezy.tests.per_branch.test_branch.TestUncommittedChanges.test_get_unshelver_bound(BzrBranchFormat5)
3877breezy.tests.per_branch.test_branch.TestUncommittedChanges.test_get_unshelver_bound(BzrBranchFormat6)
3878breezy.tests.per_branch.test_branch.TestUncommittedChanges.test_get_unshelver_bound(BzrBranchFormat7)
3879breezy.tests.per_branch.test_branch.TestUncommittedChanges.test_get_unshelver_bound(BzrBranchFormat8)
3880breezy.tests.per_branch.test_branch.TestUncommittedChanges.test_get_unshelver_bound(LocalGitBranchFormat)
3881breezy.tests.per_branch.test_branch.TestUncommittedChanges.test_get_unshelver_bound(RemoteBranchFormat-default)
3882breezy.tests.per_branch.test_branch.TestUncommittedChanges.test_get_unshelver_bound(RemoteBranchFormat-v2)
3883breezy.tests.per_branch.test_branch.TestUncommittedChanges.test_get_unshelver_bound(RemoteGitBranchFormat)
3884breezy.tests.per_branch.test_branch.TestUncommittedChanges.test_get_unshelver(BranchReferenceFormat)
3885breezy.tests.per_branch.test_branch.TestUncommittedChanges.test_get_unshelver(BzrBranchFormat4)
3886breezy.tests.per_branch.test_branch.TestUncommittedChanges.test_get_unshelver(BzrBranchFormat5)
3887breezy.tests.per_branch.test_branch.TestUncommittedChanges.test_get_unshelver(BzrBranchFormat6)
3888breezy.tests.per_branch.test_branch.TestUncommittedChanges.test_get_unshelver(BzrBranchFormat7)
3889breezy.tests.per_branch.test_branch.TestUncommittedChanges.test_get_unshelver(BzrBranchFormat8)
3890breezy.tests.per_branch.test_branch.TestUncommittedChanges.test_get_unshelver(LocalGitBranchFormat)
3891breezy.tests.per_branch.test_branch.TestUncommittedChanges.test_get_unshelver(RemoteBranchFormat-default)
3892breezy.tests.per_branch.test_branch.TestUncommittedChanges.test_get_unshelver(RemoteBranchFormat-v2)
3893breezy.tests.per_branch.test_branch.TestUncommittedChanges.test_get_unshelver(RemoteGitBranchFormat)
3894breezy.tests.per_branch.test_branch.TestUncommittedChanges.test_store_uncommitted_already_stored(BranchReferenceFormat)
3895breezy.tests.per_branch.test_branch.TestUncommittedChanges.test_store_uncommitted_already_stored(BzrBranchFormat4)
3896breezy.tests.per_branch.test_branch.TestUncommittedChanges.test_store_uncommitted_already_stored(BzrBranchFormat5)
3897breezy.tests.per_branch.test_branch.TestUncommittedChanges.test_store_uncommitted_already_stored(BzrBranchFormat6)
3898breezy.tests.per_branch.test_branch.TestUncommittedChanges.test_store_uncommitted_already_stored(BzrBranchFormat7)
3899breezy.tests.per_branch.test_branch.TestUncommittedChanges.test_store_uncommitted_already_stored(BzrBranchFormat8)
3900breezy.tests.per_branch.test_branch.TestUncommittedChanges.test_store_uncommitted_already_stored(LocalGitBranchFormat)
3901breezy.tests.per_branch.test_branch.TestUncommittedChanges.test_store_uncommitted_already_stored(RemoteBranchFormat-default)
3902breezy.tests.per_branch.test_branch.TestUncommittedChanges.test_store_uncommitted_already_stored(RemoteBranchFormat-v2)
3903breezy.tests.per_branch.test_branch.TestUncommittedChanges.test_store_uncommitted_already_stored(RemoteGitBranchFormat)
3904breezy.tests.per_branch.test_branch.TestUncommittedChanges.test_store_uncommitted_bound(BranchReferenceFormat)
3905breezy.tests.per_branch.test_branch.TestUncommittedChanges.test_store_uncommitted_bound(BzrBranchFormat4)
3906breezy.tests.per_branch.test_branch.TestUncommittedChanges.test_store_uncommitted_bound(BzrBranchFormat5)
3907breezy.tests.per_branch.test_branch.TestUncommittedChanges.test_store_uncommitted_bound(BzrBranchFormat6)
3908breezy.tests.per_branch.test_branch.TestUncommittedChanges.test_store_uncommitted_bound(BzrBranchFormat7)
3909breezy.tests.per_branch.test_branch.TestUncommittedChanges.test_store_uncommitted_bound(BzrBranchFormat8)
3910breezy.tests.per_branch.test_branch.TestUncommittedChanges.test_store_uncommitted_bound(LocalGitBranchFormat)
3911breezy.tests.per_branch.test_branch.TestUncommittedChanges.test_store_uncommitted_bound(RemoteBranchFormat-default)
3912breezy.tests.per_branch.test_branch.TestUncommittedChanges.test_store_uncommitted_bound(RemoteBranchFormat-v2)
3913breezy.tests.per_branch.test_branch.TestUncommittedChanges.test_store_uncommitted_bound(RemoteGitBranchFormat)
3914breezy.tests.per_branch.test_branch.TestUncommittedChanges.test_store_uncommitted(BranchReferenceFormat)
3915breezy.tests.per_branch.test_branch.TestUncommittedChanges.test_store_uncommitted(BzrBranchFormat4)
3916breezy.tests.per_branch.test_branch.TestUncommittedChanges.test_store_uncommitted(BzrBranchFormat5)
3917breezy.tests.per_branch.test_branch.TestUncommittedChanges.test_store_uncommitted(BzrBranchFormat6)
3918breezy.tests.per_branch.test_branch.TestUncommittedChanges.test_store_uncommitted(BzrBranchFormat7)
3919breezy.tests.per_branch.test_branch.TestUncommittedChanges.test_store_uncommitted(BzrBranchFormat8)
3920breezy.tests.per_branch.test_branch.TestUncommittedChanges.test_store_uncommitted(LocalGitBranchFormat)
3921breezy.tests.per_branch.test_branch.TestUncommittedChanges.test_store_uncommitted_none(BranchReferenceFormat)
3922breezy.tests.per_branch.test_branch.TestUncommittedChanges.test_store_uncommitted_none(BzrBranchFormat4)
3923breezy.tests.per_branch.test_branch.TestUncommittedChanges.test_store_uncommitted_none(BzrBranchFormat5)
3924breezy.tests.per_branch.test_branch.TestUncommittedChanges.test_store_uncommitted_none(BzrBranchFormat6)
3925breezy.tests.per_branch.test_branch.TestUncommittedChanges.test_store_uncommitted_none(BzrBranchFormat7)
3926breezy.tests.per_branch.test_branch.TestUncommittedChanges.test_store_uncommitted_none(BzrBranchFormat8)
3927breezy.tests.per_branch.test_branch.TestUncommittedChanges.test_store_uncommitted_none(LocalGitBranchFormat)
3928breezy.tests.per_branch.test_branch.TestUncommittedChanges.test_store_uncommitted_none(RemoteBranchFormat-default)
3929breezy.tests.per_branch.test_branch.TestUncommittedChanges.test_store_uncommitted_none(RemoteBranchFormat-v2)
3930breezy.tests.per_branch.test_branch.TestUncommittedChanges.test_store_uncommitted_none(RemoteGitBranchFormat)
3931breezy.tests.per_branch.test_branch.TestUncommittedChanges.test_store_uncommitted(RemoteBranchFormat-default)
3932breezy.tests.per_branch.test_branch.TestUncommittedChanges.test_store_uncommitted(RemoteBranchFormat-v2)
3933breezy.tests.per_branch.test_branch.TestUncommittedChanges.test_store_uncommitted(RemoteGitBranchFormat)
3934breezy.tests.per_branch.test_break_lock.TestBreakLock.test_locked(BranchReferenceFormat)
3935breezy.tests.per_branch.test_break_lock.TestBreakLock.test_locked(BzrBranchFormat4)
3936breezy.tests.per_branch.test_break_lock.TestBreakLock.test_locked(BzrBranchFormat5)
3937breezy.tests.per_branch.test_break_lock.TestBreakLock.test_locked(BzrBranchFormat6)
3938breezy.tests.per_branch.test_break_lock.TestBreakLock.test_locked(BzrBranchFormat7)
3939breezy.tests.per_branch.test_break_lock.TestBreakLock.test_locked(BzrBranchFormat8)
3940breezy.tests.per_branch.test_break_lock.TestBreakLock.test_locked(LocalGitBranchFormat)
3941breezy.tests.per_branch.test_break_lock.TestBreakLock.test_locked(RemoteBranchFormat-default)
3942breezy.tests.per_branch.test_break_lock.TestBreakLock.test_locked(RemoteBranchFormat-v2)
3943breezy.tests.per_branch.test_break_lock.TestBreakLock.test_locked(RemoteGitBranchFormat)
3944breezy.tests.per_branch.test_break_lock.TestBreakLock.test_unlocked(BranchReferenceFormat)
3945breezy.tests.per_branch.test_break_lock.TestBreakLock.test_unlocked(BzrBranchFormat4)
3946breezy.tests.per_branch.test_break_lock.TestBreakLock.test_unlocked(BzrBranchFormat5)
3947breezy.tests.per_branch.test_break_lock.TestBreakLock.test_unlocked(BzrBranchFormat6)
3948breezy.tests.per_branch.test_break_lock.TestBreakLock.test_unlocked(BzrBranchFormat7)
3949breezy.tests.per_branch.test_break_lock.TestBreakLock.test_unlocked(BzrBranchFormat8)
3950breezy.tests.per_branch.test_break_lock.TestBreakLock.test_unlocked(LocalGitBranchFormat)
3951breezy.tests.per_branch.test_break_lock.TestBreakLock.test_unlocked(RemoteBranchFormat-default)
3952breezy.tests.per_branch.test_break_lock.TestBreakLock.test_unlocked(RemoteBranchFormat-v2)
3953breezy.tests.per_branch.test_break_lock.TestBreakLock.test_unlocked(RemoteGitBranchFormat)
3954breezy.tests.per_branch.test_break_lock.TestBreakLock.test_unlocked_repo_locked(BranchReferenceFormat)
3955breezy.tests.per_branch.test_break_lock.TestBreakLock.test_unlocked_repo_locked(BzrBranchFormat4)
3956breezy.tests.per_branch.test_break_lock.TestBreakLock.test_unlocked_repo_locked(BzrBranchFormat5)
3957breezy.tests.per_branch.test_break_lock.TestBreakLock.test_unlocked_repo_locked(BzrBranchFormat6)
3958breezy.tests.per_branch.test_break_lock.TestBreakLock.test_unlocked_repo_locked(BzrBranchFormat7)
3959breezy.tests.per_branch.test_break_lock.TestBreakLock.test_unlocked_repo_locked(BzrBranchFormat8)
3960breezy.tests.per_branch.test_break_lock.TestBreakLock.test_unlocked_repo_locked(LocalGitBranchFormat)
3961breezy.tests.per_branch.test_break_lock.TestBreakLock.test_unlocked_repo_locked(RemoteBranchFormat-default)
3962breezy.tests.per_branch.test_break_lock.TestBreakLock.test_unlocked_repo_locked(RemoteBranchFormat-v2)
3963breezy.tests.per_branch.test_break_lock.TestBreakLock.test_unlocked_repo_locked(RemoteGitBranchFormat)
3964breezy.tests.per_branch.test_break_lock.TestBreakLock.test_unlocks_master_branch(BranchReferenceFormat)
3965breezy.tests.per_branch.test_break_lock.TestBreakLock.test_unlocks_master_branch(BzrBranchFormat4)
3966breezy.tests.per_branch.test_break_lock.TestBreakLock.test_unlocks_master_branch(BzrBranchFormat5)
3967breezy.tests.per_branch.test_break_lock.TestBreakLock.test_unlocks_master_branch(BzrBranchFormat6)
3968breezy.tests.per_branch.test_break_lock.TestBreakLock.test_unlocks_master_branch(BzrBranchFormat7)
3969breezy.tests.per_branch.test_break_lock.TestBreakLock.test_unlocks_master_branch(BzrBranchFormat8)
3970breezy.tests.per_branch.test_break_lock.TestBreakLock.test_unlocks_master_branch(LocalGitBranchFormat)
3971breezy.tests.per_branch.test_break_lock.TestBreakLock.test_unlocks_master_branch(RemoteBranchFormat-default)
3972breezy.tests.per_branch.test_break_lock.TestBreakLock.test_unlocks_master_branch(RemoteBranchFormat-v2)
3973breezy.tests.per_branch.test_break_lock.TestBreakLock.test_unlocks_master_branch(RemoteGitBranchFormat)
3974breezy.tests.per_branch.test_check.TestBranchCheck.test_check_branch_report_results(BranchReferenceFormat)
3975breezy.tests.per_branch.test_check.TestBranchCheck.test_check_branch_report_results(BzrBranchFormat4)
3976breezy.tests.per_branch.test_check.TestBranchCheck.test_check_branch_report_results(BzrBranchFormat5)
3977breezy.tests.per_branch.test_check.TestBranchCheck.test_check_branch_report_results(BzrBranchFormat6)
3978breezy.tests.per_branch.test_check.TestBranchCheck.test_check_branch_report_results(BzrBranchFormat7)
3979breezy.tests.per_branch.test_check.TestBranchCheck.test_check_branch_report_results(BzrBranchFormat8)
3980breezy.tests.per_branch.test_check.TestBranchCheck.test_check_branch_report_results(LocalGitBranchFormat)
3981breezy.tests.per_branch.test_check.TestBranchCheck.test_check_branch_report_results(RemoteBranchFormat-default)
3982breezy.tests.per_branch.test_check.TestBranchCheck.test_check_branch_report_results(RemoteBranchFormat-v2)
3983breezy.tests.per_branch.test_check.TestBranchCheck.test_check_branch_report_results(RemoteGitBranchFormat)
3984breezy.tests.per_branch.test_check.TestBranchCheck.test_check_detects_invalid_revhistory(BranchReferenceFormat)
3985breezy.tests.per_branch.test_check.TestBranchCheck.test_check_detects_invalid_revhistory(BzrBranchFormat4)
3986breezy.tests.per_branch.test_check.TestBranchCheck.test_check_detects_invalid_revhistory(BzrBranchFormat5)
3987breezy.tests.per_branch.test_check.TestBranchCheck.test_check_detects_invalid_revhistory(BzrBranchFormat6)
3988breezy.tests.per_branch.test_check.TestBranchCheck.test_check_detects_invalid_revhistory(BzrBranchFormat7)
3989breezy.tests.per_branch.test_check.TestBranchCheck.test_check_detects_invalid_revhistory(BzrBranchFormat8)
3990breezy.tests.per_branch.test_check.TestBranchCheck.test_check_detects_invalid_revhistory(LocalGitBranchFormat)
3991breezy.tests.per_branch.test_check.TestBranchCheck.test_check_detects_invalid_revhistory(RemoteBranchFormat-default)
3992breezy.tests.per_branch.test_check.TestBranchCheck.test_check_detects_invalid_revhistory(RemoteBranchFormat-v2)
3993breezy.tests.per_branch.test_check.TestBranchCheck.test_check_detects_invalid_revhistory(RemoteGitBranchFormat)
3994breezy.tests.per_branch.test_check.TestBranchCheck.test__get_check_refs(BranchReferenceFormat)
3995breezy.tests.per_branch.test_check.TestBranchCheck.test__get_check_refs(BzrBranchFormat4)
3996breezy.tests.per_branch.test_check.TestBranchCheck.test__get_check_refs(BzrBranchFormat5)
3997breezy.tests.per_branch.test_check.TestBranchCheck.test__get_check_refs(BzrBranchFormat6)
3998breezy.tests.per_branch.test_check.TestBranchCheck.test__get_check_refs(BzrBranchFormat7)
3999breezy.tests.per_branch.test_check.TestBranchCheck.test__get_check_refs(BzrBranchFormat8)
4000breezy.tests.per_branch.test_check.TestBranchCheck.test__get_check_refs(LocalGitBranchFormat)
4001breezy.tests.per_branch.test_check.TestBranchCheck.test__get_check_refs(RemoteBranchFormat-default)
4002breezy.tests.per_branch.test_check.TestBranchCheck.test__get_check_refs(RemoteBranchFormat-v2)
4003breezy.tests.per_branch.test_check.TestBranchCheck.test__get_check_refs(RemoteGitBranchFormat)
4004breezy.tests.per_branch.test_commit.TestCommitHook.test_post_commit_bound(BranchReferenceFormat)
4005breezy.tests.per_branch.test_commit.TestCommitHook.test_post_commit_bound(BzrBranchFormat4)
4006breezy.tests.per_branch.test_commit.TestCommitHook.test_post_commit_bound(BzrBranchFormat5)
4007breezy.tests.per_branch.test_commit.TestCommitHook.test_post_commit_bound(BzrBranchFormat6)
4008breezy.tests.per_branch.test_commit.TestCommitHook.test_post_commit_bound(BzrBranchFormat7)
4009breezy.tests.per_branch.test_commit.TestCommitHook.test_post_commit_bound(BzrBranchFormat8)
4010breezy.tests.per_branch.test_commit.TestCommitHook.test_post_commit_bound(LocalGitBranchFormat)
4011breezy.tests.per_branch.test_commit.TestCommitHook.test_post_commit_bound(RemoteBranchFormat-default)
4012breezy.tests.per_branch.test_commit.TestCommitHook.test_post_commit_bound(RemoteBranchFormat-v2)
4013breezy.tests.per_branch.test_commit.TestCommitHook.test_post_commit_bound(RemoteGitBranchFormat)
4014breezy.tests.per_branch.test_commit.TestCommitHook.test_post_commit_not_to_origin(BranchReferenceFormat)
4015breezy.tests.per_branch.test_commit.TestCommitHook.test_post_commit_not_to_origin(BzrBranchFormat4)
4016breezy.tests.per_branch.test_commit.TestCommitHook.test_post_commit_not_to_origin(BzrBranchFormat5)
4017breezy.tests.per_branch.test_commit.TestCommitHook.test_post_commit_not_to_origin(BzrBranchFormat6)
4018breezy.tests.per_branch.test_commit.TestCommitHook.test_post_commit_not_to_origin(BzrBranchFormat7)
4019breezy.tests.per_branch.test_commit.TestCommitHook.test_post_commit_not_to_origin(BzrBranchFormat8)
4020breezy.tests.per_branch.test_commit.TestCommitHook.test_post_commit_not_to_origin(LocalGitBranchFormat)
4021breezy.tests.per_branch.test_commit.TestCommitHook.test_post_commit_not_to_origin(RemoteBranchFormat-default)
4022breezy.tests.per_branch.test_commit.TestCommitHook.test_post_commit_not_to_origin(RemoteBranchFormat-v2)
4023breezy.tests.per_branch.test_commit.TestCommitHook.test_post_commit_not_to_origin(RemoteGitBranchFormat)
4024breezy.tests.per_branch.test_commit.TestCommitHook.test_post_commit_to_origin(BranchReferenceFormat)
4025breezy.tests.per_branch.test_commit.TestCommitHook.test_post_commit_to_origin(BzrBranchFormat4)
4026breezy.tests.per_branch.test_commit.TestCommitHook.test_post_commit_to_origin(BzrBranchFormat5)
4027breezy.tests.per_branch.test_commit.TestCommitHook.test_post_commit_to_origin(BzrBranchFormat6)
4028breezy.tests.per_branch.test_commit.TestCommitHook.test_post_commit_to_origin(BzrBranchFormat7)
4029breezy.tests.per_branch.test_commit.TestCommitHook.test_post_commit_to_origin(BzrBranchFormat8)
4030breezy.tests.per_branch.test_commit.TestCommitHook.test_post_commit_to_origin(LocalGitBranchFormat)
4031breezy.tests.per_branch.test_commit.TestCommitHook.test_post_commit_to_origin(RemoteBranchFormat-default)
4032breezy.tests.per_branch.test_commit.TestCommitHook.test_post_commit_to_origin(RemoteBranchFormat-v2)
4033breezy.tests.per_branch.test_commit.TestCommitHook.test_post_commit_to_origin(RemoteGitBranchFormat)
4034breezy.tests.per_branch.test_commit.TestCommitHook.test_pre_commit_delta(BranchReferenceFormat)
4035breezy.tests.per_branch.test_commit.TestCommitHook.test_pre_commit_delta(BzrBranchFormat4)
4036breezy.tests.per_branch.test_commit.TestCommitHook.test_pre_commit_delta(BzrBranchFormat5)
4037breezy.tests.per_branch.test_commit.TestCommitHook.test_pre_commit_delta(BzrBranchFormat6)
4038breezy.tests.per_branch.test_commit.TestCommitHook.test_pre_commit_delta(BzrBranchFormat7)
4039breezy.tests.per_branch.test_commit.TestCommitHook.test_pre_commit_delta(BzrBranchFormat8)
4040breezy.tests.per_branch.test_commit.TestCommitHook.test_pre_commit_delta(RemoteBranchFormat-default)
4041breezy.tests.per_branch.test_commit.TestCommitHook.test_pre_commit_delta(RemoteBranchFormat-v2)
4042breezy.tests.per_branch.test_commit.TestCommitHook.test_pre_commit_delta(RemoteGitBranchFormat)
4043breezy.tests.per_branch.test_commit.TestCommitHook.test_pre_commit_fails(BranchReferenceFormat)
4044breezy.tests.per_branch.test_commit.TestCommitHook.test_pre_commit_fails(BzrBranchFormat4)
4045breezy.tests.per_branch.test_commit.TestCommitHook.test_pre_commit_fails(BzrBranchFormat5)
4046breezy.tests.per_branch.test_commit.TestCommitHook.test_pre_commit_fails(BzrBranchFormat6)
4047breezy.tests.per_branch.test_commit.TestCommitHook.test_pre_commit_fails(BzrBranchFormat7)
4048breezy.tests.per_branch.test_commit.TestCommitHook.test_pre_commit_fails(BzrBranchFormat8)
4049breezy.tests.per_branch.test_commit.TestCommitHook.test_pre_commit_fails(LocalGitBranchFormat)
4050breezy.tests.per_branch.test_commit.TestCommitHook.test_pre_commit_fails(RemoteBranchFormat-default)
4051breezy.tests.per_branch.test_commit.TestCommitHook.test_pre_commit_fails(RemoteBranchFormat-v2)
4052breezy.tests.per_branch.test_commit.TestCommitHook.test_pre_commit_fails(RemoteGitBranchFormat)
4053breezy.tests.per_branch.test_commit.TestCommitHook.test_pre_commit_passes(BranchReferenceFormat)
4054breezy.tests.per_branch.test_commit.TestCommitHook.test_pre_commit_passes(BzrBranchFormat4)
4055breezy.tests.per_branch.test_commit.TestCommitHook.test_pre_commit_passes(BzrBranchFormat5)
4056breezy.tests.per_branch.test_commit.TestCommitHook.test_pre_commit_passes(BzrBranchFormat6)
4057breezy.tests.per_branch.test_commit.TestCommitHook.test_pre_commit_passes(BzrBranchFormat7)
4058breezy.tests.per_branch.test_commit.TestCommitHook.test_pre_commit_passes(BzrBranchFormat8)
4059breezy.tests.per_branch.test_commit.TestCommitHook.test_pre_commit_passes(LocalGitBranchFormat)
4060breezy.tests.per_branch.test_commit.TestCommitHook.test_pre_commit_passes(RemoteBranchFormat-default)
4061breezy.tests.per_branch.test_commit.TestCommitHook.test_pre_commit_passes(RemoteBranchFormat-v2)
4062breezy.tests.per_branch.test_commit.TestCommitHook.test_pre_commit_passes(RemoteGitBranchFormat)
4063breezy.tests.per_branch.test_commit.TestCommit.test_commit_nicks(BranchReferenceFormat)
4064breezy.tests.per_branch.test_commit.TestCommit.test_commit_nicks(BzrBranchFormat4)
4065breezy.tests.per_branch.test_commit.TestCommit.test_commit_nicks(BzrBranchFormat5)
4066breezy.tests.per_branch.test_commit.TestCommit.test_commit_nicks(BzrBranchFormat6)
4067breezy.tests.per_branch.test_commit.TestCommit.test_commit_nicks(BzrBranchFormat7)
4068breezy.tests.per_branch.test_commit.TestCommit.test_commit_nicks(BzrBranchFormat8)
4069breezy.tests.per_branch.test_commit.TestCommit.test_commit_nicks(LocalGitBranchFormat)
4070breezy.tests.per_branch.test_commit.TestCommit.test_commit_nicks(RemoteBranchFormat-default)
4071breezy.tests.per_branch.test_commit.TestCommit.test_commit_nicks(RemoteBranchFormat-v2)
4072breezy.tests.per_branch.test_commit.TestCommit.test_commit_nicks(RemoteGitBranchFormat)
4073breezy.tests.per_branch.test_config.TestGetConfig.test_set_submit_branch(BranchReferenceFormat)
4074breezy.tests.per_branch.test_config.TestGetConfig.test_set_submit_branch(BzrBranchFormat4)
4075breezy.tests.per_branch.test_config.TestGetConfig.test_set_submit_branch(BzrBranchFormat5)
4076breezy.tests.per_branch.test_config.TestGetConfig.test_set_submit_branch(BzrBranchFormat6)
4077breezy.tests.per_branch.test_config.TestGetConfig.test_set_submit_branch(BzrBranchFormat7)
4078breezy.tests.per_branch.test_config.TestGetConfig.test_set_submit_branch(BzrBranchFormat8)
4079breezy.tests.per_branch.test_config.TestGetConfig.test_set_submit_branch(LocalGitBranchFormat)
4080breezy.tests.per_branch.test_config.TestGetConfig.test_set_submit_branch(RemoteBranchFormat-default)
4081breezy.tests.per_branch.test_config.TestGetConfig.test_set_submit_branch(RemoteBranchFormat-v2)
4082breezy.tests.per_branch.test_config.TestGetConfig.test_set_submit_branch(RemoteGitBranchFormat)
4083breezy.tests.per_branch.test_config.TestGetConfig.test_set_user_option_with_dict(BranchReferenceFormat)
4084breezy.tests.per_branch.test_config.TestGetConfig.test_set_user_option_with_dict(BzrBranchFormat4)
4085breezy.tests.per_branch.test_config.TestGetConfig.test_set_user_option_with_dict(BzrBranchFormat5)
4086breezy.tests.per_branch.test_config.TestGetConfig.test_set_user_option_with_dict(BzrBranchFormat6)
4087breezy.tests.per_branch.test_config.TestGetConfig.test_set_user_option_with_dict(BzrBranchFormat7)
4088breezy.tests.per_branch.test_config.TestGetConfig.test_set_user_option_with_dict(BzrBranchFormat8)
4089breezy.tests.per_branch.test_config.TestGetConfig.test_set_user_option_with_dict(LocalGitBranchFormat)
4090breezy.tests.per_branch.test_config.TestGetConfig.test_set_user_option_with_dict(RemoteBranchFormat-default)
4091breezy.tests.per_branch.test_config.TestGetConfig.test_set_user_option_with_dict(RemoteBranchFormat-v2)
4092breezy.tests.per_branch.test_config.TestGetConfig.test_set_user_option_with_dict(RemoteGitBranchFormat)
4093breezy.tests.per_branch.test_create_checkout.TestCreateCheckout.test_checkout_format_heavyweight(BranchReferenceFormat)
4094breezy.tests.per_branch.test_create_checkout.TestCreateCheckout.test_checkout_format_heavyweight(BzrBranchFormat4)
4095breezy.tests.per_branch.test_create_checkout.TestCreateCheckout.test_checkout_format_heavyweight(BzrBranchFormat5)
4096breezy.tests.per_branch.test_create_checkout.TestCreateCheckout.test_checkout_format_heavyweight(BzrBranchFormat6)
4097breezy.tests.per_branch.test_create_checkout.TestCreateCheckout.test_checkout_format_heavyweight(BzrBranchFormat7)
4098breezy.tests.per_branch.test_create_checkout.TestCreateCheckout.test_checkout_format_heavyweight(BzrBranchFormat8)
4099breezy.tests.per_branch.test_create_checkout.TestCreateCheckout.test_checkout_format_heavyweight(LocalGitBranchFormat)
4100breezy.tests.per_branch.test_create_checkout.TestCreateCheckout.test_checkout_format_heavyweight(RemoteBranchFormat-default)
4101breezy.tests.per_branch.test_create_checkout.TestCreateCheckout.test_checkout_format_heavyweight(RemoteBranchFormat-v2)
4102breezy.tests.per_branch.test_create_checkout.TestCreateCheckout.test_checkout_format_heavyweight(RemoteGitBranchFormat)
4103breezy.tests.per_branch.test_create_checkout.TestCreateCheckout.test_checkout_format_lightweight(BranchReferenceFormat)
4104breezy.tests.per_branch.test_create_checkout.TestCreateCheckout.test_checkout_format_lightweight(BzrBranchFormat4)
4105breezy.tests.per_branch.test_create_checkout.TestCreateCheckout.test_checkout_format_lightweight(BzrBranchFormat5)
4106breezy.tests.per_branch.test_create_checkout.TestCreateCheckout.test_checkout_format_lightweight(BzrBranchFormat6)
4107breezy.tests.per_branch.test_create_checkout.TestCreateCheckout.test_checkout_format_lightweight(BzrBranchFormat7)
4108breezy.tests.per_branch.test_create_checkout.TestCreateCheckout.test_checkout_format_lightweight(BzrBranchFormat8)
4109breezy.tests.per_branch.test_create_checkout.TestCreateCheckout.test_checkout_format_lightweight(LocalGitBranchFormat)
4110breezy.tests.per_branch.test_create_checkout.TestCreateCheckout.test_checkout_format_lightweight(RemoteBranchFormat-default)
4111breezy.tests.per_branch.test_create_checkout.TestCreateCheckout.test_checkout_format_lightweight(RemoteBranchFormat-v2)
4112breezy.tests.per_branch.test_create_checkout.TestCreateCheckout.test_checkout_format_lightweight(RemoteGitBranchFormat)
4113breezy.tests.per_branch.test_create_checkout.TestCreateCheckout.test_create_checkout_exists(BranchReferenceFormat)
4114breezy.tests.per_branch.test_create_checkout.TestCreateCheckout.test_create_checkout_exists(BzrBranchFormat4)
4115breezy.tests.per_branch.test_create_checkout.TestCreateCheckout.test_create_checkout_exists(BzrBranchFormat5)
4116breezy.tests.per_branch.test_create_checkout.TestCreateCheckout.test_create_checkout_exists(BzrBranchFormat6)
4117breezy.tests.per_branch.test_create_checkout.TestCreateCheckout.test_create_checkout_exists(BzrBranchFormat7)
4118breezy.tests.per_branch.test_create_checkout.TestCreateCheckout.test_create_checkout_exists(BzrBranchFormat8)
4119breezy.tests.per_branch.test_create_checkout.TestCreateCheckout.test_create_checkout_exists(LocalGitBranchFormat)
4120breezy.tests.per_branch.test_create_checkout.TestCreateCheckout.test_create_checkout_exists(RemoteBranchFormat-default)
4121breezy.tests.per_branch.test_create_checkout.TestCreateCheckout.test_create_checkout_exists(RemoteBranchFormat-v2)
4122breezy.tests.per_branch.test_create_checkout.TestCreateCheckout.test_create_checkout_exists(RemoteGitBranchFormat)
4123breezy.tests.per_branch.test_create_checkout.TestCreateCheckout.test_create_lightweight_checkout(BranchReferenceFormat)
4124breezy.tests.per_branch.test_create_checkout.TestCreateCheckout.test_create_lightweight_checkout(BzrBranchFormat4)
4125breezy.tests.per_branch.test_create_checkout.TestCreateCheckout.test_create_lightweight_checkout(BzrBranchFormat5)
4126breezy.tests.per_branch.test_create_checkout.TestCreateCheckout.test_create_lightweight_checkout(BzrBranchFormat6)
4127breezy.tests.per_branch.test_create_checkout.TestCreateCheckout.test_create_lightweight_checkout(BzrBranchFormat7)
4128breezy.tests.per_branch.test_create_checkout.TestCreateCheckout.test_create_lightweight_checkout(BzrBranchFormat8)
4129breezy.tests.per_branch.test_create_checkout.TestCreateCheckout.test_create_lightweight_checkout(LocalGitBranchFormat)
4130breezy.tests.per_branch.test_create_checkout.TestCreateCheckout.test_create_lightweight_checkout(RemoteBranchFormat-default)
4131breezy.tests.per_branch.test_create_checkout.TestCreateCheckout.test_create_lightweight_checkout(RemoteBranchFormat-v2)
4132breezy.tests.per_branch.test_create_checkout.TestCreateCheckout.test_create_lightweight_checkout(RemoteGitBranchFormat)
4133breezy.tests.per_branch.test_create_checkout.TestCreateCheckout.test_create_revision_checkout(BranchReferenceFormat)
4134breezy.tests.per_branch.test_create_checkout.TestCreateCheckout.test_create_revision_checkout(BzrBranchFormat4)
4135breezy.tests.per_branch.test_create_checkout.TestCreateCheckout.test_create_revision_checkout(BzrBranchFormat5)
4136breezy.tests.per_branch.test_create_checkout.TestCreateCheckout.test_create_revision_checkout(BzrBranchFormat6)
4137breezy.tests.per_branch.test_create_checkout.TestCreateCheckout.test_create_revision_checkout(BzrBranchFormat7)
4138breezy.tests.per_branch.test_create_checkout.TestCreateCheckout.test_create_revision_checkout(BzrBranchFormat8)
4139breezy.tests.per_branch.test_create_checkout.TestCreateCheckout.test_create_revision_checkout(LocalGitBranchFormat)
4140breezy.tests.per_branch.test_create_checkout.TestCreateCheckout.test_create_revision_checkout(RemoteBranchFormat-default)
4141breezy.tests.per_branch.test_create_checkout.TestCreateCheckout.test_create_revision_checkout(RemoteBranchFormat-v2)
4142breezy.tests.per_branch.test_create_checkout.TestCreateCheckout.test_create_revision_checkout(RemoteGitBranchFormat)
4143breezy.tests.per_branch.test_create_clone.TestCreateClone.test_create_clone_of_multiple_roots(BranchReferenceFormat)
4144breezy.tests.per_branch.test_create_clone.TestCreateClone.test_create_clone_of_multiple_roots(BzrBranchFormat4)
4145breezy.tests.per_branch.test_create_clone.TestCreateClone.test_create_clone_of_multiple_roots(BzrBranchFormat5)
4146breezy.tests.per_branch.test_create_clone.TestCreateClone.test_create_clone_of_multiple_roots(BzrBranchFormat6)
4147breezy.tests.per_branch.test_create_clone.TestCreateClone.test_create_clone_of_multiple_roots(BzrBranchFormat7)
4148breezy.tests.per_branch.test_create_clone.TestCreateClone.test_create_clone_of_multiple_roots(BzrBranchFormat8)
4149breezy.tests.per_branch.test_create_clone.TestCreateClone.test_create_clone_of_multiple_roots(LocalGitBranchFormat)
4150breezy.tests.per_branch.test_create_clone.TestCreateClone.test_create_clone_of_multiple_roots(RemoteBranchFormat-default)
4151breezy.tests.per_branch.test_create_clone.TestCreateClone.test_create_clone_of_multiple_roots(RemoteBranchFormat-v2)
4152breezy.tests.per_branch.test_create_clone.TestCreateClone.test_create_clone_of_multiple_roots(RemoteGitBranchFormat)
4153breezy.tests.per_branch.test_create_clone.TestCreateClone.test_create_clone_on_transport_missing_parent_dir(BranchReferenceFormat)
4154breezy.tests.per_branch.test_create_clone.TestCreateClone.test_create_clone_on_transport_missing_parent_dir(BzrBranchFormat4)
4155breezy.tests.per_branch.test_create_clone.TestCreateClone.test_create_clone_on_transport_missing_parent_dir(BzrBranchFormat5)
4156breezy.tests.per_branch.test_create_clone.TestCreateClone.test_create_clone_on_transport_missing_parent_dir(BzrBranchFormat6)
4157breezy.tests.per_branch.test_create_clone.TestCreateClone.test_create_clone_on_transport_missing_parent_dir(BzrBranchFormat7)
4158breezy.tests.per_branch.test_create_clone.TestCreateClone.test_create_clone_on_transport_missing_parent_dir(BzrBranchFormat8)
4159breezy.tests.per_branch.test_create_clone.TestCreateClone.test_create_clone_on_transport_missing_parent_dir_create(BranchReferenceFormat)
4160breezy.tests.per_branch.test_create_clone.TestCreateClone.test_create_clone_on_transport_missing_parent_dir_create(BzrBranchFormat4)
4161breezy.tests.per_branch.test_create_clone.TestCreateClone.test_create_clone_on_transport_missing_parent_dir_create(BzrBranchFormat5)
4162breezy.tests.per_branch.test_create_clone.TestCreateClone.test_create_clone_on_transport_missing_parent_dir_create(BzrBranchFormat6)
4163breezy.tests.per_branch.test_create_clone.TestCreateClone.test_create_clone_on_transport_missing_parent_dir_create(BzrBranchFormat7)
4164breezy.tests.per_branch.test_create_clone.TestCreateClone.test_create_clone_on_transport_missing_parent_dir_create(BzrBranchFormat8)
4165breezy.tests.per_branch.test_create_clone.TestCreateClone.test_create_clone_on_transport_missing_parent_dir_create(LocalGitBranchFormat)
4166breezy.tests.per_branch.test_create_clone.TestCreateClone.test_create_clone_on_transport_missing_parent_dir_create(RemoteBranchFormat-default)
4167breezy.tests.per_branch.test_create_clone.TestCreateClone.test_create_clone_on_transport_missing_parent_dir_create(RemoteBranchFormat-v2)
4168breezy.tests.per_branch.test_create_clone.TestCreateClone.test_create_clone_on_transport_missing_parent_dir_create(RemoteGitBranchFormat)
4169breezy.tests.per_branch.test_create_clone.TestCreateClone.test_create_clone_on_transport_missing_parent_dir(LocalGitBranchFormat)
4170breezy.tests.per_branch.test_create_clone.TestCreateClone.test_create_clone_on_transport_missing_parent_dir(RemoteBranchFormat-default)
4171breezy.tests.per_branch.test_create_clone.TestCreateClone.test_create_clone_on_transport_missing_parent_dir(RemoteBranchFormat-v2)
4172breezy.tests.per_branch.test_create_clone.TestCreateClone.test_create_clone_on_transport_missing_parent_dir(RemoteGitBranchFormat)
4173breezy.tests.per_branch.test_create_clone.TestCreateClone.test_create_clone_on_transport_no_revision_id(BranchReferenceFormat)
4174breezy.tests.per_branch.test_create_clone.TestCreateClone.test_create_clone_on_transport_no_revision_id(BzrBranchFormat4)
4175breezy.tests.per_branch.test_create_clone.TestCreateClone.test_create_clone_on_transport_no_revision_id(BzrBranchFormat5)
4176breezy.tests.per_branch.test_create_clone.TestCreateClone.test_create_clone_on_transport_no_revision_id(BzrBranchFormat6)
4177breezy.tests.per_branch.test_create_clone.TestCreateClone.test_create_clone_on_transport_no_revision_id(BzrBranchFormat7)
4178breezy.tests.per_branch.test_create_clone.TestCreateClone.test_create_clone_on_transport_no_revision_id(BzrBranchFormat8)
4179breezy.tests.per_branch.test_create_clone.TestCreateClone.test_create_clone_on_transport_no_revision_id(LocalGitBranchFormat)
4180breezy.tests.per_branch.test_create_clone.TestCreateClone.test_create_clone_on_transport_no_revision_id(RemoteBranchFormat-default)
4181breezy.tests.per_branch.test_create_clone.TestCreateClone.test_create_clone_on_transport_no_revision_id(RemoteBranchFormat-v2)
4182breezy.tests.per_branch.test_create_clone.TestCreateClone.test_create_clone_on_transport_no_revision_id(RemoteGitBranchFormat)
4183breezy.tests.per_branch.test_create_clone.TestCreateClone.test_create_clone_on_transport_revision_id(BranchReferenceFormat)
4184breezy.tests.per_branch.test_create_clone.TestCreateClone.test_create_clone_on_transport_revision_id(BzrBranchFormat4)
4185breezy.tests.per_branch.test_create_clone.TestCreateClone.test_create_clone_on_transport_revision_id(BzrBranchFormat5)
4186breezy.tests.per_branch.test_create_clone.TestCreateClone.test_create_clone_on_transport_revision_id(BzrBranchFormat6)
4187breezy.tests.per_branch.test_create_clone.TestCreateClone.test_create_clone_on_transport_revision_id(BzrBranchFormat7)
4188breezy.tests.per_branch.test_create_clone.TestCreateClone.test_create_clone_on_transport_revision_id(BzrBranchFormat8)
4189breezy.tests.per_branch.test_create_clone.TestCreateClone.test_create_clone_on_transport_revision_id(LocalGitBranchFormat)
4190breezy.tests.per_branch.test_create_clone.TestCreateClone.test_create_clone_on_transport_revision_id(RemoteBranchFormat-default)
4191breezy.tests.per_branch.test_create_clone.TestCreateClone.test_create_clone_on_transport_revision_id(RemoteBranchFormat-v2)
4192breezy.tests.per_branch.test_create_clone.TestCreateClone.test_create_clone_on_transport_revision_id(RemoteGitBranchFormat)
4193breezy.tests.per_branch.test_create_clone.TestCreateClone.test_create_clone_on_transport_stacked(BranchReferenceFormat)
4194breezy.tests.per_branch.test_create_clone.TestCreateClone.test_create_clone_on_transport_stacked(BzrBranchFormat4)
4195breezy.tests.per_branch.test_create_clone.TestCreateClone.test_create_clone_on_transport_stacked(BzrBranchFormat5)
4196breezy.tests.per_branch.test_create_clone.TestCreateClone.test_create_clone_on_transport_stacked(BzrBranchFormat6)
4197breezy.tests.per_branch.test_create_clone.TestCreateClone.test_create_clone_on_transport_stacked(BzrBranchFormat7)
4198breezy.tests.per_branch.test_create_clone.TestCreateClone.test_create_clone_on_transport_stacked(BzrBranchFormat8)
4199breezy.tests.per_branch.test_create_clone.TestCreateClone.test_create_clone_on_transport_stacked_hooks_get_stacked_branch(BranchReferenceFormat)
4200breezy.tests.per_branch.test_create_clone.TestCreateClone.test_create_clone_on_transport_stacked_hooks_get_stacked_branch(BzrBranchFormat4)
4201breezy.tests.per_branch.test_create_clone.TestCreateClone.test_create_clone_on_transport_stacked_hooks_get_stacked_branch(BzrBranchFormat5)
4202breezy.tests.per_branch.test_create_clone.TestCreateClone.test_create_clone_on_transport_stacked_hooks_get_stacked_branch(BzrBranchFormat6)
4203breezy.tests.per_branch.test_create_clone.TestCreateClone.test_create_clone_on_transport_stacked_hooks_get_stacked_branch(BzrBranchFormat7)
4204breezy.tests.per_branch.test_create_clone.TestCreateClone.test_create_clone_on_transport_stacked_hooks_get_stacked_branch(BzrBranchFormat8)
4205breezy.tests.per_branch.test_create_clone.TestCreateClone.test_create_clone_on_transport_stacked_hooks_get_stacked_branch(LocalGitBranchFormat)
4206breezy.tests.per_branch.test_create_clone.TestCreateClone.test_create_clone_on_transport_stacked_hooks_get_stacked_branch(RemoteBranchFormat-default)
4207breezy.tests.per_branch.test_create_clone.TestCreateClone.test_create_clone_on_transport_stacked_hooks_get_stacked_branch(RemoteBranchFormat-v2)
4208breezy.tests.per_branch.test_create_clone.TestCreateClone.test_create_clone_on_transport_stacked_hooks_get_stacked_branch(RemoteGitBranchFormat)
4209breezy.tests.per_branch.test_create_clone.TestCreateClone.test_create_clone_on_transport_stacked(LocalGitBranchFormat)
4210breezy.tests.per_branch.test_create_clone.TestCreateClone.test_create_clone_on_transport_stacked(RemoteBranchFormat-default)
4211breezy.tests.per_branch.test_create_clone.TestCreateClone.test_create_clone_on_transport_stacked(RemoteBranchFormat-v2)
4212breezy.tests.per_branch.test_create_clone.TestCreateClone.test_create_clone_on_transport_stacked(RemoteGitBranchFormat)
4213breezy.tests.per_branch.test_create_clone.TestCreateClone.test_create_clone_on_transport_use_existing_dir_false(BranchReferenceFormat)
4214breezy.tests.per_branch.test_create_clone.TestCreateClone.test_create_clone_on_transport_use_existing_dir_false(BzrBranchFormat4)
4215breezy.tests.per_branch.test_create_clone.TestCreateClone.test_create_clone_on_transport_use_existing_dir_false(BzrBranchFormat5)
4216breezy.tests.per_branch.test_create_clone.TestCreateClone.test_create_clone_on_transport_use_existing_dir_false(BzrBranchFormat6)
4217breezy.tests.per_branch.test_create_clone.TestCreateClone.test_create_clone_on_transport_use_existing_dir_false(BzrBranchFormat7)
4218breezy.tests.per_branch.test_create_clone.TestCreateClone.test_create_clone_on_transport_use_existing_dir_false(BzrBranchFormat8)
4219breezy.tests.per_branch.test_create_clone.TestCreateClone.test_create_clone_on_transport_use_existing_dir_false(LocalGitBranchFormat)
4220breezy.tests.per_branch.test_create_clone.TestCreateClone.test_create_clone_on_transport_use_existing_dir_false(RemoteBranchFormat-default)
4221breezy.tests.per_branch.test_create_clone.TestCreateClone.test_create_clone_on_transport_use_existing_dir_false(RemoteBranchFormat-v2)
4222breezy.tests.per_branch.test_create_clone.TestCreateClone.test_create_clone_on_transport_use_existing_dir_false(RemoteGitBranchFormat)
4223breezy.tests.per_branch.test_create_clone.TestCreateClone.test_create_clone_on_transport_use_existing_dir_true(BranchReferenceFormat)
4224breezy.tests.per_branch.test_create_clone.TestCreateClone.test_create_clone_on_transport_use_existing_dir_true(BzrBranchFormat4)
4225breezy.tests.per_branch.test_create_clone.TestCreateClone.test_create_clone_on_transport_use_existing_dir_true(BzrBranchFormat5)
4226breezy.tests.per_branch.test_create_clone.TestCreateClone.test_create_clone_on_transport_use_existing_dir_true(BzrBranchFormat6)
4227breezy.tests.per_branch.test_create_clone.TestCreateClone.test_create_clone_on_transport_use_existing_dir_true(BzrBranchFormat7)
4228breezy.tests.per_branch.test_create_clone.TestCreateClone.test_create_clone_on_transport_use_existing_dir_true(BzrBranchFormat8)
4229breezy.tests.per_branch.test_create_clone.TestCreateClone.test_create_clone_on_transport_use_existing_dir_true(LocalGitBranchFormat)
4230breezy.tests.per_branch.test_create_clone.TestCreateClone.test_create_clone_on_transport_use_existing_dir_true(RemoteBranchFormat-default)
4231breezy.tests.per_branch.test_create_clone.TestCreateClone.test_create_clone_on_transport_use_existing_dir_true(RemoteBranchFormat-v2)
4232breezy.tests.per_branch.test_create_clone.TestCreateClone.test_create_clone_on_transport_use_existing_dir_true(RemoteGitBranchFormat)
4233breezy.tests.per_branch.test_dotted_revno_to_revision_id.TestDottedRevnoToRevisionId.test_lookup_revision_id_by_dotted(BranchReferenceFormat)
4234breezy.tests.per_branch.test_dotted_revno_to_revision_id.TestDottedRevnoToRevisionId.test_lookup_revision_id_by_dotted(BzrBranchFormat4)
4235breezy.tests.per_branch.test_dotted_revno_to_revision_id.TestDottedRevnoToRevisionId.test_lookup_revision_id_by_dotted(BzrBranchFormat5)
4236breezy.tests.per_branch.test_dotted_revno_to_revision_id.TestDottedRevnoToRevisionId.test_lookup_revision_id_by_dotted(BzrBranchFormat6)
4237breezy.tests.per_branch.test_dotted_revno_to_revision_id.TestDottedRevnoToRevisionId.test_lookup_revision_id_by_dotted(BzrBranchFormat7)
4238breezy.tests.per_branch.test_dotted_revno_to_revision_id.TestDottedRevnoToRevisionId.test_lookup_revision_id_by_dotted(BzrBranchFormat8)
4239breezy.tests.per_branch.test_dotted_revno_to_revision_id.TestDottedRevnoToRevisionId.test_lookup_revision_id_by_dotted(LocalGitBranchFormat)
4240breezy.tests.per_branch.test_dotted_revno_to_revision_id.TestDottedRevnoToRevisionId.test_lookup_revision_id_by_dotted(RemoteBranchFormat-default)
4241breezy.tests.per_branch.test_dotted_revno_to_revision_id.TestDottedRevnoToRevisionId.test_lookup_revision_id_by_dotted(RemoteBranchFormat-v2)
4242breezy.tests.per_branch.test_dotted_revno_to_revision_id.TestDottedRevnoToRevisionId.test_lookup_revision_id_by_dotted(RemoteGitBranchFormat)
4243breezy.tests.per_branch.test_get_revision_id_to_revno_map.TestCaching.test_locked(BranchReferenceFormat)
4244breezy.tests.per_branch.test_get_revision_id_to_revno_map.TestCaching.test_locked(BzrBranchFormat4)
4245breezy.tests.per_branch.test_get_revision_id_to_revno_map.TestCaching.test_locked(BzrBranchFormat5)
4246breezy.tests.per_branch.test_get_revision_id_to_revno_map.TestCaching.test_locked(BzrBranchFormat6)
4247breezy.tests.per_branch.test_get_revision_id_to_revno_map.TestCaching.test_locked(BzrBranchFormat7)
4248breezy.tests.per_branch.test_get_revision_id_to_revno_map.TestCaching.test_locked(BzrBranchFormat8)
4249breezy.tests.per_branch.test_get_revision_id_to_revno_map.TestCaching.test_locked(LocalGitBranchFormat)
4250breezy.tests.per_branch.test_get_revision_id_to_revno_map.TestCaching.test_locked(RemoteBranchFormat-default)
4251breezy.tests.per_branch.test_get_revision_id_to_revno_map.TestCaching.test_locked(RemoteBranchFormat-v2)
4252breezy.tests.per_branch.test_get_revision_id_to_revno_map.TestCaching.test_locked(RemoteGitBranchFormat)
4253breezy.tests.per_branch.test_get_revision_id_to_revno_map.TestCaching.test_set_last_revision_info_when_locked(BranchReferenceFormat)
4254breezy.tests.per_branch.test_get_revision_id_to_revno_map.TestCaching.test_set_last_revision_info_when_locked(BzrBranchFormat4)
4255breezy.tests.per_branch.test_get_revision_id_to_revno_map.TestCaching.test_set_last_revision_info_when_locked(BzrBranchFormat5)
4256breezy.tests.per_branch.test_get_revision_id_to_revno_map.TestCaching.test_set_last_revision_info_when_locked(BzrBranchFormat6)
4257breezy.tests.per_branch.test_get_revision_id_to_revno_map.TestCaching.test_set_last_revision_info_when_locked(BzrBranchFormat7)
4258breezy.tests.per_branch.test_get_revision_id_to_revno_map.TestCaching.test_set_last_revision_info_when_locked(BzrBranchFormat8)
4259breezy.tests.per_branch.test_get_revision_id_to_revno_map.TestCaching.test_set_last_revision_info_when_locked(LocalGitBranchFormat)
4260breezy.tests.per_branch.test_get_revision_id_to_revno_map.TestCaching.test_set_last_revision_info_when_locked(RemoteBranchFormat-default)
4261breezy.tests.per_branch.test_get_revision_id_to_revno_map.TestCaching.test_set_last_revision_info_when_locked(RemoteBranchFormat-v2)
4262breezy.tests.per_branch.test_get_revision_id_to_revno_map.TestCaching.test_set_last_revision_info_when_locked(RemoteGitBranchFormat)
4263breezy.tests.per_branch.test_get_revision_id_to_revno_map.TestCaching.test_unlocked(BranchReferenceFormat)
4264breezy.tests.per_branch.test_get_revision_id_to_revno_map.TestCaching.test_unlocked(BzrBranchFormat4)
4265breezy.tests.per_branch.test_get_revision_id_to_revno_map.TestCaching.test_unlocked(BzrBranchFormat5)
4266breezy.tests.per_branch.test_get_revision_id_to_revno_map.TestCaching.test_unlocked(BzrBranchFormat6)
4267breezy.tests.per_branch.test_get_revision_id_to_revno_map.TestCaching.test_unlocked(BzrBranchFormat7)
4268breezy.tests.per_branch.test_get_revision_id_to_revno_map.TestCaching.test_unlocked(BzrBranchFormat8)
4269breezy.tests.per_branch.test_get_revision_id_to_revno_map.TestCaching.test_unlocked(LocalGitBranchFormat)
4270breezy.tests.per_branch.test_get_revision_id_to_revno_map.TestCaching.test_unlocked(RemoteBranchFormat-default)
4271breezy.tests.per_branch.test_get_revision_id_to_revno_map.TestCaching.test_unlocked(RemoteBranchFormat-v2)
4272breezy.tests.per_branch.test_get_revision_id_to_revno_map.TestCaching.test_unlocked(RemoteGitBranchFormat)
4273breezy.tests.per_branch.test_get_revision_id_to_revno_map.TestRevisionIdToDottedRevno.test_simple_revno(BranchReferenceFormat)
4274breezy.tests.per_branch.test_get_revision_id_to_revno_map.TestRevisionIdToDottedRevno.test_simple_revno(BzrBranchFormat4)
4275breezy.tests.per_branch.test_get_revision_id_to_revno_map.TestRevisionIdToDottedRevno.test_simple_revno(BzrBranchFormat5)
4276breezy.tests.per_branch.test_get_revision_id_to_revno_map.TestRevisionIdToDottedRevno.test_simple_revno(BzrBranchFormat6)
4277breezy.tests.per_branch.test_get_revision_id_to_revno_map.TestRevisionIdToDottedRevno.test_simple_revno(BzrBranchFormat7)
4278breezy.tests.per_branch.test_get_revision_id_to_revno_map.TestRevisionIdToDottedRevno.test_simple_revno(BzrBranchFormat8)
4279breezy.tests.per_branch.test_get_revision_id_to_revno_map.TestRevisionIdToDottedRevno.test_simple_revno(LocalGitBranchFormat)
4280breezy.tests.per_branch.test_get_revision_id_to_revno_map.TestRevisionIdToDottedRevno.test_simple_revno(RemoteBranchFormat-default)
4281breezy.tests.per_branch.test_get_revision_id_to_revno_map.TestRevisionIdToDottedRevno.test_simple_revno(RemoteBranchFormat-v2)
4282breezy.tests.per_branch.test_get_revision_id_to_revno_map.TestRevisionIdToDottedRevno.test_simple_revno(RemoteGitBranchFormat)
4283breezy.tests.per_branch.test_hooks.TestAllMethodsThatChangeTipWillRunHooks.test_generate_revision_history(BranchReferenceFormat)
4284breezy.tests.per_branch.test_hooks.TestAllMethodsThatChangeTipWillRunHooks.test_generate_revision_history(BzrBranchFormat4)
4285breezy.tests.per_branch.test_hooks.TestAllMethodsThatChangeTipWillRunHooks.test_generate_revision_history(BzrBranchFormat5)
4286breezy.tests.per_branch.test_hooks.TestAllMethodsThatChangeTipWillRunHooks.test_generate_revision_history(BzrBranchFormat6)
4287breezy.tests.per_branch.test_hooks.TestAllMethodsThatChangeTipWillRunHooks.test_generate_revision_history(BzrBranchFormat7)
4288breezy.tests.per_branch.test_hooks.TestAllMethodsThatChangeTipWillRunHooks.test_generate_revision_history(BzrBranchFormat8)
4289breezy.tests.per_branch.test_hooks.TestAllMethodsThatChangeTipWillRunHooks.test_generate_revision_history(LocalGitBranchFormat)
4290breezy.tests.per_branch.test_hooks.TestAllMethodsThatChangeTipWillRunHooks.test_generate_revision_history(RemoteBranchFormat-default)
4291breezy.tests.per_branch.test_hooks.TestAllMethodsThatChangeTipWillRunHooks.test_generate_revision_history(RemoteBranchFormat-v2)
4292breezy.tests.per_branch.test_hooks.TestAllMethodsThatChangeTipWillRunHooks.test_generate_revision_history(RemoteGitBranchFormat)
4293breezy.tests.per_branch.test_hooks.TestAllMethodsThatChangeTipWillRunHooks.test_pull(BranchReferenceFormat)
4294breezy.tests.per_branch.test_hooks.TestAllMethodsThatChangeTipWillRunHooks.test_pull(BzrBranchFormat4)
4295breezy.tests.per_branch.test_hooks.TestAllMethodsThatChangeTipWillRunHooks.test_pull(BzrBranchFormat5)
4296breezy.tests.per_branch.test_hooks.TestAllMethodsThatChangeTipWillRunHooks.test_pull(BzrBranchFormat6)
4297breezy.tests.per_branch.test_hooks.TestAllMethodsThatChangeTipWillRunHooks.test_pull(BzrBranchFormat7)
4298breezy.tests.per_branch.test_hooks.TestAllMethodsThatChangeTipWillRunHooks.test_pull(BzrBranchFormat8)
4299breezy.tests.per_branch.test_hooks.TestAllMethodsThatChangeTipWillRunHooks.test_pull(LocalGitBranchFormat)
4300breezy.tests.per_branch.test_hooks.TestAllMethodsThatChangeTipWillRunHooks.test_pull(RemoteBranchFormat-default)
4301breezy.tests.per_branch.test_hooks.TestAllMethodsThatChangeTipWillRunHooks.test_pull(RemoteBranchFormat-v2)
4302breezy.tests.per_branch.test_hooks.TestAllMethodsThatChangeTipWillRunHooks.test_pull(RemoteGitBranchFormat)
4303breezy.tests.per_branch.test_hooks.TestAllMethodsThatChangeTipWillRunHooks.test_push(BranchReferenceFormat)
4304breezy.tests.per_branch.test_hooks.TestAllMethodsThatChangeTipWillRunHooks.test_push(BzrBranchFormat4)
4305breezy.tests.per_branch.test_hooks.TestAllMethodsThatChangeTipWillRunHooks.test_push(BzrBranchFormat5)
4306breezy.tests.per_branch.test_hooks.TestAllMethodsThatChangeTipWillRunHooks.test_push(BzrBranchFormat6)
4307breezy.tests.per_branch.test_hooks.TestAllMethodsThatChangeTipWillRunHooks.test_push(BzrBranchFormat7)
4308breezy.tests.per_branch.test_hooks.TestAllMethodsThatChangeTipWillRunHooks.test_push(BzrBranchFormat8)
4309breezy.tests.per_branch.test_hooks.TestAllMethodsThatChangeTipWillRunHooks.test_push(LocalGitBranchFormat)
4310breezy.tests.per_branch.test_hooks.TestAllMethodsThatChangeTipWillRunHooks.test_push(RemoteBranchFormat-default)
4311breezy.tests.per_branch.test_hooks.TestAllMethodsThatChangeTipWillRunHooks.test_push(RemoteBranchFormat-v2)
4312breezy.tests.per_branch.test_hooks.TestAllMethodsThatChangeTipWillRunHooks.test_push(RemoteGitBranchFormat)
4313breezy.tests.per_branch.test_hooks.TestAllMethodsThatChangeTipWillRunHooks.test_set_last_revision_info(BranchReferenceFormat)
4314breezy.tests.per_branch.test_hooks.TestAllMethodsThatChangeTipWillRunHooks.test_set_last_revision_info(BzrBranchFormat4)
4315breezy.tests.per_branch.test_hooks.TestAllMethodsThatChangeTipWillRunHooks.test_set_last_revision_info(BzrBranchFormat5)
4316breezy.tests.per_branch.test_hooks.TestAllMethodsThatChangeTipWillRunHooks.test_set_last_revision_info(BzrBranchFormat6)
4317breezy.tests.per_branch.test_hooks.TestAllMethodsThatChangeTipWillRunHooks.test_set_last_revision_info(BzrBranchFormat7)
4318breezy.tests.per_branch.test_hooks.TestAllMethodsThatChangeTipWillRunHooks.test_set_last_revision_info(BzrBranchFormat8)
4319breezy.tests.per_branch.test_hooks.TestAllMethodsThatChangeTipWillRunHooks.test_set_last_revision_info(LocalGitBranchFormat)
4320breezy.tests.per_branch.test_hooks.TestAllMethodsThatChangeTipWillRunHooks.test_set_last_revision_info(RemoteBranchFormat-default)
4321breezy.tests.per_branch.test_hooks.TestAllMethodsThatChangeTipWillRunHooks.test_set_last_revision_info(RemoteBranchFormat-v2)
4322breezy.tests.per_branch.test_hooks.TestAllMethodsThatChangeTipWillRunHooks.test_set_last_revision_info(RemoteGitBranchFormat)
4323breezy.tests.per_branch.test_hooks.TestOpen.test_create(BranchReferenceFormat)
4324breezy.tests.per_branch.test_hooks.TestOpen.test_create(BzrBranchFormat4)
4325breezy.tests.per_branch.test_hooks.TestOpen.test_create(BzrBranchFormat5)
4326breezy.tests.per_branch.test_hooks.TestOpen.test_create(BzrBranchFormat6)
4327breezy.tests.per_branch.test_hooks.TestOpen.test_create(BzrBranchFormat7)
4328breezy.tests.per_branch.test_hooks.TestOpen.test_create(BzrBranchFormat8)
4329breezy.tests.per_branch.test_hooks.TestOpen.test_create(LocalGitBranchFormat)
4330breezy.tests.per_branch.test_hooks.TestOpen.test_create(RemoteBranchFormat-default)
4331breezy.tests.per_branch.test_hooks.TestOpen.test_create(RemoteBranchFormat-v2)
4332breezy.tests.per_branch.test_hooks.TestOpen.test_create(RemoteGitBranchFormat)
4333breezy.tests.per_branch.test_hooks.TestOpen.test_open(BranchReferenceFormat)
4334breezy.tests.per_branch.test_hooks.TestOpen.test_open(BzrBranchFormat4)
4335breezy.tests.per_branch.test_hooks.TestOpen.test_open(BzrBranchFormat5)
4336breezy.tests.per_branch.test_hooks.TestOpen.test_open(BzrBranchFormat6)
4337breezy.tests.per_branch.test_hooks.TestOpen.test_open(BzrBranchFormat7)
4338breezy.tests.per_branch.test_hooks.TestOpen.test_open(BzrBranchFormat8)
4339breezy.tests.per_branch.test_hooks.TestOpen.test_open(LocalGitBranchFormat)
4340breezy.tests.per_branch.test_hooks.TestOpen.test_open(RemoteBranchFormat-default)
4341breezy.tests.per_branch.test_hooks.TestOpen.test_open(RemoteBranchFormat-v2)
4342breezy.tests.per_branch.test_hooks.TestOpen.test_open(RemoteGitBranchFormat)
4343breezy.tests.per_branch.test_hooks.TestPostChangeBranchTip.test_branch_is_locked(BranchReferenceFormat)
4344breezy.tests.per_branch.test_hooks.TestPostChangeBranchTip.test_branch_is_locked(BzrBranchFormat4)
4345breezy.tests.per_branch.test_hooks.TestPostChangeBranchTip.test_branch_is_locked(BzrBranchFormat5)
4346breezy.tests.per_branch.test_hooks.TestPostChangeBranchTip.test_branch_is_locked(BzrBranchFormat6)
4347breezy.tests.per_branch.test_hooks.TestPostChangeBranchTip.test_branch_is_locked(BzrBranchFormat7)
4348breezy.tests.per_branch.test_hooks.TestPostChangeBranchTip.test_branch_is_locked(BzrBranchFormat8)
4349breezy.tests.per_branch.test_hooks.TestPostChangeBranchTip.test_branch_is_locked(LocalGitBranchFormat)
4350breezy.tests.per_branch.test_hooks.TestPostChangeBranchTip.test_branch_is_locked(RemoteBranchFormat-default)
4351breezy.tests.per_branch.test_hooks.TestPostChangeBranchTip.test_branch_is_locked(RemoteBranchFormat-v2)
4352breezy.tests.per_branch.test_hooks.TestPostChangeBranchTip.test_branch_is_locked(RemoteGitBranchFormat)
4353breezy.tests.per_branch.test_hooks.TestPostChangeBranchTip.test_calls_all_hooks_no_errors(BranchReferenceFormat)
4354breezy.tests.per_branch.test_hooks.TestPostChangeBranchTip.test_calls_all_hooks_no_errors(BzrBranchFormat4)
4355breezy.tests.per_branch.test_hooks.TestPostChangeBranchTip.test_calls_all_hooks_no_errors(BzrBranchFormat5)
4356breezy.tests.per_branch.test_hooks.TestPostChangeBranchTip.test_calls_all_hooks_no_errors(BzrBranchFormat6)
4357breezy.tests.per_branch.test_hooks.TestPostChangeBranchTip.test_calls_all_hooks_no_errors(BzrBranchFormat7)
4358breezy.tests.per_branch.test_hooks.TestPostChangeBranchTip.test_calls_all_hooks_no_errors(BzrBranchFormat8)
4359breezy.tests.per_branch.test_hooks.TestPostChangeBranchTip.test_calls_all_hooks_no_errors(LocalGitBranchFormat)
4360breezy.tests.per_branch.test_hooks.TestPostChangeBranchTip.test_calls_all_hooks_no_errors(RemoteBranchFormat-default)
4361breezy.tests.per_branch.test_hooks.TestPostChangeBranchTip.test_calls_all_hooks_no_errors(RemoteBranchFormat-v2)
4362breezy.tests.per_branch.test_hooks.TestPostChangeBranchTip.test_calls_all_hooks_no_errors(RemoteGitBranchFormat)
4363breezy.tests.per_branch.test_hooks.TestPostChangeBranchTip.test_empty_history(BranchReferenceFormat)
4364breezy.tests.per_branch.test_hooks.TestPostChangeBranchTip.test_empty_history(BzrBranchFormat4)
4365breezy.tests.per_branch.test_hooks.TestPostChangeBranchTip.test_empty_history(BzrBranchFormat5)
4366breezy.tests.per_branch.test_hooks.TestPostChangeBranchTip.test_empty_history(BzrBranchFormat6)
4367breezy.tests.per_branch.test_hooks.TestPostChangeBranchTip.test_empty_history(BzrBranchFormat7)
4368breezy.tests.per_branch.test_hooks.TestPostChangeBranchTip.test_empty_history(BzrBranchFormat8)
4369breezy.tests.per_branch.test_hooks.TestPostChangeBranchTip.test_empty_history(LocalGitBranchFormat)
4370breezy.tests.per_branch.test_hooks.TestPostChangeBranchTip.test_empty_history(RemoteBranchFormat-default)
4371breezy.tests.per_branch.test_hooks.TestPostChangeBranchTip.test_empty_history(RemoteBranchFormat-v2)
4372breezy.tests.per_branch.test_hooks.TestPostChangeBranchTip.test_empty_history(RemoteGitBranchFormat)
4373breezy.tests.per_branch.test_hooks.TestPostChangeBranchTip.test_hook_runs_after_change(BranchReferenceFormat)
4374breezy.tests.per_branch.test_hooks.TestPostChangeBranchTip.test_hook_runs_after_change(BzrBranchFormat4)
4375breezy.tests.per_branch.test_hooks.TestPostChangeBranchTip.test_hook_runs_after_change(BzrBranchFormat5)
4376breezy.tests.per_branch.test_hooks.TestPostChangeBranchTip.test_hook_runs_after_change(BzrBranchFormat6)
4377breezy.tests.per_branch.test_hooks.TestPostChangeBranchTip.test_hook_runs_after_change(BzrBranchFormat7)
4378breezy.tests.per_branch.test_hooks.TestPostChangeBranchTip.test_hook_runs_after_change(BzrBranchFormat8)
4379breezy.tests.per_branch.test_hooks.TestPostChangeBranchTip.test_hook_runs_after_change(LocalGitBranchFormat)
4380breezy.tests.per_branch.test_hooks.TestPostChangeBranchTip.test_hook_runs_after_change(RemoteBranchFormat-default)
4381breezy.tests.per_branch.test_hooks.TestPostChangeBranchTip.test_hook_runs_after_change(RemoteBranchFormat-v2)
4382breezy.tests.per_branch.test_hooks.TestPostChangeBranchTip.test_hook_runs_after_change(RemoteGitBranchFormat)
4383breezy.tests.per_branch.test_hooks.TestPostChangeBranchTip.test_nonempty_history(BranchReferenceFormat)
4384breezy.tests.per_branch.test_hooks.TestPostChangeBranchTip.test_nonempty_history(BzrBranchFormat4)
4385breezy.tests.per_branch.test_hooks.TestPostChangeBranchTip.test_nonempty_history(BzrBranchFormat5)
4386breezy.tests.per_branch.test_hooks.TestPostChangeBranchTip.test_nonempty_history(BzrBranchFormat6)
4387breezy.tests.per_branch.test_hooks.TestPostChangeBranchTip.test_nonempty_history(BzrBranchFormat7)
4388breezy.tests.per_branch.test_hooks.TestPostChangeBranchTip.test_nonempty_history(BzrBranchFormat8)
4389breezy.tests.per_branch.test_hooks.TestPostChangeBranchTip.test_nonempty_history(LocalGitBranchFormat)
4390breezy.tests.per_branch.test_hooks.TestPostChangeBranchTip.test_nonempty_history(RemoteBranchFormat-default)
4391breezy.tests.per_branch.test_hooks.TestPostChangeBranchTip.test_nonempty_history(RemoteBranchFormat-v2)
4392breezy.tests.per_branch.test_hooks.TestPostChangeBranchTip.test_nonempty_history(RemoteGitBranchFormat)
4393breezy.tests.per_branch.test_hooks.TestPreChangeBranchTip.test_branch_is_locked(BranchReferenceFormat)
4394breezy.tests.per_branch.test_hooks.TestPreChangeBranchTip.test_branch_is_locked(BzrBranchFormat4)
4395breezy.tests.per_branch.test_hooks.TestPreChangeBranchTip.test_branch_is_locked(BzrBranchFormat5)
4396breezy.tests.per_branch.test_hooks.TestPreChangeBranchTip.test_branch_is_locked(BzrBranchFormat6)
4397breezy.tests.per_branch.test_hooks.TestPreChangeBranchTip.test_branch_is_locked(BzrBranchFormat7)
4398breezy.tests.per_branch.test_hooks.TestPreChangeBranchTip.test_branch_is_locked(BzrBranchFormat8)
4399breezy.tests.per_branch.test_hooks.TestPreChangeBranchTip.test_branch_is_locked(LocalGitBranchFormat)
4400breezy.tests.per_branch.test_hooks.TestPreChangeBranchTip.test_branch_is_locked(RemoteBranchFormat-default)
4401breezy.tests.per_branch.test_hooks.TestPreChangeBranchTip.test_branch_is_locked(RemoteBranchFormat-v2)
4402breezy.tests.per_branch.test_hooks.TestPreChangeBranchTip.test_branch_is_locked(RemoteGitBranchFormat)
4403breezy.tests.per_branch.test_hooks.TestPreChangeBranchTip.test_calls_all_hooks_no_errors(BranchReferenceFormat)
4404breezy.tests.per_branch.test_hooks.TestPreChangeBranchTip.test_calls_all_hooks_no_errors(BzrBranchFormat4)
4405breezy.tests.per_branch.test_hooks.TestPreChangeBranchTip.test_calls_all_hooks_no_errors(BzrBranchFormat5)
4406breezy.tests.per_branch.test_hooks.TestPreChangeBranchTip.test_calls_all_hooks_no_errors(BzrBranchFormat6)
4407breezy.tests.per_branch.test_hooks.TestPreChangeBranchTip.test_calls_all_hooks_no_errors(BzrBranchFormat7)
4408breezy.tests.per_branch.test_hooks.TestPreChangeBranchTip.test_calls_all_hooks_no_errors(BzrBranchFormat8)
4409breezy.tests.per_branch.test_hooks.TestPreChangeBranchTip.test_calls_all_hooks_no_errors(LocalGitBranchFormat)
4410breezy.tests.per_branch.test_hooks.TestPreChangeBranchTip.test_calls_all_hooks_no_errors(RemoteBranchFormat-default)
4411breezy.tests.per_branch.test_hooks.TestPreChangeBranchTip.test_calls_all_hooks_no_errors(RemoteBranchFormat-v2)
4412breezy.tests.per_branch.test_hooks.TestPreChangeBranchTip.test_calls_all_hooks_no_errors(RemoteGitBranchFormat)
4413breezy.tests.per_branch.test_hooks.TestPreChangeBranchTip.test_empty_history(BranchReferenceFormat)
4414breezy.tests.per_branch.test_hooks.TestPreChangeBranchTip.test_empty_history(BzrBranchFormat4)
4415breezy.tests.per_branch.test_hooks.TestPreChangeBranchTip.test_empty_history(BzrBranchFormat5)
4416breezy.tests.per_branch.test_hooks.TestPreChangeBranchTip.test_empty_history(BzrBranchFormat6)
4417breezy.tests.per_branch.test_hooks.TestPreChangeBranchTip.test_empty_history(BzrBranchFormat7)
4418breezy.tests.per_branch.test_hooks.TestPreChangeBranchTip.test_empty_history(BzrBranchFormat8)
4419breezy.tests.per_branch.test_hooks.TestPreChangeBranchTip.test_empty_history(LocalGitBranchFormat)
4420breezy.tests.per_branch.test_hooks.TestPreChangeBranchTip.test_empty_history(RemoteBranchFormat-default)
4421breezy.tests.per_branch.test_hooks.TestPreChangeBranchTip.test_empty_history(RemoteBranchFormat-v2)
4422breezy.tests.per_branch.test_hooks.TestPreChangeBranchTip.test_empty_history(RemoteGitBranchFormat)
4423breezy.tests.per_branch.test_hooks.TestPreChangeBranchTip.test_explicit_reject_by_hook(BranchReferenceFormat)
4424breezy.tests.per_branch.test_hooks.TestPreChangeBranchTip.test_explicit_reject_by_hook(BzrBranchFormat4)
4425breezy.tests.per_branch.test_hooks.TestPreChangeBranchTip.test_explicit_reject_by_hook(BzrBranchFormat5)
4426breezy.tests.per_branch.test_hooks.TestPreChangeBranchTip.test_explicit_reject_by_hook(BzrBranchFormat6)
4427breezy.tests.per_branch.test_hooks.TestPreChangeBranchTip.test_explicit_reject_by_hook(BzrBranchFormat7)
4428breezy.tests.per_branch.test_hooks.TestPreChangeBranchTip.test_explicit_reject_by_hook(BzrBranchFormat8)
4429breezy.tests.per_branch.test_hooks.TestPreChangeBranchTip.test_explicit_reject_by_hook(LocalGitBranchFormat)
4430breezy.tests.per_branch.test_hooks.TestPreChangeBranchTip.test_explicit_reject_by_hook(RemoteBranchFormat-default)
4431breezy.tests.per_branch.test_hooks.TestPreChangeBranchTip.test_explicit_reject_by_hook(RemoteBranchFormat-v2)
4432breezy.tests.per_branch.test_hooks.TestPreChangeBranchTip.test_explicit_reject_by_hook(RemoteGitBranchFormat)
4433breezy.tests.per_branch.test_hooks.TestPreChangeBranchTip.test_hook_failure_prevents_change(BranchReferenceFormat)
4434breezy.tests.per_branch.test_hooks.TestPreChangeBranchTip.test_hook_failure_prevents_change(BzrBranchFormat4)
4435breezy.tests.per_branch.test_hooks.TestPreChangeBranchTip.test_hook_failure_prevents_change(BzrBranchFormat5)
4436breezy.tests.per_branch.test_hooks.TestPreChangeBranchTip.test_hook_failure_prevents_change(BzrBranchFormat6)
4437breezy.tests.per_branch.test_hooks.TestPreChangeBranchTip.test_hook_failure_prevents_change(BzrBranchFormat7)
4438breezy.tests.per_branch.test_hooks.TestPreChangeBranchTip.test_hook_failure_prevents_change(BzrBranchFormat8)
4439breezy.tests.per_branch.test_hooks.TestPreChangeBranchTip.test_hook_failure_prevents_change(LocalGitBranchFormat)
4440breezy.tests.per_branch.test_hooks.TestPreChangeBranchTip.test_hook_failure_prevents_change(RemoteBranchFormat-default)
4441breezy.tests.per_branch.test_hooks.TestPreChangeBranchTip.test_hook_failure_prevents_change(RemoteBranchFormat-v2)
4442breezy.tests.per_branch.test_hooks.TestPreChangeBranchTip.test_hook_failure_prevents_change(RemoteGitBranchFormat)
4443breezy.tests.per_branch.test_hooks.TestPreChangeBranchTip.test_hook_runs_before_change(BranchReferenceFormat)
4444breezy.tests.per_branch.test_hooks.TestPreChangeBranchTip.test_hook_runs_before_change(BzrBranchFormat4)
4445breezy.tests.per_branch.test_hooks.TestPreChangeBranchTip.test_hook_runs_before_change(BzrBranchFormat5)
4446breezy.tests.per_branch.test_hooks.TestPreChangeBranchTip.test_hook_runs_before_change(BzrBranchFormat6)
4447breezy.tests.per_branch.test_hooks.TestPreChangeBranchTip.test_hook_runs_before_change(BzrBranchFormat7)
4448breezy.tests.per_branch.test_hooks.TestPreChangeBranchTip.test_hook_runs_before_change(BzrBranchFormat8)
4449breezy.tests.per_branch.test_hooks.TestPreChangeBranchTip.test_hook_runs_before_change(LocalGitBranchFormat)
4450breezy.tests.per_branch.test_hooks.TestPreChangeBranchTip.test_hook_runs_before_change(RemoteBranchFormat-default)
4451breezy.tests.per_branch.test_hooks.TestPreChangeBranchTip.test_hook_runs_before_change(RemoteBranchFormat-v2)
4452breezy.tests.per_branch.test_hooks.TestPreChangeBranchTip.test_hook_runs_before_change(RemoteGitBranchFormat)
4453breezy.tests.per_branch.test_hooks.TestPreChangeBranchTip.test_nonempty_history(BranchReferenceFormat)
4454breezy.tests.per_branch.test_hooks.TestPreChangeBranchTip.test_nonempty_history(BzrBranchFormat4)
4455breezy.tests.per_branch.test_hooks.TestPreChangeBranchTip.test_nonempty_history(BzrBranchFormat5)
4456breezy.tests.per_branch.test_hooks.TestPreChangeBranchTip.test_nonempty_history(BzrBranchFormat6)
4457breezy.tests.per_branch.test_hooks.TestPreChangeBranchTip.test_nonempty_history(BzrBranchFormat7)
4458breezy.tests.per_branch.test_hooks.TestPreChangeBranchTip.test_nonempty_history(BzrBranchFormat8)
4459breezy.tests.per_branch.test_hooks.TestPreChangeBranchTip.test_nonempty_history(LocalGitBranchFormat)
4460breezy.tests.per_branch.test_hooks.TestPreChangeBranchTip.test_nonempty_history(RemoteBranchFormat-default)
4461breezy.tests.per_branch.test_hooks.TestPreChangeBranchTip.test_nonempty_history(RemoteBranchFormat-v2)
4462breezy.tests.per_branch.test_hooks.TestPreChangeBranchTip.test_nonempty_history(RemoteGitBranchFormat)
4463breezy.tests.per_branch.test_http.InaccessibleParentTests.test_clone_invalid_parent(BranchReferenceFormat)
4464breezy.tests.per_branch.test_http.InaccessibleParentTests.test_clone_invalid_parent(BzrBranchFormat4)
4465breezy.tests.per_branch.test_http.InaccessibleParentTests.test_clone_invalid_parent(BzrBranchFormat5)
4466breezy.tests.per_branch.test_http.InaccessibleParentTests.test_clone_invalid_parent(BzrBranchFormat6)
4467breezy.tests.per_branch.test_http.InaccessibleParentTests.test_clone_invalid_parent(BzrBranchFormat7)
4468breezy.tests.per_branch.test_http.InaccessibleParentTests.test_clone_invalid_parent(BzrBranchFormat8)
4469breezy.tests.per_branch.test_http.InaccessibleParentTests.test_clone_invalid_parent(LocalGitBranchFormat)
4470breezy.tests.per_branch.test_http.InaccessibleParentTests.test_clone_invalid_parent(RemoteBranchFormat-default)
4471breezy.tests.per_branch.test_http.InaccessibleParentTests.test_clone_invalid_parent(RemoteBranchFormat-v2)
4472breezy.tests.per_branch.test_http.InaccessibleParentTests.test_clone_invalid_parent(RemoteGitBranchFormat)
4473breezy.tests.per_branch.test_http.InaccessibleParentTests.test_get_parent_invalid(BranchReferenceFormat)
4474breezy.tests.per_branch.test_http.InaccessibleParentTests.test_get_parent_invalid(BzrBranchFormat4)
4475breezy.tests.per_branch.test_http.InaccessibleParentTests.test_get_parent_invalid(BzrBranchFormat5)
4476breezy.tests.per_branch.test_http.InaccessibleParentTests.test_get_parent_invalid(BzrBranchFormat6)
4477breezy.tests.per_branch.test_http.InaccessibleParentTests.test_get_parent_invalid(BzrBranchFormat7)
4478breezy.tests.per_branch.test_http.InaccessibleParentTests.test_get_parent_invalid(BzrBranchFormat8)
4479breezy.tests.per_branch.test_http.InaccessibleParentTests.test_get_parent_invalid(LocalGitBranchFormat)
4480breezy.tests.per_branch.test_http.InaccessibleParentTests.test_get_parent_invalid(RemoteBranchFormat-default)
4481breezy.tests.per_branch.test_http.InaccessibleParentTests.test_get_parent_invalid(RemoteBranchFormat-v2)
4482breezy.tests.per_branch.test_http.InaccessibleParentTests.test_get_parent_invalid(RemoteGitBranchFormat)
4483breezy.tests.per_branch.test_http.InaccessibleParentTests.test_sprout_invalid_parent(BranchReferenceFormat)
4484breezy.tests.per_branch.test_http.InaccessibleParentTests.test_sprout_invalid_parent(BzrBranchFormat4)
4485breezy.tests.per_branch.test_http.InaccessibleParentTests.test_sprout_invalid_parent(BzrBranchFormat5)
4486breezy.tests.per_branch.test_http.InaccessibleParentTests.test_sprout_invalid_parent(BzrBranchFormat6)
4487breezy.tests.per_branch.test_http.InaccessibleParentTests.test_sprout_invalid_parent(BzrBranchFormat7)
4488breezy.tests.per_branch.test_http.InaccessibleParentTests.test_sprout_invalid_parent(BzrBranchFormat8)
4489breezy.tests.per_branch.test_http.InaccessibleParentTests.test_sprout_invalid_parent(LocalGitBranchFormat)
4490breezy.tests.per_branch.test_http.InaccessibleParentTests.test_sprout_invalid_parent(RemoteBranchFormat-default)
4491breezy.tests.per_branch.test_http.InaccessibleParentTests.test_sprout_invalid_parent(RemoteBranchFormat-v2)
4492breezy.tests.per_branch.test_http.InaccessibleParentTests.test_sprout_invalid_parent(RemoteGitBranchFormat)
4493breezy.tests.per_branch.test_iter_merge_sorted_revisions.TestIterMergeSortedRevisionsBushyGraph.test_merge_sorted_exclude_ancestry(BranchReferenceFormat)
4494breezy.tests.per_branch.test_iter_merge_sorted_revisions.TestIterMergeSortedRevisionsBushyGraph.test_merge_sorted_exclude_ancestry(BzrBranchFormat4)
4495breezy.tests.per_branch.test_iter_merge_sorted_revisions.TestIterMergeSortedRevisionsBushyGraph.test_merge_sorted_exclude_ancestry(BzrBranchFormat5)
4496breezy.tests.per_branch.test_iter_merge_sorted_revisions.TestIterMergeSortedRevisionsBushyGraph.test_merge_sorted_exclude_ancestry(BzrBranchFormat6)
4497breezy.tests.per_branch.test_iter_merge_sorted_revisions.TestIterMergeSortedRevisionsBushyGraph.test_merge_sorted_exclude_ancestry(BzrBranchFormat7)
4498breezy.tests.per_branch.test_iter_merge_sorted_revisions.TestIterMergeSortedRevisionsBushyGraph.test_merge_sorted_exclude_ancestry(BzrBranchFormat8)
4499breezy.tests.per_branch.test_iter_merge_sorted_revisions.TestIterMergeSortedRevisionsBushyGraph.test_merge_sorted_exclude_ancestry(LocalGitBranchFormat)
4500breezy.tests.per_branch.test_iter_merge_sorted_revisions.TestIterMergeSortedRevisionsBushyGraph.test_merge_sorted_exclude_ancestry(RemoteBranchFormat-default)
4501breezy.tests.per_branch.test_iter_merge_sorted_revisions.TestIterMergeSortedRevisionsBushyGraph.test_merge_sorted_exclude_ancestry(RemoteBranchFormat-v2)
4502breezy.tests.per_branch.test_iter_merge_sorted_revisions.TestIterMergeSortedRevisionsBushyGraph.test_merge_sorted_exclude_ancestry(RemoteGitBranchFormat)
4503breezy.tests.per_branch.test_iter_merge_sorted_revisions.TestIterMergeSortedRevisionsBushyGraph.test_merge_sorted_starting_at_embedded_merge(BranchReferenceFormat)
4504breezy.tests.per_branch.test_iter_merge_sorted_revisions.TestIterMergeSortedRevisionsBushyGraph.test_merge_sorted_starting_at_embedded_merge(BzrBranchFormat4)
4505breezy.tests.per_branch.test_iter_merge_sorted_revisions.TestIterMergeSortedRevisionsBushyGraph.test_merge_sorted_starting_at_embedded_merge(BzrBranchFormat5)
4506breezy.tests.per_branch.test_iter_merge_sorted_revisions.TestIterMergeSortedRevisionsBushyGraph.test_merge_sorted_starting_at_embedded_merge(BzrBranchFormat6)
4507breezy.tests.per_branch.test_iter_merge_sorted_revisions.TestIterMergeSortedRevisionsBushyGraph.test_merge_sorted_starting_at_embedded_merge(BzrBranchFormat7)
4508breezy.tests.per_branch.test_iter_merge_sorted_revisions.TestIterMergeSortedRevisionsBushyGraph.test_merge_sorted_starting_at_embedded_merge(BzrBranchFormat8)
4509breezy.tests.per_branch.test_iter_merge_sorted_revisions.TestIterMergeSortedRevisionsBushyGraph.test_merge_sorted_starting_at_embedded_merge(LocalGitBranchFormat)
4510breezy.tests.per_branch.test_iter_merge_sorted_revisions.TestIterMergeSortedRevisionsBushyGraph.test_merge_sorted_starting_at_embedded_merge(RemoteBranchFormat-default)
4511breezy.tests.per_branch.test_iter_merge_sorted_revisions.TestIterMergeSortedRevisionsBushyGraph.test_merge_sorted_starting_at_embedded_merge(RemoteBranchFormat-v2)
4512breezy.tests.per_branch.test_iter_merge_sorted_revisions.TestIterMergeSortedRevisionsBushyGraph.test_merge_sorted_starting_at_embedded_merge(RemoteGitBranchFormat)
4513breezy.tests.per_branch.test_iter_merge_sorted_revisions.TestIterMergeSortedRevisionsBushyGraph.test_merge_sorted_with_different_depths_merge(BranchReferenceFormat)
4514breezy.tests.per_branch.test_iter_merge_sorted_revisions.TestIterMergeSortedRevisionsBushyGraph.test_merge_sorted_with_different_depths_merge(BzrBranchFormat4)
4515breezy.tests.per_branch.test_iter_merge_sorted_revisions.TestIterMergeSortedRevisionsBushyGraph.test_merge_sorted_with_different_depths_merge(BzrBranchFormat5)
4516breezy.tests.per_branch.test_iter_merge_sorted_revisions.TestIterMergeSortedRevisionsBushyGraph.test_merge_sorted_with_different_depths_merge(BzrBranchFormat6)
4517breezy.tests.per_branch.test_iter_merge_sorted_revisions.TestIterMergeSortedRevisionsBushyGraph.test_merge_sorted_with_different_depths_merge(BzrBranchFormat7)
4518breezy.tests.per_branch.test_iter_merge_sorted_revisions.TestIterMergeSortedRevisionsBushyGraph.test_merge_sorted_with_different_depths_merge(BzrBranchFormat8)
4519breezy.tests.per_branch.test_iter_merge_sorted_revisions.TestIterMergeSortedRevisionsBushyGraph.test_merge_sorted_with_different_depths_merge(LocalGitBranchFormat)
4520breezy.tests.per_branch.test_iter_merge_sorted_revisions.TestIterMergeSortedRevisionsBushyGraph.test_merge_sorted_with_different_depths_merge(RemoteBranchFormat-default)
4521breezy.tests.per_branch.test_iter_merge_sorted_revisions.TestIterMergeSortedRevisionsBushyGraph.test_merge_sorted_with_different_depths_merge(RemoteBranchFormat-v2)
4522breezy.tests.per_branch.test_iter_merge_sorted_revisions.TestIterMergeSortedRevisionsBushyGraph.test_merge_sorted_with_different_depths_merge(RemoteGitBranchFormat)
4523breezy.tests.per_branch.test_iter_merge_sorted_revisions.TestIterMergeSortedRevisionsSimpleGraph.test_merge_sorted(BranchReferenceFormat)
4524breezy.tests.per_branch.test_iter_merge_sorted_revisions.TestIterMergeSortedRevisionsSimpleGraph.test_merge_sorted(BzrBranchFormat4)
4525breezy.tests.per_branch.test_iter_merge_sorted_revisions.TestIterMergeSortedRevisionsSimpleGraph.test_merge_sorted(BzrBranchFormat5)
4526breezy.tests.per_branch.test_iter_merge_sorted_revisions.TestIterMergeSortedRevisionsSimpleGraph.test_merge_sorted(BzrBranchFormat6)
4527breezy.tests.per_branch.test_iter_merge_sorted_revisions.TestIterMergeSortedRevisionsSimpleGraph.test_merge_sorted(BzrBranchFormat7)
4528breezy.tests.per_branch.test_iter_merge_sorted_revisions.TestIterMergeSortedRevisionsSimpleGraph.test_merge_sorted(BzrBranchFormat8)
4529breezy.tests.per_branch.test_iter_merge_sorted_revisions.TestIterMergeSortedRevisionsSimpleGraph.test_merge_sorted_forward(BranchReferenceFormat)
4530breezy.tests.per_branch.test_iter_merge_sorted_revisions.TestIterMergeSortedRevisionsSimpleGraph.test_merge_sorted_forward(BzrBranchFormat4)
4531breezy.tests.per_branch.test_iter_merge_sorted_revisions.TestIterMergeSortedRevisionsSimpleGraph.test_merge_sorted_forward(BzrBranchFormat5)
4532breezy.tests.per_branch.test_iter_merge_sorted_revisions.TestIterMergeSortedRevisionsSimpleGraph.test_merge_sorted_forward(BzrBranchFormat6)
4533breezy.tests.per_branch.test_iter_merge_sorted_revisions.TestIterMergeSortedRevisionsSimpleGraph.test_merge_sorted_forward(BzrBranchFormat7)
4534breezy.tests.per_branch.test_iter_merge_sorted_revisions.TestIterMergeSortedRevisionsSimpleGraph.test_merge_sorted_forward(BzrBranchFormat8)
4535breezy.tests.per_branch.test_iter_merge_sorted_revisions.TestIterMergeSortedRevisionsSimpleGraph.test_merge_sorted_forward(LocalGitBranchFormat)
4536breezy.tests.per_branch.test_iter_merge_sorted_revisions.TestIterMergeSortedRevisionsSimpleGraph.test_merge_sorted_forward(RemoteBranchFormat-default)
4537breezy.tests.per_branch.test_iter_merge_sorted_revisions.TestIterMergeSortedRevisionsSimpleGraph.test_merge_sorted_forward(RemoteBranchFormat-v2)
4538breezy.tests.per_branch.test_iter_merge_sorted_revisions.TestIterMergeSortedRevisionsSimpleGraph.test_merge_sorted_forward(RemoteGitBranchFormat)
4539breezy.tests.per_branch.test_iter_merge_sorted_revisions.TestIterMergeSortedRevisionsSimpleGraph.test_merge_sorted(LocalGitBranchFormat)
4540breezy.tests.per_branch.test_iter_merge_sorted_revisions.TestIterMergeSortedRevisionsSimpleGraph.test_merge_sorted_range(BranchReferenceFormat)
4541breezy.tests.per_branch.test_iter_merge_sorted_revisions.TestIterMergeSortedRevisionsSimpleGraph.test_merge_sorted_range(BzrBranchFormat4)
4542breezy.tests.per_branch.test_iter_merge_sorted_revisions.TestIterMergeSortedRevisionsSimpleGraph.test_merge_sorted_range(BzrBranchFormat5)
4543breezy.tests.per_branch.test_iter_merge_sorted_revisions.TestIterMergeSortedRevisionsSimpleGraph.test_merge_sorted_range(BzrBranchFormat6)
4544breezy.tests.per_branch.test_iter_merge_sorted_revisions.TestIterMergeSortedRevisionsSimpleGraph.test_merge_sorted_range(BzrBranchFormat7)
4545breezy.tests.per_branch.test_iter_merge_sorted_revisions.TestIterMergeSortedRevisionsSimpleGraph.test_merge_sorted_range(BzrBranchFormat8)
4546breezy.tests.per_branch.test_iter_merge_sorted_revisions.TestIterMergeSortedRevisionsSimpleGraph.test_merge_sorted_range_forward(BranchReferenceFormat)
4547breezy.tests.per_branch.test_iter_merge_sorted_revisions.TestIterMergeSortedRevisionsSimpleGraph.test_merge_sorted_range_forward(BzrBranchFormat4)
4548breezy.tests.per_branch.test_iter_merge_sorted_revisions.TestIterMergeSortedRevisionsSimpleGraph.test_merge_sorted_range_forward(BzrBranchFormat5)
4549breezy.tests.per_branch.test_iter_merge_sorted_revisions.TestIterMergeSortedRevisionsSimpleGraph.test_merge_sorted_range_forward(BzrBranchFormat6)
4550breezy.tests.per_branch.test_iter_merge_sorted_revisions.TestIterMergeSortedRevisionsSimpleGraph.test_merge_sorted_range_forward(BzrBranchFormat7)
4551breezy.tests.per_branch.test_iter_merge_sorted_revisions.TestIterMergeSortedRevisionsSimpleGraph.test_merge_sorted_range_forward(BzrBranchFormat8)
4552breezy.tests.per_branch.test_iter_merge_sorted_revisions.TestIterMergeSortedRevisionsSimpleGraph.test_merge_sorted_range_forward(LocalGitBranchFormat)
4553breezy.tests.per_branch.test_iter_merge_sorted_revisions.TestIterMergeSortedRevisionsSimpleGraph.test_merge_sorted_range_forward(RemoteBranchFormat-default)
4554breezy.tests.per_branch.test_iter_merge_sorted_revisions.TestIterMergeSortedRevisionsSimpleGraph.test_merge_sorted_range_forward(RemoteBranchFormat-v2)
4555breezy.tests.per_branch.test_iter_merge_sorted_revisions.TestIterMergeSortedRevisionsSimpleGraph.test_merge_sorted_range_forward(RemoteGitBranchFormat)
4556breezy.tests.per_branch.test_iter_merge_sorted_revisions.TestIterMergeSortedRevisionsSimpleGraph.test_merge_sorted_range(LocalGitBranchFormat)
4557breezy.tests.per_branch.test_iter_merge_sorted_revisions.TestIterMergeSortedRevisionsSimpleGraph.test_merge_sorted_range(RemoteBranchFormat-default)
4558breezy.tests.per_branch.test_iter_merge_sorted_revisions.TestIterMergeSortedRevisionsSimpleGraph.test_merge_sorted_range(RemoteBranchFormat-v2)
4559breezy.tests.per_branch.test_iter_merge_sorted_revisions.TestIterMergeSortedRevisionsSimpleGraph.test_merge_sorted_range(RemoteGitBranchFormat)
4560breezy.tests.per_branch.test_iter_merge_sorted_revisions.TestIterMergeSortedRevisionsSimpleGraph.test_merge_sorted_range_start_only(BranchReferenceFormat)
4561breezy.tests.per_branch.test_iter_merge_sorted_revisions.TestIterMergeSortedRevisionsSimpleGraph.test_merge_sorted_range_start_only(BzrBranchFormat4)
4562breezy.tests.per_branch.test_iter_merge_sorted_revisions.TestIterMergeSortedRevisionsSimpleGraph.test_merge_sorted_range_start_only(BzrBranchFormat5)
4563breezy.tests.per_branch.test_iter_merge_sorted_revisions.TestIterMergeSortedRevisionsSimpleGraph.test_merge_sorted_range_start_only(BzrBranchFormat6)
4564breezy.tests.per_branch.test_iter_merge_sorted_revisions.TestIterMergeSortedRevisionsSimpleGraph.test_merge_sorted_range_start_only(BzrBranchFormat7)
4565breezy.tests.per_branch.test_iter_merge_sorted_revisions.TestIterMergeSortedRevisionsSimpleGraph.test_merge_sorted_range_start_only(BzrBranchFormat8)
4566breezy.tests.per_branch.test_iter_merge_sorted_revisions.TestIterMergeSortedRevisionsSimpleGraph.test_merge_sorted_range_start_only_forward(BranchReferenceFormat)
4567breezy.tests.per_branch.test_iter_merge_sorted_revisions.TestIterMergeSortedRevisionsSimpleGraph.test_merge_sorted_range_start_only_forward(BzrBranchFormat4)
4568breezy.tests.per_branch.test_iter_merge_sorted_revisions.TestIterMergeSortedRevisionsSimpleGraph.test_merge_sorted_range_start_only_forward(BzrBranchFormat5)
4569breezy.tests.per_branch.test_iter_merge_sorted_revisions.TestIterMergeSortedRevisionsSimpleGraph.test_merge_sorted_range_start_only_forward(BzrBranchFormat6)
4570breezy.tests.per_branch.test_iter_merge_sorted_revisions.TestIterMergeSortedRevisionsSimpleGraph.test_merge_sorted_range_start_only_forward(BzrBranchFormat7)
4571breezy.tests.per_branch.test_iter_merge_sorted_revisions.TestIterMergeSortedRevisionsSimpleGraph.test_merge_sorted_range_start_only_forward(BzrBranchFormat8)
4572breezy.tests.per_branch.test_iter_merge_sorted_revisions.TestIterMergeSortedRevisionsSimpleGraph.test_merge_sorted_range_start_only_forward(LocalGitBranchFormat)
4573breezy.tests.per_branch.test_iter_merge_sorted_revisions.TestIterMergeSortedRevisionsSimpleGraph.test_merge_sorted_range_start_only_forward(RemoteBranchFormat-default)
4574breezy.tests.per_branch.test_iter_merge_sorted_revisions.TestIterMergeSortedRevisionsSimpleGraph.test_merge_sorted_range_start_only_forward(RemoteBranchFormat-v2)
4575breezy.tests.per_branch.test_iter_merge_sorted_revisions.TestIterMergeSortedRevisionsSimpleGraph.test_merge_sorted_range_start_only_forward(RemoteGitBranchFormat)
4576breezy.tests.per_branch.test_iter_merge_sorted_revisions.TestIterMergeSortedRevisionsSimpleGraph.test_merge_sorted_range_start_only(LocalGitBranchFormat)
4577breezy.tests.per_branch.test_iter_merge_sorted_revisions.TestIterMergeSortedRevisionsSimpleGraph.test_merge_sorted_range_start_only(RemoteBranchFormat-default)
4578breezy.tests.per_branch.test_iter_merge_sorted_revisions.TestIterMergeSortedRevisionsSimpleGraph.test_merge_sorted_range_start_only(RemoteBranchFormat-v2)
4579breezy.tests.per_branch.test_iter_merge_sorted_revisions.TestIterMergeSortedRevisionsSimpleGraph.test_merge_sorted_range_start_only(RemoteGitBranchFormat)
4580breezy.tests.per_branch.test_iter_merge_sorted_revisions.TestIterMergeSortedRevisionsSimpleGraph.test_merge_sorted_range_stop_exclude(BranchReferenceFormat)
4581breezy.tests.per_branch.test_iter_merge_sorted_revisions.TestIterMergeSortedRevisionsSimpleGraph.test_merge_sorted_range_stop_exclude(BzrBranchFormat4)
4582breezy.tests.per_branch.test_iter_merge_sorted_revisions.TestIterMergeSortedRevisionsSimpleGraph.test_merge_sorted_range_stop_exclude(BzrBranchFormat5)
4583breezy.tests.per_branch.test_iter_merge_sorted_revisions.TestIterMergeSortedRevisionsSimpleGraph.test_merge_sorted_range_stop_exclude(BzrBranchFormat6)
4584breezy.tests.per_branch.test_iter_merge_sorted_revisions.TestIterMergeSortedRevisionsSimpleGraph.test_merge_sorted_range_stop_exclude(BzrBranchFormat7)
4585breezy.tests.per_branch.test_iter_merge_sorted_revisions.TestIterMergeSortedRevisionsSimpleGraph.test_merge_sorted_range_stop_exclude(BzrBranchFormat8)
4586breezy.tests.per_branch.test_iter_merge_sorted_revisions.TestIterMergeSortedRevisionsSimpleGraph.test_merge_sorted_range_stop_exclude_forward(BranchReferenceFormat)
4587breezy.tests.per_branch.test_iter_merge_sorted_revisions.TestIterMergeSortedRevisionsSimpleGraph.test_merge_sorted_range_stop_exclude_forward(BzrBranchFormat4)
4588breezy.tests.per_branch.test_iter_merge_sorted_revisions.TestIterMergeSortedRevisionsSimpleGraph.test_merge_sorted_range_stop_exclude_forward(BzrBranchFormat5)
4589breezy.tests.per_branch.test_iter_merge_sorted_revisions.TestIterMergeSortedRevisionsSimpleGraph.test_merge_sorted_range_stop_exclude_forward(BzrBranchFormat6)
4590breezy.tests.per_branch.test_iter_merge_sorted_revisions.TestIterMergeSortedRevisionsSimpleGraph.test_merge_sorted_range_stop_exclude_forward(BzrBranchFormat7)
4591breezy.tests.per_branch.test_iter_merge_sorted_revisions.TestIterMergeSortedRevisionsSimpleGraph.test_merge_sorted_range_stop_exclude_forward(BzrBranchFormat8)
4592breezy.tests.per_branch.test_iter_merge_sorted_revisions.TestIterMergeSortedRevisionsSimpleGraph.test_merge_sorted_range_stop_exclude_forward(LocalGitBranchFormat)
4593breezy.tests.per_branch.test_iter_merge_sorted_revisions.TestIterMergeSortedRevisionsSimpleGraph.test_merge_sorted_range_stop_exclude_forward(RemoteBranchFormat-default)
4594breezy.tests.per_branch.test_iter_merge_sorted_revisions.TestIterMergeSortedRevisionsSimpleGraph.test_merge_sorted_range_stop_exclude_forward(RemoteBranchFormat-v2)
4595breezy.tests.per_branch.test_iter_merge_sorted_revisions.TestIterMergeSortedRevisionsSimpleGraph.test_merge_sorted_range_stop_exclude_forward(RemoteGitBranchFormat)
4596breezy.tests.per_branch.test_iter_merge_sorted_revisions.TestIterMergeSortedRevisionsSimpleGraph.test_merge_sorted_range_stop_exclude(LocalGitBranchFormat)
4597breezy.tests.per_branch.test_iter_merge_sorted_revisions.TestIterMergeSortedRevisionsSimpleGraph.test_merge_sorted_range_stop_exclude(RemoteBranchFormat-default)
4598breezy.tests.per_branch.test_iter_merge_sorted_revisions.TestIterMergeSortedRevisionsSimpleGraph.test_merge_sorted_range_stop_exclude(RemoteBranchFormat-v2)
4599breezy.tests.per_branch.test_iter_merge_sorted_revisions.TestIterMergeSortedRevisionsSimpleGraph.test_merge_sorted_range_stop_exclude(RemoteGitBranchFormat)
4600breezy.tests.per_branch.test_iter_merge_sorted_revisions.TestIterMergeSortedRevisionsSimpleGraph.test_merge_sorted_range_stop_include(BranchReferenceFormat)
4601breezy.tests.per_branch.test_iter_merge_sorted_revisions.TestIterMergeSortedRevisionsSimpleGraph.test_merge_sorted_range_stop_include(BzrBranchFormat4)
4602breezy.tests.per_branch.test_iter_merge_sorted_revisions.TestIterMergeSortedRevisionsSimpleGraph.test_merge_sorted_range_stop_include(BzrBranchFormat5)
4603breezy.tests.per_branch.test_iter_merge_sorted_revisions.TestIterMergeSortedRevisionsSimpleGraph.test_merge_sorted_range_stop_include(BzrBranchFormat6)
4604breezy.tests.per_branch.test_iter_merge_sorted_revisions.TestIterMergeSortedRevisionsSimpleGraph.test_merge_sorted_range_stop_include(BzrBranchFormat7)
4605breezy.tests.per_branch.test_iter_merge_sorted_revisions.TestIterMergeSortedRevisionsSimpleGraph.test_merge_sorted_range_stop_include(BzrBranchFormat8)
4606breezy.tests.per_branch.test_iter_merge_sorted_revisions.TestIterMergeSortedRevisionsSimpleGraph.test_merge_sorted_range_stop_include_forward(BranchReferenceFormat)
4607breezy.tests.per_branch.test_iter_merge_sorted_revisions.TestIterMergeSortedRevisionsSimpleGraph.test_merge_sorted_range_stop_include_forward(BzrBranchFormat4)
4608breezy.tests.per_branch.test_iter_merge_sorted_revisions.TestIterMergeSortedRevisionsSimpleGraph.test_merge_sorted_range_stop_include_forward(BzrBranchFormat5)
4609breezy.tests.per_branch.test_iter_merge_sorted_revisions.TestIterMergeSortedRevisionsSimpleGraph.test_merge_sorted_range_stop_include_forward(BzrBranchFormat6)
4610breezy.tests.per_branch.test_iter_merge_sorted_revisions.TestIterMergeSortedRevisionsSimpleGraph.test_merge_sorted_range_stop_include_forward(BzrBranchFormat7)
4611breezy.tests.per_branch.test_iter_merge_sorted_revisions.TestIterMergeSortedRevisionsSimpleGraph.test_merge_sorted_range_stop_include_forward(BzrBranchFormat8)
4612breezy.tests.per_branch.test_iter_merge_sorted_revisions.TestIterMergeSortedRevisionsSimpleGraph.test_merge_sorted_range_stop_include_forward(LocalGitBranchFormat)
4613breezy.tests.per_branch.test_iter_merge_sorted_revisions.TestIterMergeSortedRevisionsSimpleGraph.test_merge_sorted_range_stop_include_forward(RemoteBranchFormat-default)
4614breezy.tests.per_branch.test_iter_merge_sorted_revisions.TestIterMergeSortedRevisionsSimpleGraph.test_merge_sorted_range_stop_include_forward(RemoteBranchFormat-v2)
4615breezy.tests.per_branch.test_iter_merge_sorted_revisions.TestIterMergeSortedRevisionsSimpleGraph.test_merge_sorted_range_stop_include_forward(RemoteGitBranchFormat)
4616breezy.tests.per_branch.test_iter_merge_sorted_revisions.TestIterMergeSortedRevisionsSimpleGraph.test_merge_sorted_range_stop_include(LocalGitBranchFormat)
4617breezy.tests.per_branch.test_iter_merge_sorted_revisions.TestIterMergeSortedRevisionsSimpleGraph.test_merge_sorted_range_stop_include(RemoteBranchFormat-default)
4618breezy.tests.per_branch.test_iter_merge_sorted_revisions.TestIterMergeSortedRevisionsSimpleGraph.test_merge_sorted_range_stop_include(RemoteBranchFormat-v2)
4619breezy.tests.per_branch.test_iter_merge_sorted_revisions.TestIterMergeSortedRevisionsSimpleGraph.test_merge_sorted_range_stop_include(RemoteGitBranchFormat)
4620breezy.tests.per_branch.test_iter_merge_sorted_revisions.TestIterMergeSortedRevisionsSimpleGraph.test_merge_sorted_range_stop_with_merges(BranchReferenceFormat)
4621breezy.tests.per_branch.test_iter_merge_sorted_revisions.TestIterMergeSortedRevisionsSimpleGraph.test_merge_sorted_range_stop_with_merges(BzrBranchFormat4)
4622breezy.tests.per_branch.test_iter_merge_sorted_revisions.TestIterMergeSortedRevisionsSimpleGraph.test_merge_sorted_range_stop_with_merges(BzrBranchFormat5)
4623breezy.tests.per_branch.test_iter_merge_sorted_revisions.TestIterMergeSortedRevisionsSimpleGraph.test_merge_sorted_range_stop_with_merges(BzrBranchFormat6)
4624breezy.tests.per_branch.test_iter_merge_sorted_revisions.TestIterMergeSortedRevisionsSimpleGraph.test_merge_sorted_range_stop_with_merges(BzrBranchFormat7)
4625breezy.tests.per_branch.test_iter_merge_sorted_revisions.TestIterMergeSortedRevisionsSimpleGraph.test_merge_sorted_range_stop_with_merges(BzrBranchFormat8)
4626breezy.tests.per_branch.test_iter_merge_sorted_revisions.TestIterMergeSortedRevisionsSimpleGraph.test_merge_sorted_range_stop_with_merges_can_show_non_parents(BranchReferenceFormat)
4627breezy.tests.per_branch.test_iter_merge_sorted_revisions.TestIterMergeSortedRevisionsSimpleGraph.test_merge_sorted_range_stop_with_merges_can_show_non_parents(BzrBranchFormat4)
4628breezy.tests.per_branch.test_iter_merge_sorted_revisions.TestIterMergeSortedRevisionsSimpleGraph.test_merge_sorted_range_stop_with_merges_can_show_non_parents(BzrBranchFormat5)
4629breezy.tests.per_branch.test_iter_merge_sorted_revisions.TestIterMergeSortedRevisionsSimpleGraph.test_merge_sorted_range_stop_with_merges_can_show_non_parents(BzrBranchFormat6)
4630breezy.tests.per_branch.test_iter_merge_sorted_revisions.TestIterMergeSortedRevisionsSimpleGraph.test_merge_sorted_range_stop_with_merges_can_show_non_parents(BzrBranchFormat7)
4631breezy.tests.per_branch.test_iter_merge_sorted_revisions.TestIterMergeSortedRevisionsSimpleGraph.test_merge_sorted_range_stop_with_merges_can_show_non_parents(BzrBranchFormat8)
4632breezy.tests.per_branch.test_iter_merge_sorted_revisions.TestIterMergeSortedRevisionsSimpleGraph.test_merge_sorted_range_stop_with_merges_can_show_non_parents(LocalGitBranchFormat)
4633breezy.tests.per_branch.test_iter_merge_sorted_revisions.TestIterMergeSortedRevisionsSimpleGraph.test_merge_sorted_range_stop_with_merges_can_show_non_parents(RemoteBranchFormat-default)
4634breezy.tests.per_branch.test_iter_merge_sorted_revisions.TestIterMergeSortedRevisionsSimpleGraph.test_merge_sorted_range_stop_with_merges_can_show_non_parents(RemoteBranchFormat-v2)
4635breezy.tests.per_branch.test_iter_merge_sorted_revisions.TestIterMergeSortedRevisionsSimpleGraph.test_merge_sorted_range_stop_with_merges_can_show_non_parents(RemoteGitBranchFormat)
4636breezy.tests.per_branch.test_iter_merge_sorted_revisions.TestIterMergeSortedRevisionsSimpleGraph.test_merge_sorted_range_stop_with_merges_forward(BranchReferenceFormat)
4637breezy.tests.per_branch.test_iter_merge_sorted_revisions.TestIterMergeSortedRevisionsSimpleGraph.test_merge_sorted_range_stop_with_merges_forward(BzrBranchFormat4)
4638breezy.tests.per_branch.test_iter_merge_sorted_revisions.TestIterMergeSortedRevisionsSimpleGraph.test_merge_sorted_range_stop_with_merges_forward(BzrBranchFormat5)
4639breezy.tests.per_branch.test_iter_merge_sorted_revisions.TestIterMergeSortedRevisionsSimpleGraph.test_merge_sorted_range_stop_with_merges_forward(BzrBranchFormat6)
4640breezy.tests.per_branch.test_iter_merge_sorted_revisions.TestIterMergeSortedRevisionsSimpleGraph.test_merge_sorted_range_stop_with_merges_forward(BzrBranchFormat7)
4641breezy.tests.per_branch.test_iter_merge_sorted_revisions.TestIterMergeSortedRevisionsSimpleGraph.test_merge_sorted_range_stop_with_merges_forward(BzrBranchFormat8)
4642breezy.tests.per_branch.test_iter_merge_sorted_revisions.TestIterMergeSortedRevisionsSimpleGraph.test_merge_sorted_range_stop_with_merges_forward(LocalGitBranchFormat)
4643breezy.tests.per_branch.test_iter_merge_sorted_revisions.TestIterMergeSortedRevisionsSimpleGraph.test_merge_sorted_range_stop_with_merges_forward(RemoteBranchFormat-default)
4644breezy.tests.per_branch.test_iter_merge_sorted_revisions.TestIterMergeSortedRevisionsSimpleGraph.test_merge_sorted_range_stop_with_merges_forward(RemoteBranchFormat-v2)
4645breezy.tests.per_branch.test_iter_merge_sorted_revisions.TestIterMergeSortedRevisionsSimpleGraph.test_merge_sorted_range_stop_with_merges_forward(RemoteGitBranchFormat)
4646breezy.tests.per_branch.test_iter_merge_sorted_revisions.TestIterMergeSortedRevisionsSimpleGraph.test_merge_sorted_range_stop_with_merges_ignore_non_parents(BranchReferenceFormat)
4647breezy.tests.per_branch.test_iter_merge_sorted_revisions.TestIterMergeSortedRevisionsSimpleGraph.test_merge_sorted_range_stop_with_merges_ignore_non_parents(BzrBranchFormat4)
4648breezy.tests.per_branch.test_iter_merge_sorted_revisions.TestIterMergeSortedRevisionsSimpleGraph.test_merge_sorted_range_stop_with_merges_ignore_non_parents(BzrBranchFormat5)
4649breezy.tests.per_branch.test_iter_merge_sorted_revisions.TestIterMergeSortedRevisionsSimpleGraph.test_merge_sorted_range_stop_with_merges_ignore_non_parents(BzrBranchFormat6)
4650breezy.tests.per_branch.test_iter_merge_sorted_revisions.TestIterMergeSortedRevisionsSimpleGraph.test_merge_sorted_range_stop_with_merges_ignore_non_parents(BzrBranchFormat7)
4651breezy.tests.per_branch.test_iter_merge_sorted_revisions.TestIterMergeSortedRevisionsSimpleGraph.test_merge_sorted_range_stop_with_merges_ignore_non_parents(BzrBranchFormat8)
4652breezy.tests.per_branch.test_iter_merge_sorted_revisions.TestIterMergeSortedRevisionsSimpleGraph.test_merge_sorted_range_stop_with_merges_ignore_non_parents(LocalGitBranchFormat)
4653breezy.tests.per_branch.test_iter_merge_sorted_revisions.TestIterMergeSortedRevisionsSimpleGraph.test_merge_sorted_range_stop_with_merges_ignore_non_parents(RemoteBranchFormat-default)
4654breezy.tests.per_branch.test_iter_merge_sorted_revisions.TestIterMergeSortedRevisionsSimpleGraph.test_merge_sorted_range_stop_with_merges_ignore_non_parents(RemoteBranchFormat-v2)
4655breezy.tests.per_branch.test_iter_merge_sorted_revisions.TestIterMergeSortedRevisionsSimpleGraph.test_merge_sorted_range_stop_with_merges_ignore_non_parents(RemoteGitBranchFormat)
4656breezy.tests.per_branch.test_iter_merge_sorted_revisions.TestIterMergeSortedRevisionsSimpleGraph.test_merge_sorted_range_stop_with_merges(LocalGitBranchFormat)
4657breezy.tests.per_branch.test_iter_merge_sorted_revisions.TestIterMergeSortedRevisionsSimpleGraph.test_merge_sorted_range_stop_with_merges(RemoteBranchFormat-default)
4658breezy.tests.per_branch.test_iter_merge_sorted_revisions.TestIterMergeSortedRevisionsSimpleGraph.test_merge_sorted_range_stop_with_merges(RemoteBranchFormat-v2)
4659breezy.tests.per_branch.test_iter_merge_sorted_revisions.TestIterMergeSortedRevisionsSimpleGraph.test_merge_sorted_range_stop_with_merges(RemoteGitBranchFormat)
4660breezy.tests.per_branch.test_iter_merge_sorted_revisions.TestIterMergeSortedRevisionsSimpleGraph.test_merge_sorted(RemoteBranchFormat-default)
4661breezy.tests.per_branch.test_iter_merge_sorted_revisions.TestIterMergeSortedRevisionsSimpleGraph.test_merge_sorted(RemoteBranchFormat-v2)
4662breezy.tests.per_branch.test_iter_merge_sorted_revisions.TestIterMergeSortedRevisionsSimpleGraph.test_merge_sorted(RemoteGitBranchFormat)
4663breezy.tests.per_branch.test_iter_merge_sorted_revisions.TestIterMergeSortedRevisionsSimpleGraph.test_merge_sorted_single_stop_exclude(BranchReferenceFormat)
4664breezy.tests.per_branch.test_iter_merge_sorted_revisions.TestIterMergeSortedRevisionsSimpleGraph.test_merge_sorted_single_stop_exclude(BzrBranchFormat4)
4665breezy.tests.per_branch.test_iter_merge_sorted_revisions.TestIterMergeSortedRevisionsSimpleGraph.test_merge_sorted_single_stop_exclude(BzrBranchFormat5)
4666breezy.tests.per_branch.test_iter_merge_sorted_revisions.TestIterMergeSortedRevisionsSimpleGraph.test_merge_sorted_single_stop_exclude(BzrBranchFormat6)
4667breezy.tests.per_branch.test_iter_merge_sorted_revisions.TestIterMergeSortedRevisionsSimpleGraph.test_merge_sorted_single_stop_exclude(BzrBranchFormat7)
4668breezy.tests.per_branch.test_iter_merge_sorted_revisions.TestIterMergeSortedRevisionsSimpleGraph.test_merge_sorted_single_stop_exclude(BzrBranchFormat8)
4669breezy.tests.per_branch.test_iter_merge_sorted_revisions.TestIterMergeSortedRevisionsSimpleGraph.test_merge_sorted_single_stop_exclude(LocalGitBranchFormat)
4670breezy.tests.per_branch.test_iter_merge_sorted_revisions.TestIterMergeSortedRevisionsSimpleGraph.test_merge_sorted_single_stop_exclude(RemoteBranchFormat-default)
4671breezy.tests.per_branch.test_iter_merge_sorted_revisions.TestIterMergeSortedRevisionsSimpleGraph.test_merge_sorted_single_stop_exclude(RemoteBranchFormat-v2)
4672breezy.tests.per_branch.test_iter_merge_sorted_revisions.TestIterMergeSortedRevisionsSimpleGraph.test_merge_sorted_single_stop_exclude(RemoteGitBranchFormat)
4673breezy.tests.per_branch.test_iter_merge_sorted_revisions.TestIterMergeSortedRevisionsSimpleGraph.test_merge_sorted_single_stop_include(BranchReferenceFormat)
4674breezy.tests.per_branch.test_iter_merge_sorted_revisions.TestIterMergeSortedRevisionsSimpleGraph.test_merge_sorted_single_stop_include(BzrBranchFormat4)
4675breezy.tests.per_branch.test_iter_merge_sorted_revisions.TestIterMergeSortedRevisionsSimpleGraph.test_merge_sorted_single_stop_include(BzrBranchFormat5)
4676breezy.tests.per_branch.test_iter_merge_sorted_revisions.TestIterMergeSortedRevisionsSimpleGraph.test_merge_sorted_single_stop_include(BzrBranchFormat6)
4677breezy.tests.per_branch.test_iter_merge_sorted_revisions.TestIterMergeSortedRevisionsSimpleGraph.test_merge_sorted_single_stop_include(BzrBranchFormat7)
4678breezy.tests.per_branch.test_iter_merge_sorted_revisions.TestIterMergeSortedRevisionsSimpleGraph.test_merge_sorted_single_stop_include(BzrBranchFormat8)
4679breezy.tests.per_branch.test_iter_merge_sorted_revisions.TestIterMergeSortedRevisionsSimpleGraph.test_merge_sorted_single_stop_include(LocalGitBranchFormat)
4680breezy.tests.per_branch.test_iter_merge_sorted_revisions.TestIterMergeSortedRevisionsSimpleGraph.test_merge_sorted_single_stop_include(RemoteBranchFormat-default)
4681breezy.tests.per_branch.test_iter_merge_sorted_revisions.TestIterMergeSortedRevisionsSimpleGraph.test_merge_sorted_single_stop_include(RemoteBranchFormat-v2)
4682breezy.tests.per_branch.test_iter_merge_sorted_revisions.TestIterMergeSortedRevisionsSimpleGraph.test_merge_sorted_single_stop_include(RemoteGitBranchFormat)
4683breezy.tests.per_branch.test_iter_merge_sorted_revisions.TestIterMergeSortedRevisionsSimpleGraph.test_merge_sorted_single_stop_with_merges(BranchReferenceFormat)
4684breezy.tests.per_branch.test_iter_merge_sorted_revisions.TestIterMergeSortedRevisionsSimpleGraph.test_merge_sorted_single_stop_with_merges(BzrBranchFormat4)
4685breezy.tests.per_branch.test_iter_merge_sorted_revisions.TestIterMergeSortedRevisionsSimpleGraph.test_merge_sorted_single_stop_with_merges(BzrBranchFormat5)
4686breezy.tests.per_branch.test_iter_merge_sorted_revisions.TestIterMergeSortedRevisionsSimpleGraph.test_merge_sorted_single_stop_with_merges(BzrBranchFormat6)
4687breezy.tests.per_branch.test_iter_merge_sorted_revisions.TestIterMergeSortedRevisionsSimpleGraph.test_merge_sorted_single_stop_with_merges(BzrBranchFormat7)
4688breezy.tests.per_branch.test_iter_merge_sorted_revisions.TestIterMergeSortedRevisionsSimpleGraph.test_merge_sorted_single_stop_with_merges(BzrBranchFormat8)
4689breezy.tests.per_branch.test_iter_merge_sorted_revisions.TestIterMergeSortedRevisionsSimpleGraph.test_merge_sorted_single_stop_with_merges(LocalGitBranchFormat)
4690breezy.tests.per_branch.test_iter_merge_sorted_revisions.TestIterMergeSortedRevisionsSimpleGraph.test_merge_sorted_single_stop_with_merges(RemoteBranchFormat-default)
4691breezy.tests.per_branch.test_iter_merge_sorted_revisions.TestIterMergeSortedRevisionsSimpleGraph.test_merge_sorted_single_stop_with_merges(RemoteBranchFormat-v2)
4692breezy.tests.per_branch.test_iter_merge_sorted_revisions.TestIterMergeSortedRevisionsSimpleGraph.test_merge_sorted_single_stop_with_merges(RemoteGitBranchFormat)
4693breezy.tests.per_branch.test_last_revision_info.TestLastRevisionInfo.test_empty_branch(BranchReferenceFormat)
4694breezy.tests.per_branch.test_last_revision_info.TestLastRevisionInfo.test_empty_branch(BzrBranchFormat4)
4695breezy.tests.per_branch.test_last_revision_info.TestLastRevisionInfo.test_empty_branch(BzrBranchFormat5)
4696breezy.tests.per_branch.test_last_revision_info.TestLastRevisionInfo.test_empty_branch(BzrBranchFormat6)
4697breezy.tests.per_branch.test_last_revision_info.TestLastRevisionInfo.test_empty_branch(BzrBranchFormat7)
4698breezy.tests.per_branch.test_last_revision_info.TestLastRevisionInfo.test_empty_branch(BzrBranchFormat8)
4699breezy.tests.per_branch.test_last_revision_info.TestLastRevisionInfo.test_empty_branch(LocalGitBranchFormat)
4700breezy.tests.per_branch.test_last_revision_info.TestLastRevisionInfo.test_empty_branch(RemoteBranchFormat-default)
4701breezy.tests.per_branch.test_last_revision_info.TestLastRevisionInfo.test_empty_branch(RemoteBranchFormat-v2)
4702breezy.tests.per_branch.test_last_revision_info.TestLastRevisionInfo.test_empty_branch(RemoteGitBranchFormat)
4703breezy.tests.per_branch.test_last_revision_info.TestLastRevisionInfo.test_import(BranchReferenceFormat)
4704breezy.tests.per_branch.test_last_revision_info.TestLastRevisionInfo.test_import(BzrBranchFormat4)
4705breezy.tests.per_branch.test_last_revision_info.TestLastRevisionInfo.test_import(BzrBranchFormat5)
4706breezy.tests.per_branch.test_last_revision_info.TestLastRevisionInfo.test_import(BzrBranchFormat6)
4707breezy.tests.per_branch.test_last_revision_info.TestLastRevisionInfo.test_import(BzrBranchFormat7)
4708breezy.tests.per_branch.test_last_revision_info.TestLastRevisionInfo.test_import(BzrBranchFormat8)
4709breezy.tests.per_branch.test_last_revision_info.TestLastRevisionInfo.test_import(LocalGitBranchFormat)
4710breezy.tests.per_branch.test_last_revision_info.TestLastRevisionInfo.test_import_lossy(BranchReferenceFormat)
4711breezy.tests.per_branch.test_last_revision_info.TestLastRevisionInfo.test_import_lossy(BzrBranchFormat4)
4712breezy.tests.per_branch.test_last_revision_info.TestLastRevisionInfo.test_import_lossy(BzrBranchFormat5)
4713breezy.tests.per_branch.test_last_revision_info.TestLastRevisionInfo.test_import_lossy(BzrBranchFormat6)
4714breezy.tests.per_branch.test_last_revision_info.TestLastRevisionInfo.test_import_lossy(BzrBranchFormat7)
4715breezy.tests.per_branch.test_last_revision_info.TestLastRevisionInfo.test_import_lossy(BzrBranchFormat8)
4716breezy.tests.per_branch.test_last_revision_info.TestLastRevisionInfo.test_import_lossy(LocalGitBranchFormat)
4717breezy.tests.per_branch.test_last_revision_info.TestLastRevisionInfo.test_import_lossy(RemoteBranchFormat-default)
4718breezy.tests.per_branch.test_last_revision_info.TestLastRevisionInfo.test_import_lossy(RemoteBranchFormat-v2)
4719breezy.tests.per_branch.test_last_revision_info.TestLastRevisionInfo.test_import_lossy(RemoteGitBranchFormat)
4720breezy.tests.per_branch.test_last_revision_info.TestLastRevisionInfo.test_import(RemoteBranchFormat-default)
4721breezy.tests.per_branch.test_last_revision_info.TestLastRevisionInfo.test_import(RemoteBranchFormat-v2)
4722breezy.tests.per_branch.test_last_revision_info.TestLastRevisionInfo.test_import(RemoteGitBranchFormat)
4723breezy.tests.per_branch.test_last_revision_info.TestLastRevisionInfo.test_non_empty_branch(BranchReferenceFormat)
4724breezy.tests.per_branch.test_last_revision_info.TestLastRevisionInfo.test_non_empty_branch(BzrBranchFormat4)
4725breezy.tests.per_branch.test_last_revision_info.TestLastRevisionInfo.test_non_empty_branch(BzrBranchFormat5)
4726breezy.tests.per_branch.test_last_revision_info.TestLastRevisionInfo.test_non_empty_branch(BzrBranchFormat6)
4727breezy.tests.per_branch.test_last_revision_info.TestLastRevisionInfo.test_non_empty_branch(BzrBranchFormat7)
4728breezy.tests.per_branch.test_last_revision_info.TestLastRevisionInfo.test_non_empty_branch(BzrBranchFormat8)
4729breezy.tests.per_branch.test_last_revision_info.TestLastRevisionInfo.test_non_empty_branch(LocalGitBranchFormat)
4730breezy.tests.per_branch.test_last_revision_info.TestLastRevisionInfo.test_non_empty_branch(RemoteBranchFormat-default)
4731breezy.tests.per_branch.test_last_revision_info.TestLastRevisionInfo.test_non_empty_branch(RemoteBranchFormat-v2)
4732breezy.tests.per_branch.test_last_revision_info.TestLastRevisionInfo.test_non_empty_branch(RemoteGitBranchFormat)
4733breezy.tests.per_branch.test_last_revision_info.TestLastRevisionInfo.test_same_repo(BranchReferenceFormat)
4734breezy.tests.per_branch.test_last_revision_info.TestLastRevisionInfo.test_same_repo(BzrBranchFormat4)
4735breezy.tests.per_branch.test_last_revision_info.TestLastRevisionInfo.test_same_repo(BzrBranchFormat5)
4736breezy.tests.per_branch.test_last_revision_info.TestLastRevisionInfo.test_same_repo(BzrBranchFormat6)
4737breezy.tests.per_branch.test_last_revision_info.TestLastRevisionInfo.test_same_repo(BzrBranchFormat7)
4738breezy.tests.per_branch.test_last_revision_info.TestLastRevisionInfo.test_same_repo(BzrBranchFormat8)
4739breezy.tests.per_branch.test_last_revision_info.TestLastRevisionInfo.test_same_repo(LocalGitBranchFormat)
4740breezy.tests.per_branch.test_last_revision_info.TestLastRevisionInfo.test_same_repo(RemoteBranchFormat-default)
4741breezy.tests.per_branch.test_last_revision_info.TestLastRevisionInfo.test_same_repo(RemoteBranchFormat-v2)
4742breezy.tests.per_branch.test_last_revision_info.TestLastRevisionInfo.test_same_repo(RemoteGitBranchFormat)
4743breezy.tests.per_branch.test_locking.TestBranchLocking.test_01_lock_read(BranchReferenceFormat)
4744breezy.tests.per_branch.test_locking.TestBranchLocking.test_01_lock_read(BzrBranchFormat4)
4745breezy.tests.per_branch.test_locking.TestBranchLocking.test_01_lock_read(BzrBranchFormat5)
4746breezy.tests.per_branch.test_locking.TestBranchLocking.test_01_lock_read(BzrBranchFormat6)
4747breezy.tests.per_branch.test_locking.TestBranchLocking.test_01_lock_read(BzrBranchFormat7)
4748breezy.tests.per_branch.test_locking.TestBranchLocking.test_01_lock_read(BzrBranchFormat8)
4749breezy.tests.per_branch.test_locking.TestBranchLocking.test_01_lock_read(LocalGitBranchFormat)
4750breezy.tests.per_branch.test_locking.TestBranchLocking.test_01_lock_read(RemoteBranchFormat-default)
4751breezy.tests.per_branch.test_locking.TestBranchLocking.test_01_lock_read(RemoteBranchFormat-v2)
4752breezy.tests.per_branch.test_locking.TestBranchLocking.test_01_lock_read(RemoteGitBranchFormat)
4753breezy.tests.per_branch.test_locking.TestBranchLocking.test_02_lock_write(BranchReferenceFormat)
4754breezy.tests.per_branch.test_locking.TestBranchLocking.test_02_lock_write(BzrBranchFormat4)
4755breezy.tests.per_branch.test_locking.TestBranchLocking.test_02_lock_write(BzrBranchFormat5)
4756breezy.tests.per_branch.test_locking.TestBranchLocking.test_02_lock_write(BzrBranchFormat6)
4757breezy.tests.per_branch.test_locking.TestBranchLocking.test_02_lock_write(BzrBranchFormat7)
4758breezy.tests.per_branch.test_locking.TestBranchLocking.test_02_lock_write(BzrBranchFormat8)
4759breezy.tests.per_branch.test_locking.TestBranchLocking.test_02_lock_write(LocalGitBranchFormat)
4760breezy.tests.per_branch.test_locking.TestBranchLocking.test_02_lock_write(RemoteBranchFormat-default)
4761breezy.tests.per_branch.test_locking.TestBranchLocking.test_02_lock_write(RemoteBranchFormat-v2)
4762breezy.tests.per_branch.test_locking.TestBranchLocking.test_02_lock_write(RemoteGitBranchFormat)
4763breezy.tests.per_branch.test_locking.TestBranchLocking.test_03_lock_fail_unlock_repo(BranchReferenceFormat)
4764breezy.tests.per_branch.test_locking.TestBranchLocking.test_03_lock_fail_unlock_repo(BzrBranchFormat4)
4765breezy.tests.per_branch.test_locking.TestBranchLocking.test_03_lock_fail_unlock_repo(BzrBranchFormat5)
4766breezy.tests.per_branch.test_locking.TestBranchLocking.test_03_lock_fail_unlock_repo(BzrBranchFormat6)
4767breezy.tests.per_branch.test_locking.TestBranchLocking.test_03_lock_fail_unlock_repo(BzrBranchFormat7)
4768breezy.tests.per_branch.test_locking.TestBranchLocking.test_03_lock_fail_unlock_repo(BzrBranchFormat8)
4769breezy.tests.per_branch.test_locking.TestBranchLocking.test_03_lock_fail_unlock_repo(LocalGitBranchFormat)
4770breezy.tests.per_branch.test_locking.TestBranchLocking.test_03_lock_fail_unlock_repo(RemoteBranchFormat-default)
4771breezy.tests.per_branch.test_locking.TestBranchLocking.test_03_lock_fail_unlock_repo(RemoteBranchFormat-v2)
4772breezy.tests.per_branch.test_locking.TestBranchLocking.test_03_lock_fail_unlock_repo(RemoteGitBranchFormat)
4773breezy.tests.per_branch.test_locking.TestBranchLocking.test_04_lock_fail_unlock_control(BranchReferenceFormat)
4774breezy.tests.per_branch.test_locking.TestBranchLocking.test_04_lock_fail_unlock_control(BzrBranchFormat4)
4775breezy.tests.per_branch.test_locking.TestBranchLocking.test_04_lock_fail_unlock_control(BzrBranchFormat5)
4776breezy.tests.per_branch.test_locking.TestBranchLocking.test_04_lock_fail_unlock_control(BzrBranchFormat6)
4777breezy.tests.per_branch.test_locking.TestBranchLocking.test_04_lock_fail_unlock_control(BzrBranchFormat7)
4778breezy.tests.per_branch.test_locking.TestBranchLocking.test_04_lock_fail_unlock_control(BzrBranchFormat8)
4779breezy.tests.per_branch.test_locking.TestBranchLocking.test_04_lock_fail_unlock_control(LocalGitBranchFormat)
4780breezy.tests.per_branch.test_locking.TestBranchLocking.test_04_lock_fail_unlock_control(RemoteBranchFormat-default)
4781breezy.tests.per_branch.test_locking.TestBranchLocking.test_04_lock_fail_unlock_control(RemoteBranchFormat-v2)
4782breezy.tests.per_branch.test_locking.TestBranchLocking.test_04_lock_fail_unlock_control(RemoteGitBranchFormat)
4783breezy.tests.per_branch.test_locking.TestBranchLocking.test_05_lock_read_fail_repo(BranchReferenceFormat)
4784breezy.tests.per_branch.test_locking.TestBranchLocking.test_05_lock_read_fail_repo(BzrBranchFormat4)
4785breezy.tests.per_branch.test_locking.TestBranchLocking.test_05_lock_read_fail_repo(BzrBranchFormat5)
4786breezy.tests.per_branch.test_locking.TestBranchLocking.test_05_lock_read_fail_repo(BzrBranchFormat6)
4787breezy.tests.per_branch.test_locking.TestBranchLocking.test_05_lock_read_fail_repo(BzrBranchFormat7)
4788breezy.tests.per_branch.test_locking.TestBranchLocking.test_05_lock_read_fail_repo(BzrBranchFormat8)
4789breezy.tests.per_branch.test_locking.TestBranchLocking.test_05_lock_read_fail_repo(LocalGitBranchFormat)
4790breezy.tests.per_branch.test_locking.TestBranchLocking.test_05_lock_read_fail_repo(RemoteBranchFormat-default)
4791breezy.tests.per_branch.test_locking.TestBranchLocking.test_05_lock_read_fail_repo(RemoteBranchFormat-v2)
4792breezy.tests.per_branch.test_locking.TestBranchLocking.test_05_lock_read_fail_repo(RemoteGitBranchFormat)
4793breezy.tests.per_branch.test_locking.TestBranchLocking.test_06_lock_write_fail_repo(BranchReferenceFormat)
4794breezy.tests.per_branch.test_locking.TestBranchLocking.test_06_lock_write_fail_repo(BzrBranchFormat4)
4795breezy.tests.per_branch.test_locking.TestBranchLocking.test_06_lock_write_fail_repo(BzrBranchFormat5)
4796breezy.tests.per_branch.test_locking.TestBranchLocking.test_06_lock_write_fail_repo(BzrBranchFormat6)
4797breezy.tests.per_branch.test_locking.TestBranchLocking.test_06_lock_write_fail_repo(BzrBranchFormat7)
4798breezy.tests.per_branch.test_locking.TestBranchLocking.test_06_lock_write_fail_repo(BzrBranchFormat8)
4799breezy.tests.per_branch.test_locking.TestBranchLocking.test_06_lock_write_fail_repo(LocalGitBranchFormat)
4800breezy.tests.per_branch.test_locking.TestBranchLocking.test_06_lock_write_fail_repo(RemoteBranchFormat-default)
4801breezy.tests.per_branch.test_locking.TestBranchLocking.test_06_lock_write_fail_repo(RemoteBranchFormat-v2)
4802breezy.tests.per_branch.test_locking.TestBranchLocking.test_06_lock_write_fail_repo(RemoteGitBranchFormat)
4803breezy.tests.per_branch.test_locking.TestBranchLocking.test_07_lock_read_fail_control(BranchReferenceFormat)
4804breezy.tests.per_branch.test_locking.TestBranchLocking.test_07_lock_read_fail_control(BzrBranchFormat4)
4805breezy.tests.per_branch.test_locking.TestBranchLocking.test_07_lock_read_fail_control(BzrBranchFormat5)
4806breezy.tests.per_branch.test_locking.TestBranchLocking.test_07_lock_read_fail_control(BzrBranchFormat6)
4807breezy.tests.per_branch.test_locking.TestBranchLocking.test_07_lock_read_fail_control(BzrBranchFormat7)
4808breezy.tests.per_branch.test_locking.TestBranchLocking.test_07_lock_read_fail_control(BzrBranchFormat8)
4809breezy.tests.per_branch.test_locking.TestBranchLocking.test_07_lock_read_fail_control(LocalGitBranchFormat)
4810breezy.tests.per_branch.test_locking.TestBranchLocking.test_07_lock_read_fail_control(RemoteBranchFormat-default)
4811breezy.tests.per_branch.test_locking.TestBranchLocking.test_07_lock_read_fail_control(RemoteBranchFormat-v2)
4812breezy.tests.per_branch.test_locking.TestBranchLocking.test_07_lock_read_fail_control(RemoteGitBranchFormat)
4813breezy.tests.per_branch.test_locking.TestBranchLocking.test_08_lock_write_fail_control(BranchReferenceFormat)
4814breezy.tests.per_branch.test_locking.TestBranchLocking.test_08_lock_write_fail_control(BzrBranchFormat4)
4815breezy.tests.per_branch.test_locking.TestBranchLocking.test_08_lock_write_fail_control(BzrBranchFormat5)
4816breezy.tests.per_branch.test_locking.TestBranchLocking.test_08_lock_write_fail_control(BzrBranchFormat6)
4817breezy.tests.per_branch.test_locking.TestBranchLocking.test_08_lock_write_fail_control(BzrBranchFormat7)
4818breezy.tests.per_branch.test_locking.TestBranchLocking.test_08_lock_write_fail_control(BzrBranchFormat8)
4819breezy.tests.per_branch.test_locking.TestBranchLocking.test_08_lock_write_fail_control(LocalGitBranchFormat)
4820breezy.tests.per_branch.test_locking.TestBranchLocking.test_08_lock_write_fail_control(RemoteBranchFormat-default)
4821breezy.tests.per_branch.test_locking.TestBranchLocking.test_08_lock_write_fail_control(RemoteBranchFormat-v2)
4822breezy.tests.per_branch.test_locking.TestBranchLocking.test_08_lock_write_fail_control(RemoteGitBranchFormat)
4823breezy.tests.per_branch.test_locking.TestBranchLocking.test_dont_leave_lock_in_place(BranchReferenceFormat)
4824breezy.tests.per_branch.test_locking.TestBranchLocking.test_dont_leave_lock_in_place(BzrBranchFormat4)
4825breezy.tests.per_branch.test_locking.TestBranchLocking.test_dont_leave_lock_in_place(BzrBranchFormat5)
4826breezy.tests.per_branch.test_locking.TestBranchLocking.test_dont_leave_lock_in_place(BzrBranchFormat6)
4827breezy.tests.per_branch.test_locking.TestBranchLocking.test_dont_leave_lock_in_place(BzrBranchFormat7)
4828breezy.tests.per_branch.test_locking.TestBranchLocking.test_dont_leave_lock_in_place(BzrBranchFormat8)
4829breezy.tests.per_branch.test_locking.TestBranchLocking.test_dont_leave_lock_in_place(LocalGitBranchFormat)
4830breezy.tests.per_branch.test_locking.TestBranchLocking.test_dont_leave_lock_in_place(RemoteBranchFormat-default)
4831breezy.tests.per_branch.test_locking.TestBranchLocking.test_dont_leave_lock_in_place(RemoteBranchFormat-v2)
4832breezy.tests.per_branch.test_locking.TestBranchLocking.test_dont_leave_lock_in_place(RemoteGitBranchFormat)
4833breezy.tests.per_branch.test_locking.TestBranchLocking.test_leave_lock_in_place(BranchReferenceFormat)
4834breezy.tests.per_branch.test_locking.TestBranchLocking.test_leave_lock_in_place(BzrBranchFormat4)
4835breezy.tests.per_branch.test_locking.TestBranchLocking.test_leave_lock_in_place(BzrBranchFormat5)
4836breezy.tests.per_branch.test_locking.TestBranchLocking.test_leave_lock_in_place(BzrBranchFormat6)
4837breezy.tests.per_branch.test_locking.TestBranchLocking.test_leave_lock_in_place(BzrBranchFormat7)
4838breezy.tests.per_branch.test_locking.TestBranchLocking.test_leave_lock_in_place(BzrBranchFormat8)
4839breezy.tests.per_branch.test_locking.TestBranchLocking.test_leave_lock_in_place(LocalGitBranchFormat)
4840breezy.tests.per_branch.test_locking.TestBranchLocking.test_leave_lock_in_place(RemoteBranchFormat-default)
4841breezy.tests.per_branch.test_locking.TestBranchLocking.test_leave_lock_in_place(RemoteBranchFormat-v2)
4842breezy.tests.per_branch.test_locking.TestBranchLocking.test_leave_lock_in_place(RemoteGitBranchFormat)
4843breezy.tests.per_branch.test_locking.TestBranchLocking.test_lock_and_unlock_leaves_repo_unlocked(BranchReferenceFormat)
4844breezy.tests.per_branch.test_locking.TestBranchLocking.test_lock_and_unlock_leaves_repo_unlocked(BzrBranchFormat4)
4845breezy.tests.per_branch.test_locking.TestBranchLocking.test_lock_and_unlock_leaves_repo_unlocked(BzrBranchFormat5)
4846breezy.tests.per_branch.test_locking.TestBranchLocking.test_lock_and_unlock_leaves_repo_unlocked(BzrBranchFormat6)
4847breezy.tests.per_branch.test_locking.TestBranchLocking.test_lock_and_unlock_leaves_repo_unlocked(BzrBranchFormat7)
4848breezy.tests.per_branch.test_locking.TestBranchLocking.test_lock_and_unlock_leaves_repo_unlocked(BzrBranchFormat8)
4849breezy.tests.per_branch.test_locking.TestBranchLocking.test_lock_and_unlock_leaves_repo_unlocked(LocalGitBranchFormat)
4850breezy.tests.per_branch.test_locking.TestBranchLocking.test_lock_and_unlock_leaves_repo_unlocked(RemoteBranchFormat-default)
4851breezy.tests.per_branch.test_locking.TestBranchLocking.test_lock_and_unlock_leaves_repo_unlocked(RemoteBranchFormat-v2)
4852breezy.tests.per_branch.test_locking.TestBranchLocking.test_lock_and_unlock_leaves_repo_unlocked(RemoteGitBranchFormat)
4853breezy.tests.per_branch.test_locking.TestBranchLocking.test_lock_read_context_manager(BranchReferenceFormat)
4854breezy.tests.per_branch.test_locking.TestBranchLocking.test_lock_read_context_manager(BzrBranchFormat4)
4855breezy.tests.per_branch.test_locking.TestBranchLocking.test_lock_read_context_manager(BzrBranchFormat5)
4856breezy.tests.per_branch.test_locking.TestBranchLocking.test_lock_read_context_manager(BzrBranchFormat6)
4857breezy.tests.per_branch.test_locking.TestBranchLocking.test_lock_read_context_manager(BzrBranchFormat7)
The diff has been truncated for viewing.

Subscribers

People subscribed via source and target branches