icu/testdata/message2/matches-whitespace.json

19 lines
762 B
JSON

{
"scenario": "Matches with whitespace",
"description": "Tests for valid match constructs with whitespace in various places",
"defaultTestProperties": {
"locale": "en-US"
},
"tests": [
{ "src": ".local $one = {1 :string} .local $bar = {bar :string} .match $one $bar one * {{one}} * * {{other}}",
"exp": "other" },
{ "src": ".local $foo = {foo :string} .local $bar = {bar :string} .match $foo $bar one * {{one}}* * {{other}}",
"exp": "other" },
{ "src": ".local $foo = {foo :string} .local $bar = {bar :string} .match $foo $bar one *{{one}} * * {{foo}}",
"exp": "foo"
},
{ "src": ".local $foo = {foo :string} .local $bar = {bar :string} .match $foo $bar one * {{one}} * * {{foo}}",
"exp": "foo" }
]
}