Sha256: 1c0749bbdd3a44e1160b9e94741f2b33546cf089163717eb2775867058e54697

Contents?: true

Size: 688 Bytes

Versions: 8

Compression:

Stored size: 688 Bytes

Contents

# encoding: utf-8

require 'spec_helper'

describe Rubocop::Cop::Lint::EmptyEnsure do
  subject(:cop) { described_class.new }

  it 'registers an offence for empty ensure' do
    inspect_source(cop,
                   ['begin',
                    '  something',
                    'ensure',
                    'end'])
    expect(cop.offences.size).to eq(1)
  end

  it 'does not register an offence for non-empty ensure' do
    inspect_source(cop,
                   ['begin',
                    '  something',
                    '  return',
                    'ensure',
                    '  file.close',
                    'end'])
    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/lint/empty_ensure_spec.rb
rubocop-0.18.1 spec/rubocop/cop/lint/empty_ensure_spec.rb
rubocop-0.18.0 spec/rubocop/cop/lint/empty_ensure_spec.rb
rubocop-0.17.0 spec/rubocop/cop/lint/empty_ensure_spec.rb
rubocop-0.16.0 spec/rubocop/cop/lint/empty_ensure_spec.rb
rubocop-0.15.0 spec/rubocop/cop/lint/empty_ensure_spec.rb
rubocop-0.14.1 spec/rubocop/cop/lint/empty_ensure_spec.rb
rubocop-0.14.0 spec/rubocop/cop/lint/empty_ensure_spec.rb