Sha256: f8923b982e5806d6c71af189cb0bc7c050717ce5068c5fc2ffe1343cf634e015

Contents?: true

Size: 677 Bytes

Versions: 6

Compression:

Stored size: 677 Bytes

Contents

# encoding: utf-8

require 'spec_helper'

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

  it 'registers an offense for inclusive flip flops' do
    inspect_source(cop,
                   ['DATA.each_line do |line|',
                    'print line if (line =~ /begin/)..(line =~ /end/)',
                    'end'])
    expect(cop.offenses.size).to eq(1)
  end

  it 'registers an offense for exclusive flip flops' do
    inspect_source(cop,
                   ['DATA.each_line do |line|',
                    'print line if (line =~ /begin/)...(line =~ /end/)',
                    'end'])
    expect(cop.offenses.size).to eq(1)
  end
end

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
rubocop-0.22.0 spec/rubocop/cop/style/flip_flop_spec.rb
rubocop-0.21.0 spec/rubocop/cop/style/flip_flop_spec.rb
rubocop-0.20.1 spec/rubocop/cop/style/flip_flop_spec.rb
rubocop-0.20.0 spec/rubocop/cop/style/flip_flop_spec.rb
rubocop-0.19.1 spec/rubocop/cop/style/flip_flop_spec.rb
rubocop-0.19.0 spec/rubocop/cop/style/flip_flop_spec.rb