1
0
Fork 0
mirror of synced 2024-06-29 03:51:09 -04:00
ultimate-vim/sources_non_forked/vim-ruby/spec/syntax/strings/strings_spec.rb
Amir Salihefendic 97e3db7fe9 Added and updated some plugins
Added: vim-ruby, typescript-vim, vim-javascript
Updated: rust-vim
2019-11-16 18:43:18 +01:00

10 lines
259 B
Ruby

require 'spec_helper'
describe "Syntax highlighting" do
specify "percent strings with a modulo-assignment operator look-alike delimiter" do
assert_correct_highlighting <<~'EOF', '%=', 'rubyPercentStringDelimiter'
foo = %= bar =
EOF
end
end