98
95
def test_list_all_values(self):
99
98
self.bazaar_config.set_user_option('list', [1, 'a', 'with, a comma'])
100
99
script.run_script(self, '''\
103
list = 1, a, "with, a comma"
102
list = '1, a, "with, a comma"'
106
105
def test_list_value_only(self):
107
108
self.bazaar_config.set_user_option('list', [1, 'a', 'with, a comma'])
108
109
script.run_script(self, '''\
109
110
$ bzr config -d tree list
113
114
def test_bazaar_config(self):