mirror of
1
0
Fork 0
ultimate-vim/sources_non_forked/vim-elixir/spec/syntax/case_spec.rb

15 lines
273 B
Ruby

# frozen_string_literal: true
require 'spec_helper'
describe 'Syntax case statements' do
it ':* is recognized as an atom' do
expect(<<~EOF).to include_elixir_syntax('elixirAtom', '\*')
case pattern do
:* -> :ok
_ -> :error
end
EOF
end
end