Sha256: ebca1970327444a8994391a095f9e10daf138fc07c8df73d71a2c6fa8ba8286b

Contents?: true

Size: 562 Bytes

Versions: 3

Compression:

Stored size: 562 Bytes

Contents

# frozen_string_literal: true

def uploader_test_image
  Archangel::Engine.root + "lib/archangel/testing_support/fixtures/image.gif"
end

def uploader_test_stylesheet
  Archangel::Engine.root +
    "lib/archangel/testing_support/fixtures/stylesheet.css"
end

# Support files
%w[context support helpers matchers shared_contexts].each do |type|
  Dir["#{File.dirname(__FILE__)}/#{type}/**/*.rb"].each do |f|
    load File.expand_path(f)
  end
end

# Factories
Dir["#{File.dirname(__FILE__)}/factories/**/archangel_*.rb"].each do |f|
  load File.expand_path(f)
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
archangel-0.4.0 lib/archangel/testing_support/support.rb
archangel-0.3.0 lib/archangel/testing_support/support.rb
archangel-0.0.8 lib/archangel/testing_support/support.rb