##// END OF EJS Templates
Merge with crew-stable
Merge with crew-stable

File last commit:

r8144:fca54469 default
r8166:56719b1a merge default
Show More
test-ui-config.out
30 lines | 507 B | text/plain | TextLexer
/ tests / test-ui-config.out
Matt Mackall
ui: introduce new config parser
r8144 [('string', 'string value'), ('bool1', 'true'), ('bool2', 'false')]
Thomas Arendsen Hein
Allow using default values with ui.configlist, too, and add a test for this.
r2502 [('list1', 'foo'), ('list2', 'foo bar baz'), ('list3', 'alice, bob'), ('list4', 'foo bar baz alice, bob')]
---
'string value'
'true'
'false'
None
---
Matt Mackall
ui: introduce new config parser
r8144 values.string not a boolean ('string value')
Thomas Arendsen Hein
Allow using default values with ui.configlist, too, and add a test for this.
r2502 True
False
False
False
True
---
['foo']
['foo', 'bar', 'baz']
['alice', 'bob']
['foo', 'bar', 'baz', 'alice', 'bob']
['foo', 'bar', 'baz', 'alice', 'bob']
[]
[]
['foo']
['foo']
['foo', 'bar']
['foo', 'bar']
['foo bar']
['foo', 'bar']
Matt Mackall
ui: introduce new config parser
r8144 None
True