gitlab-org--gitlab-foss/spec/support/fixture_helpers.rb

16 lines
349 B
Ruby
Raw Normal View History

2015-08-20 19:41:47 +00:00
module FixtureHelpers
def fixture_file(filename, dir: '')
2015-08-20 19:41:47 +00:00
return '' if filename.blank?
File.read(expand_fixture_path(filename, dir: dir))
end
def expand_fixture_path(filename, dir: '')
File.expand_path(Rails.root.join(dir, 'spec', 'fixtures', filename))
2015-08-20 19:41:47 +00:00
end
end
RSpec.configure do |config|
config.include FixtureHelpers
end