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