summaryrefslogtreecommitdiff
path: root/test/rexml/rexml_test_utils.rb
blob: 8bb002cee23dc5d1072fdf20ccc0c75f3dcf0132 (plain)
1
2
3
4
5
6
7
8
9
10
# frozen_string_literal: false

require "test/unit"
require "rexml/document"

module REXMLTestUtils
  def fixture_path(*components)
    File.join(File.dirname(__FILE__), "data", *components)
  end
end