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

29 lines
463 B
Plaintext

""
"foobar"
"foo<bar>baz"
''
'foobar'
'foo<bar>baz'
----------------------------------------------------
[
["string", ["\"\""]],
["string", ["\"foobar\""]],
["string", [
"\"foo",
["outline", "<bar>"],
"baz\""
]],
["string", ["''"]],
["string", ["'foobar'"]],
["string", [
"'foo",
["outline", "<bar>"],
"baz'"
]]
]
----------------------------------------------------
Checks for double-quoted and single-quoted strings.