1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131
|
# frozen_string_literal: true
RSpec.describe RuboCop::AST::CaseMatchNode do
let(:case_match_node) { parse_source(source).ast }
context 'when using Ruby 2.7 or newer', :ruby27 do
describe '.new' do
let(:source) do
<<~RUBY
case expr
in pattern
end
RUBY
end
it { expect(case_match_node.is_a?(described_class)).to be(true) }
end
describe '#keyword' do
let(:source) do
<<~RUBY
case expr
in pattern
end
RUBY
end
it { expect(case_match_node.keyword).to eq('case') }
end
describe '#in_pattern_branches' do
let(:source) do
<<~RUBY
case expr
in pattern
in pattern
in pattern
end
RUBY
end
it { expect(case_match_node.in_pattern_branches.size).to eq(3) }
it {
expect(case_match_node.in_pattern_branches).to all(be_in_pattern_type)
}
end
describe '#each_in_pattern' do
let(:source) do
<<~RUBY
case expr
in pattern
in pattern
in pattern
end
RUBY
end
context 'when not passed a block' do
it {
expect(case_match_node.each_in_pattern.is_a?(Enumerator)).to be(true)
}
end
context 'when passed a block' do
it 'yields all the conditions' do
expect { |b| case_match_node.each_in_pattern(&b) }
.to yield_successive_args(*case_match_node.in_pattern_branches)
end
end
end
describe '#else?' do
context 'without an else statement' do
let(:source) do
<<~RUBY
case expr
in pattern
end
RUBY
end
it { expect(case_match_node.else?).to be(false) }
end
context 'with an else statement' do
let(:source) do
<<~RUBY
case expr
in pattern
else
end
RUBY
end
it { expect(case_match_node.else?).to be(true) }
end
end
describe '#else_branch' do
describe '#else?' do
context 'without an else statement' do
let(:source) do
<<~RUBY
case expr
in pattern
end
RUBY
end
it { expect(case_match_node.else_branch.nil?).to be(true) }
end
context 'with an else statement' do
let(:source) do
<<~RUBY
case expr
in pattern
else
:foo
end
RUBY
end
it { expect(case_match_node.else_branch.sym_type?).to be(true) }
end
end
end
end
end
|