main
1# frozen_string_literal: true
2
3RSpec.configure do |config|
4 config.include(Module.new do
5 def fixture_file(path)
6 Pathname.new(__FILE__).parent.join("../fixtures", path)
7 end
8
9 def fixture_file_content(path)
10 fixture_file(path).read
11 end
12 end)
13end