jellyfin-web/dashboard-ui/bower_components/prism/tests/languages/autoit/string_feature.test

37 lines
616 B
Plaintext
Raw Normal View History

2016-02-03 16:00:01 -07:00
""
"foo""bar"
"foo %foo% bar $bar$ baz @baz@"
''
'foo''bar'
'foo %foo% bar $bar$ baz @baz@'
----------------------------------------------------
[
["string", ["\"\""]],
["string", ["\"foo\"\"bar\""]],
["string", [
"\"foo ",
["variable", "%foo%"],
" bar ",
["variable", "$bar$"],
" baz ",
["variable", "@baz@"],
"\""
]],
["string", ["''"]],
["string", ["'foo''bar'"]],
["string", [
"'foo ",
["variable", "%foo%"],
" bar ",
["variable", "$bar$"],
" baz ",
["variable", "@baz@"],
"'"
]]
]
----------------------------------------------------
Checks for strings and interpolation.