Sha256: 1fcd33a522022d07ac6842e2518548872af948c79bf10ce39c755b91202f6645

Contents?: true

Size: 709 Bytes

Versions: 11

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

11 entries across 11 versions & 2 rubygems

Version Path
rubyjobbuilderdsl-0.0.2 vendor/bundle/ruby/2.1.0/gems/rubocop-0.26.0/spec/rubocop/cop/lint/loop_spec.rb
rubyjobbuilderdsl-0.0.1 vendor/bundle/ruby/2.1.0/gems/rubocop-0.26.0/spec/rubocop/cop/lint/loop_spec.rb
rubocop-0.28.0 spec/rubocop/cop/lint/loop_spec.rb
rubocop-0.27.1 spec/rubocop/cop/lint/loop_spec.rb
rubocop-0.27.0 spec/rubocop/cop/lint/loop_spec.rb
rubocop-0.26.1 spec/rubocop/cop/lint/loop_spec.rb
rubocop-0.26.0 spec/rubocop/cop/lint/loop_spec.rb
rubocop-0.25.0 spec/rubocop/cop/lint/loop_spec.rb
rubocop-0.24.1 spec/rubocop/cop/lint/loop_spec.rb
rubocop-0.24.0 spec/rubocop/cop/lint/loop_spec.rb
rubocop-0.23.0 spec/rubocop/cop/lint/loop_spec.rb