1
0
Fork 0
mirror of synced 2024-07-04 14:31:09 -04:00
ultimate-vim/sources_non_forked/vim-ruby/spec/indent/basic_spec.rb
Maksim Pecherskiy 2deb035254 Cleaning deps.
2014-08-07 19:42:41 -04:00

43 lines
611 B
Ruby

require 'spec_helper'
describe "Indenting" do
specify "if-clauses" do
assert_correct_indenting <<-EOF
if foo
bar
end
EOF
assert_correct_indenting <<-EOF
if foo
bar
else
baz
end
EOF
assert_correct_indenting <<-EOF
bar if foo
something_else
EOF
end
specify "heredocs" do
assert_correct_indenting <<-EOF
def one
two = <<-THREE
four
THREE
end
EOF
assert_correct_indenting <<-EOF
def one
two = <<THREE
four
THREE
end
EOF
end
end