asciidoctor-foodogsquared-e.../spec/spec_helper.rb
Gabriel Arazas de9f3a0e9c
Restructure extensions with Ruby modules
Also restructured how they're named in the filesystem and the class
names as well.
2023-11-06 22:54:57 +08:00

16 lines
295 B
Ruby

# frozen_string_literal: true
require 'asciidoctor'
require 'asciidoctor-foodogsquared-extensions'
include Asciidoctor::Foodogsquared::Extensions
RSpec.configure do
def fixtures_dir
File.join __dir__, 'fixtures'
end
def fixtures_file path
File.join fixtures_dir, path
end
end