1
0
mirror of https://github.com/SpaceVim/SpaceVim.git synced 2025-02-03 10:00:06 +08:00
SpaceVim/bundle/splitjoin.vim/spec/plugin/haml_spec.rb
2024-06-27 18:10:36 +08:00

29 lines
474 B
Ruby

require 'spec_helper'
describe "haml" do
let(:filename) { 'test.haml' }
# Haml is not built-in, so let's set it up manually
def setup_haml_filetype
vim.set(:filetype, 'haml')
vim.set(:expandtab)
vim.set(:shiftwidth, 2)
end
specify "interpolation" do
set_file_contents '%div= 1 + 2'
setup_haml_filetype
split
assert_file_contents <<~EOF
%div
= 1 + 2
EOF
join
assert_file_contents '%div= 1 + 2'
end
end