1
0
Fork 0
mirror of synced 2024-07-03 05:51:09 -04:00
ultimate-vim/.vim_runtime/sources_non_forked/vim-ruby/spec/indent/identifiers_spec.rb
2022-04-13 17:21:09 +08:00

11 lines
181 B
Ruby

require 'spec_helper'
describe "Indenting" do
specify "identifiers containing keyword substrings" do
assert_correct_indenting <<~EOF
foo_def
42
EOF
end
end