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

21 lines
352 B
Plaintext
Raw Normal View History

2016-02-03 16:00:01 -07:00
$foo
$foo-bar
$foo_bar
#{$foo}
#{$foo-bar}
#{$foo_bar}
----------------------------------------------------
[
["variable", "$foo"],
["variable", "$foo-bar"],
["variable", "$foo_bar"],
["variable", "#{$foo}"],
["variable", "#{$foo-bar}"],
["variable", "#{$foo_bar}"]
]
----------------------------------------------------
Checks for variables.