1
0
mirror of https://github.com/SpaceVim/SpaceVim.git synced 2025-02-04 16:40:06 +08:00
SpaceVim/bundle/vim-ruby/spec/syntax/strings/strings_spec.rb

10 lines
259 B
Ruby
Raw Normal View History

2022-05-28 19:32:08 +08:00
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