Sha256: 7afe68a0896bad4c8e84ba90d87805a73bbec7948a283685a7dd40ec6cdbb4dc

Contents?: true

Size: 1.31 KB

Versions: 8

Compression:

Stored size: 1.31 KB

Contents

# encoding: utf-8

require 'spec_helper'

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

  it 'reports an offence for def with redundant begin block' do
    src = ['def func',
           '  begin',
           '    ala',
           '  rescue => e',
           '    bala',
           '  end',
           'end']
    inspect_source(cop, src)
    expect(cop.offences.size).to eq(1)
  end

  it 'reports an offence for defs with redundant begin block' do
    src = ['def Test.func',
           '  begin',
           '    ala',
           '  rescue => e',
           '    bala',
           '  end',
           'end']
    inspect_source(cop, src)
    expect(cop.offences.size).to eq(1)
  end

  it 'accepts a def with required begin block' do
    src = ['def func',
           '  begin',
           '    ala',
           '  rescue => e',
           '    bala',
           '  end',
           '  something',
           'end']
    inspect_source(cop, src)
    expect(cop.offences).to be_empty
  end

  it 'accepts a defs with required begin block' do
    src = ['def Test.func',
           '  begin',
           '    ala',
           '  rescue => e',
           '    bala',
           '  end',
           '  something',
           'end']
    inspect_source(cop, src)
    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_begin_spec.rb
rubocop-0.18.1 spec/rubocop/cop/style/redundant_begin_spec.rb
rubocop-0.18.0 spec/rubocop/cop/style/redundant_begin_spec.rb
rubocop-0.17.0 spec/rubocop/cop/style/redundant_begin_spec.rb
rubocop-0.16.0 spec/rubocop/cop/style/redundant_begin_spec.rb
rubocop-0.15.0 spec/rubocop/cop/style/redundant_begin_spec.rb
rubocop-0.14.1 spec/rubocop/cop/style/redundant_begin_spec.rb
rubocop-0.14.0 spec/rubocop/cop/style/redundant_begin_spec.rb