dotfiles/vim/plugins/vim-elixir-master/spec/indent/quote_spec.rb
Jeff Clement 931e9d4aee
mise++
2025-03-08 20:32:06 -07:00

23 lines
292 B
Ruby

# frozen_string_literal: true
require 'spec_helper'
describe 'Indenting quote statements' do
i <<~EOF
defmacro foo do
quote do
unquote(foo)
end
end
EOF
i <<~EOF
defmacro foo do
if 1 = 1 do
quote do
unquote(foo)
end
end
end
EOF
end