Sha256: d5bf562e2701fc1dcbd22159b1aa2789c1f9dd316e4c012c817c0fc53de47ae6

Contents?: true

Size: 840 Bytes

Versions: 5

Compression:

Stored size: 840 Bytes

Contents

# this file is automatically required when you run `assert`
# put any test helpers here

# add the root dir to the load path
$LOAD_PATH.unshift(File.expand_path("../..", __FILE__))

# require pry for debugging (`binding.pry`)
require 'pry'

require 'test/support/factory'

require 'pathname'
TEST_SUPPORT_PATH = Pathname.new(File.expand_path('../support', __FILE__))

ENV['DASSETS_TEST_MODE']   = 'yes'

require 'dassets'

@dumb_engine = Class.new(Dassets::Engine) do
  def ext(in_ext); ''; end
  def compile(input); "#{input}\nDUMB"; end
end
@useless_engine = Class.new(Dassets::Engine) do
  def ext(in_ext); 'no-use'; end
  def compile(input); "#{input}\nUSELESS"; end
end

Dassets.configure do |c|
  c.source TEST_SUPPORT_PATH.join("app/assets") do |s|
    s.engine 'dumb', @dumb_engine
    s.engine 'useless', @useless_engine
  end
end

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
dassets-0.13.0 test/helper.rb
dassets-0.12.0 test/helper.rb
dassets-0.11.0 test/helper.rb
dassets-0.10.1 test/helper.rb
dassets-0.10.0 test/helper.rb