mirror of
https://github.com/silverstripe/silverstripe-framework
synced 2024-10-22 14:05:37 +02:00
MNT Make sure to test strings of boolean/null values
This commit is contained in:
parent
5b2820e8ac
commit
1385712ffd
@ -759,6 +759,12 @@ after'
|
||||
['string:1', '\'1\''],
|
||||
['string:foobar', '"foobar"'],
|
||||
['string:foo bar baz', '"foo bar baz"'],
|
||||
['string:false', '\'false\''],
|
||||
['string:true', '\'true\''],
|
||||
['string:null', '\'null\''],
|
||||
['string:false', '"false"'],
|
||||
['string:true', '"true"'],
|
||||
['string:null', '"null"'],
|
||||
// Implicit strings
|
||||
['string:foobar', 'foobar'],
|
||||
['string:foo bar baz', 'foo bar baz']
|
||||
|
Loading…
Reference in New Issue
Block a user