jellyfin-web/dashboard-ui/bower_components/prism/tests/languages/lolcode/string_feature.test
2016-02-03 18:00:01 -05:00

33 lines
484 B
Plaintext

""
"foobar"
"fo:"o"
"foo:)bar:>baz"
"foo:{bar}baz"
----------------------------------------------------
[
["string", ["\"\""]],
["string", ["\"foobar\""]],
["string", [
"\"fo",
["symbol", ":\""],
"o\""
]],
["string", [
"\"foo",
["symbol", ":)"],
"bar",
["symbol", ":>"],
"baz\""
]],
["string", [
"\"foo",
["variable", ":{bar}"],
"baz\""
]]
]
----------------------------------------------------
Checks for strings, with variables and symbols in them.