jellyfin-web/dashboard-ui/bower_components/prism/tests/languages/ruby/variable_feature.test

27 lines
372 B
Plaintext
Raw Normal View History

2016-02-03 16:00:01 -07:00
$_
$foo
$BAR?
$Baz_42!
@_
@foo
@BAR?
@Baz_42!
----------------------------------------------------
[
["variable", "$_"],
["variable", "$foo"],
["variable", "$BAR?"],
["variable", "$Baz_42!"],
["variable", "@_"],
["variable", "@foo"],
["variable", "@BAR?"],
["variable", "@Baz_42!"]
]
----------------------------------------------------
Checks for variables.