mirror of
https://github.com/SpaceVim/SpaceVim.git
synced 2025-02-03 18:10:05 +08:00
10 lines
237 B
Ruby
10 lines
237 B
Ruby
|
require 'spec_helper'
|
||
|
|
||
|
describe "Syntax highlighting" do
|
||
|
specify "invalid interpolated predefined global variables are literal text" do
|
||
|
assert_correct_highlighting <<~'EOF', '#\$', 'rubyString'
|
||
|
"abc(#$)def"
|
||
|
EOF
|
||
|
end
|
||
|
end
|