Sha256: 5ffa3de1aed7228f1c1e3d84ba1c75b9ce5c7304d9452e002496d194f63be9fa

Contents?: true

Size: 790 Bytes

Versions: 5

Compression:

Stored size: 790 Bytes

Contents

require 'spec_helper'

describe Checker::Modules::Haml do
  it 'should only check .haml files' do
    files = ['a.rb', 'b.js.erb', 'c.r', 'd.yml', 'e.yaml', 'f.coffee', 'g.haml']
    mod = Checker::Modules::Haml.new(files)
    mod.stub(:check_for_executable).and_return(true)
    mod.stub(:check_one_file).and_return(stub(:success? => true, :status => :ok))
    mod.should_receive(:check_one_file).with('g.haml')
    mod.should_not_receive(:check_one_file).with('f.coffee')
    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

Version Path
checker-0.7.0 spec/checker/modules/haml_spec.rb
checker-0.6.6 spec/checker/modules/haml_spec.rb
checker-0.6.5 spec/checker/modules/haml_spec.rb
checker-0.6.5.rc2 spec/checker/modules/haml_spec.rb
checker-0.6.5.rc1 spec/checker/modules/haml_spec.rb