Sha256: d2538e98215808ebbd571f642f2c57abc13e2c4fe675fbe96cbb5c9b0b51dec0
Contents?: true
Size: 1.26 KB
Versions: 1
Compression:
Stored size: 1.26 KB
Contents
require File.expand_path(File.dirname(__FILE__) + '/../spec_helper') describe Simplabs::Excellent::Checks::ModuleLineCountCheck do before do @excellent = Simplabs::Excellent::Runner.new(Simplabs::Excellent::Checks::ModuleLineCountCheck.new({ :threshold => 2 })) end describe '#evaluate' do it 'should accept modules with less lines than the threshold' do content = <<-END module OneLineModule; end END @excellent.check_content(content) @excellent.warnings.should be_empty end it 'should accept modules with the same number of lines as the threshold' do content = <<-END module TwoLinesModule end END @excellent.check_content(content) @excellent.warnings.should be_empty end it 'should reject modules with more lines than the threshold' do content = <<-END module FourLinesModule @foo = 1 @bar = 2 end END @excellent.check_content(content) warnings = @excellent.warnings warnings.should_not be_empty warnings[0].info.should == { :module => 'FourLinesModule', :count => 4 } warnings[0].line_number.should == 1 warnings[0].message.should == 'FourLinesModule has 4 lines.' end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
simplabs-excellent-1.2.1 | spec/checks/module_line_count_check_spec.rb |