File: spec_helper.rb

package info (click to toggle)
ruby-roxml 4.2.0-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 800 kB
  • sloc: ruby: 4,133; xml: 1,013; makefile: 7
file content (26 lines) | stat: -rw-r--r-- 675 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
require 'ostruct'
require 'rubygems'
require 'pathname'
require 'ostruct'
require 'rspec/matchers' # req by equivalent-xml custom matcher `be_equivalent_to`

require_relative './../test/support/fixtures'
require 'roxml'
require_relative './shared_specs'

def xml_for(name)
  Pathname.new(File.dirname(__FILE__)).expand_path.dirname.join("examples/xml/#{name}.xml")
end

class RoxmlObject
  include ROXML
end

# returns an array representing the path  through first child of each element in the doc
def xml_path(xml, path = [])
  path << xml.name if xml.is_a?(Nokogiri::XML::Element)
  unless xml.children.empty?
    xml_path(xml.children.first, path)
  end
  return path
end