Sha256: 8ffa6220f823338c2ce81eeb7c5263238f9a4bfdc065b0f4af2bb44c4db9b543
Contents?: true
Size: 1.24 KB
Versions: 15
Compression:
Stored size: 1.24 KB
Contents
require File.expand_path(File.dirname(__FILE__) + '/../spec_helper') describe Simplabs::Excellent::Checks::MethodLineCountCheck do before do @excellent = Simplabs::Excellent::Runner.new(Simplabs::Excellent::Checks::MethodLineCountCheck.new({ :threshold => 2 })) end describe '#evaluate' do it 'should accept methods with less lines than the threshold' do code = <<-END def one_line_method end END @excellent.check_code(code) @excellent.warnings.should be_empty end it 'should accept methods with the same number of lines as the threshold' do code = <<-END def two_line_method end END @excellent.check_code(code) @excellent.warnings.should be_empty end it 'should reject methods with more lines than the threshold' do code = <<-END def four_line_method puts 1 puts 2 end END @excellent.check_code(code) warnings = @excellent.warnings warnings.should_not be_empty warnings[0].info.should == { :method => 'four_line_method', :count => 4 } warnings[0].line_number.should == 1 warnings[0].message.should == 'four_line_method has 4 lines.' end end end
Version data entries
15 entries across 15 versions & 2 rubygems