Sha256: 3157b855abacabe7e8d968d7d994b738b16fac49b28cceb24f3541a3c4ae67d3
Contents?: true
Size: 709 Bytes
Versions: 5
Compression:
Stored size: 709 Bytes
Contents
require 'spec_helper' describe Checker::Modules::Coffeescript do it 'should only check .coffee files' do files = ['a.rb', 'b.js.erb', 'c.r', 'd.yml', 'e.yaml', 'f.coffee'] mod = Checker::Modules::Coffeescript.new(files) mod.stub(:check_for_executable).and_return(true) mod.should_receive(:check_one_file).with('f.coffee').and_return(stub(:success? => true, :status => :ok)) mod.should_not_receive(:check_one_file).with('e.yaml') mod.should_not_receive(:check_one_file).with('d.yml') mod.should_not_receive(:check_one_file).with('a.rb') mod.should_not_receive(:check_one_file).with('b.js.erb') mod.should_not_receive(:check_one_file).with('c.r') mod.check end end
Version data entries
5 entries across 5 versions & 1 rubygems