Sha256: e324d6580630ff301859a4e54f2603e016cdee5f66f0a893dfac5d5cae55742f

Contents?: true

Size: 599 Bytes

Versions: 2

Compression:

Stored size: 599 Bytes

Contents

# encoding: utf-8

require 'spec_helper'

module Rubocop
  module Cop
    describe Cop do
      let (:cop) { Cop.new }

      it 'initially has 0 offences' do
        cop.offences.size.should == 0
      end

      it 'initially has nothing to report' do
        cop.has_report?.should be_false
      end

      it 'keeps track of offences' do
        cop.add_offence('file', 1, 'message')

        cop.offences.size.should == 1
      end

      it 'will report registered offences' do
        cop.add_offence('file', 1, 'message')

        cop.has_report?.should be_true
      end
    end
  end
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
rubocop-0.2.1 spec/rubocop/cops/cop_spec.rb
rubocop-0.2.0 spec/rubocop/cops/cop_spec.rb