1
0
Fork 0
mirror of synced 2024-07-05 23:11:10 -04:00
ultimate-vim/sources_non_forked/vim-ruby/spec/syntax/strings/interpolation_spec.rb
2021-06-30 12:00:07 -05:00

10 lines
237 B
Ruby
Executable file

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