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
|
# frozen_string_literal: true
RSpec.describe RuboCop::AST::WhileNode do
let(:while_node) { parse_source(source).ast }
describe '.new' do
context 'with a statement while' do
let(:source) { 'while foo; bar; end' }
it { expect(while_node.is_a?(described_class)).to be(true) }
end
context 'with a modifier while' do
let(:source) { 'begin foo; end while bar' }
it { expect(while_node.is_a?(described_class)).to be(true) }
end
end
describe '#keyword' do
let(:source) { 'while foo; bar; end' }
it { expect(while_node.keyword).to eq('while') }
end
describe '#inverse_keyword' do
let(:source) { 'while foo; bar; end' }
it { expect(while_node.inverse_keyword).to eq('until') }
end
describe '#do?' do
context 'with a do keyword' do
let(:source) { 'while foo do; bar; end' }
it { expect(while_node.do?).to be_truthy }
end
context 'without a do keyword' do
let(:source) { 'while foo; bar; end' }
it { expect(while_node.do?).to be_falsey }
end
end
describe '#post_condition_loop?' do
context 'with a statement while' do
let(:source) { 'while foo; bar; end' }
it { expect(while_node.post_condition_loop?).to be_falsey }
end
context 'with a modifier while' do
let(:source) { 'begin foo; end while bar' }
it { expect(while_node.post_condition_loop?).to be_truthy }
end
end
describe '#loop_keyword?' do
context 'with a statement while' do
let(:source) { 'while foo; bar; end' }
it { expect(while_node.loop_keyword?).to be_truthy }
end
context 'with a modifier while' do
let(:source) { 'begin foo; end while bar' }
it { expect(while_node.loop_keyword?).to be_truthy }
end
end
end
|