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

33 lines
484 B
Plaintext
Raw Normal View History

2016-02-03 16:00:01 -07:00
""
"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.