mirror of
https://github.com/SpaceVim/SpaceVim.git
synced 2025-02-04 15:50:03 +08:00
10 lines
259 B
Ruby
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
|