~maxb/bzr-svn/fetch-svn-rev-info-progress-bar

« back to all changes in this revision

Viewing changes to tests/test_repository.py

  • Committer: Max Bowsher
  • Date: 2010-07-30 22:50:54 UTC
  • mfrom: (3324.1.37 trunk)
  • Revision ID: maxb@f2s.com-20100730225054-un1llcngdofg585w
Merge trunk.

Show diffs side-by-side

added added

removed removed

Lines of Context:
54
54
        cfg.set_user_option("foo", "Still Life")
55
55
 
56
56
        repos = Repository.open(self.repos_url)
57
 
        self.assertEquals("Still Life", 
 
57
        self.assertEquals("Still Life",
58
58
                repos.get_config().get_user_option("foo"))
59
59
 
60
60
    def test_get_config(self):
62
62
        repos.get_config().set_user_option("foo", "Van Der Graaf Generator")
63
63
 
64
64
        repos = Repository.open(self.repos_url)
65
 
        self.assertEquals("Van Der Graaf Generator", 
 
65
        self.assertEquals("Van Der Graaf Generator",
66
66
                repos.get_config().get_user_option("foo"))
67
67
 
68
68
    def test_repr(self):