Sha256: 284b9f184a4ddca7f05a9c6d96be8b66cc1249a09c93a79bc1a0ef627892bd93

Contents?: true

Size: 802 Bytes

Versions: 8

Compression:

Stored size: 802 Bytes

Contents

# encoding: utf-8

require 'spec_helper'

describe Rubocop::Cop::Style::RedundantException do
  subject(:cop) { described_class.new }

  it 'reports an offence for a raise with RuntimeError' do
    inspect_source(cop, ['raise RuntimeError, msg'])
    expect(cop.offences.size).to eq(1)
  end

  it 'reports an offence for a fail with RuntimeError' do
    inspect_source(cop, ['fail RuntimeError, msg'])
    expect(cop.offences.size).to eq(1)
  end

  it 'accepts a raise with RuntimeError if it does not have 2 args' do
    inspect_source(cop, ['raise RuntimeError, msg, caller'])
    expect(cop.offences).to be_empty
  end

  it 'accepts a fail with RuntimeError if it does not have 2 args' do
    inspect_source(cop, ['fail RuntimeError, msg, caller'])
    expect(cop.offences).to be_empty
  end
end

Version data entries

8 entries across 8 versions & 2 rubygems

Version Path
ridecharge-rubocop-0.0.1 spec/rubocop/cop/style/redundant_exception_spec.rb
rubocop-0.18.1 spec/rubocop/cop/style/redundant_exception_spec.rb
rubocop-0.18.0 spec/rubocop/cop/style/redundant_exception_spec.rb
rubocop-0.17.0 spec/rubocop/cop/style/redundant_exception_spec.rb
rubocop-0.16.0 spec/rubocop/cop/style/redundant_exception_spec.rb
rubocop-0.15.0 spec/rubocop/cop/style/redundant_exception_spec.rb
rubocop-0.14.1 spec/rubocop/cop/style/redundant_exception_spec.rb
rubocop-0.14.0 spec/rubocop/cop/style/redundant_exception_spec.rb