Sha256: 46cedbb8c1c6c26bb2191455ec0e6395621bdfccc32be07262e6f89d8b9cb298
Contents?: true
Size: 677 Bytes
Versions: 13
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
13 entries across 13 versions & 2 rubygems