1
0
Fork 0
mirror of synced 2024-06-16 22:11:12 -04:00
ultimate-vim/sources_non_forked/vim-elixir/spec/indent/string_spec.rb

19 lines
319 B
Ruby
Raw Normal View History

2022-05-18 13:31:41 -04:00
# frozen_string_literal: true
require 'spec_helper'
describe 'Indenting strings' do
it "bulk indenting strings" do
expect(<<~EOF).to be_elixir_indentation
defp sql do
"""
SELECT *
FROM table
WHERE column = 123
AND another_column = 456
"""
end
EOF
end
end