Sha256: 5094b6c1226887a2f7fc155d35faf0fab2222e599bdcd3820730feb1a51f294f
Contents?: true
Size: 709 Bytes
Versions: 8
Compression:
Stored size: 709 Bytes
Contents
# encoding: utf-8 require 'spec_helper' describe Rubocop::Cop::Lint::Loop do subject(:cop) { described_class.new } it 'registers an offence for begin/end/while' do inspect_source(cop, ['begin something; top; end while test']) expect(cop.offences.size).to eq(1) end it 'registers an offence for begin/end/until' do inspect_source(cop, ['begin something; top; end until test']) expect(cop.offences.size).to eq(1) end it 'accepts normal while' do inspect_source(cop, ['while test; one; two; end']) expect(cop.offences).to be_empty end it 'accepts normal until' do inspect_source(cop, ['until test; one; two; end']) expect(cop.offences).to be_empty end end
Version data entries
8 entries across 8 versions & 2 rubygems