Sha256: f30529fd07cfa12e87cac0d8656b438b6b878231c418a07fd33af1037b5868cf
Contents?: true
Size: 1.07 KB
Versions: 2
Compression:
Stored size: 1.07 KB
Contents
require "analysers_test_helper" require "rubycritic/analysers/churn" require "rubycritic/source_control_systems/base" describe Rubycritic::Analyser::Churn do before do @analysed_modules = [AnalysedModuleDouble.new(:path => "path_to_some_file.rb")] @source_control_system = SourceControlSystemDouble.new end it "calculates the churn of each file and adds it to analysed_modules" do Rubycritic::Analyser::Churn.new(@analysed_modules, @source_control_system).run @analysed_modules.each do |analysed_module| analysed_module.churn.must_equal 1 end end it "calculates the date of the last commit of each file and adds it to analysed_modules" do Rubycritic::Analyser::Churn.new(@analysed_modules, @source_control_system).run @analysed_modules.each do |analysed_module| analysed_module.committed_at.must_equal "2013-10-09 12:52:49 +0100" end end end class SourceControlSystemDouble < Rubycritic::SourceControlSystem::Base def revisions_count(path) 1 # churn end def date_of_last_commit(path) "2013-10-09 12:52:49 +0100" end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
rubycritic-1.1.1 | test/lib/rubycritic/analysers/churn_test.rb |
rubycritic-1.1.0 | test/lib/rubycritic/analysers/churn_test.rb |