mirror of
https://github.com/unicode-org/icu.git
synced 2025-04-04 13:05:31 +00:00
19 lines
762 B
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" }
|
|
]
|
|
}
|
|
|