1
0
Fork 0
mirror of synced 2024-07-05 15:01:09 -04:00
ultimate-vim/.vim_runtime/sources_non_forked/vim-ruby/spec/syntax/strings/interpolation_spec.rb
2022-04-13 17:21:09 +08:00

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