vimrc/sources_non_forked/vim-elixir/spec/indent/documentation_spec.rb

17 lines
267 B
Ruby

require 'spec_helper'
describe "Indenting" do
context "documentation" do
it "with end keyword" do
<<-EOF
defmodule Test do
@doc """
end
"""
end
EOF
.should be_elixir_indentation
end
end
end