Sha256: c49f9465d49df64ebb268514e48751ff882f7a14dcfc767a7c5d8a768c3dce72

Contents?: true

Size: 709 Bytes

Versions: 6

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 offense for begin/end/while' do
    inspect_source(cop, ['begin something; top; end while test'])
    expect(cop.offenses.size).to eq(1)
  end

  it 'registers an offense for begin/end/until' do
    inspect_source(cop, ['begin something; top; end until test'])
    expect(cop.offenses.size).to eq(1)
  end

  it 'accepts normal while' do
    inspect_source(cop, ['while test; one; two; end'])
    expect(cop.offenses).to be_empty
  end

  it 'accepts normal until' do
    inspect_source(cop, ['until test; one; two; end'])
    expect(cop.offenses).to be_empty
  end
end

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
rubocop-0.22.0 spec/rubocop/cop/lint/loop_spec.rb
rubocop-0.21.0 spec/rubocop/cop/lint/loop_spec.rb
rubocop-0.20.1 spec/rubocop/cop/lint/loop_spec.rb
rubocop-0.20.0 spec/rubocop/cop/lint/loop_spec.rb
rubocop-0.19.1 spec/rubocop/cop/lint/loop_spec.rb
rubocop-0.19.0 spec/rubocop/cop/lint/loop_spec.rb