Sha256: b38cebf58cc17e15346838ad682f70ddf056e263ae692a79c96e91692315a0f5

Contents?: true

Size: 600 Bytes

Versions: 9

Compression:

Stored size: 600 Bytes

Contents

$: << File.join(File.dirname(__FILE__), "../lib")

require 'ninjs'
require 'fileutils'
require 'rspec'
require 'digest/md5'

RSpec::Matchers.define(:be_same_file_as) do |epxected_file_path|
  match do |actual_file_path|
    md5_hash(actual_file_path).should == md5_hash(epxected_file_path)
  end
  
  def md5_hash(file_path)
    Digest::MD5.hexdigest(File.read(file_path))    
  end
end

def suppress_output(&block)
  original_stdout = $stdout
  $stdout = fake = StringIO.new
  
  begin
    yield
  ensure
    $stdout = original_stdout
  end
  
  fake.string
end

SPEC_DIR = "#{Ninjs::BASE_DIR}/spec"

Version data entries

9 entries across 9 versions & 1 rubygems

Version Path
ninjs-0.16.8 spec/spec_helper.rb
ninjs-0.16.7 spec/spec_helper.rb
ninjs-0.16.6 spec/spec_helper.rb
ninjs-0.16.5 spec/spec_helper.rb
ninjs-0.16.4 spec/spec_helper.rb
ninjs-0.16.3 spec/spec_helper.rb
ninjs-0.16.2 spec/spec_helper.rb
ninjs-0.16.1 spec/spec_helper.rb
ninjs-0.16.0 spec/spec_helper.rb