/brz/remove-bazaar

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/brz/remove-bazaar

« back to all changes in this revision

Viewing changes to tests/test_mapping.py

Fix some more tests.

Show diffs side-by-side

added added

removed removed

Lines of Context:
55
55
 
56
56
    def test_is_control_file(self):
57
57
        mapping = BzrGitMappingv1()
58
 
        self.assertTrue(mapping.is_control_file(".bzrdummy"))
59
 
        self.assertTrue(mapping.is_control_file(".bzrfileids"))
 
58
        if mapping.roundtripping:
 
59
            self.assertTrue(mapping.is_control_file(".bzrdummy"))
 
60
            self.assertTrue(mapping.is_control_file(".bzrfileids"))
60
61
        self.assertFalse(mapping.is_control_file(".bzrfoo"))
61
62
 
62
63