Sha256: 818e130eed16efe4bcca53be686949fbf2f62746efa0884436e4c3ee8827f840

Contents?: true

Size: 1.1 KB

Versions: 15

Compression:

Stored size: 1.1 KB

Contents

require File.expand_path(File.dirname(__FILE__) + '/../spec_helper')

describe Simplabs::Excellent::Checks::FlogMethodCheck do

  before do
    @excellent = Simplabs::Excellent::Runner.new(Simplabs::Excellent::Checks::FlogMethodCheck.new({ :threshold => 0 }))
  end

  describe '#evaluate' do

    it 'should calculate the score correctly' do
      code = <<-END
        def method_name
          puts 'test'
        end
      END

      verify_code_score(code, 1)
    end

    it 'should calculate the score that uses special metaprogramming methods correctly' do
      code = <<-END
        def method_name
          @instance.instance_eval do
            def some_method
            end
          end
        end
      END

      verify_code_score(code, 6)
    end

  end

  def verify_code_score(code, score)
    @excellent.check_code(code)
    warnings = @excellent.warnings

    warnings.should_not be_empty
    warnings[0].info.should        == { :method => 'method_name', :score => score }
    warnings[0].line_number.should == 1
    warnings[0].message.should     == "method_name has flog score of #{score}."
  end

end

Version data entries

15 entries across 15 versions & 2 rubygems

Version Path
simplabs-excellent-1.2.2 spec/checks/flog_method_check_spec.rb
simplabs-excellent-1.3.0 spec/checks/flog_method_check_spec.rb
simplabs-excellent-1.3.1 spec/checks/flog_method_check_spec.rb
simplabs-excellent-1.4.0 spec/checks/flog_method_check_spec.rb
simplabs-excellent-1.4.1 spec/checks/flog_method_check_spec.rb
simplabs-excellent-1.4.2 spec/checks/flog_method_check_spec.rb
simplabs-excellent-1.5.0 spec/checks/flog_method_check_spec.rb
simplabs-excellent-1.5.1 spec/checks/flog_method_check_spec.rb
simplabs-excellent-1.5.2 spec/checks/flog_method_check_spec.rb
simplabs-excellent-1.5.3 spec/checks/flog_method_check_spec.rb
excellent-1.7.2 spec/checks/flog_method_check_spec.rb
excellent-1.7.1 spec/checks/flog_method_check_spec.rb
excellent-1.7.0 spec/checks/flog_method_check_spec.rb
excellent-1.6.0 spec/checks/flog_method_check_spec.rb
excellent-1.5.4 spec/checks/flog_method_check_spec.rb