Sha256: a9c8f18a6bdaec7cd4800304b872f5e6fccb68db12ba36a265bcc24d45f9999a

Contents?: true

Size: 1.47 KB

Versions: 14

Compression:

Stored size: 1.47 KB

Contents

# Copyright (C) 2008-2011 AMEE UK Ltd. - http://www.amee.com
# Released as Open Source Software under the BSD 3-Clause license. See LICENSE.txt for details.

require 'spec_helper.rb'

test_set = {
  'attrib_test/@attrib' => 'attribute_value',
  'attrib_test/@non_existent_attrib' => nil,
  'attrib_test/@empty_attrib' => '',
  'content_test' => 'content',
  'whitespace_content_test' => "\n    ",
  'empty_content_test' => nil,
  'self_closing_content_test' => nil,
  'multi_attrib_test/attrib_test/@attrib' => [
      'attribute_value',
      'attribute_value_1',
      ''
    ],
  'multi_content_test/content' => [
      'content',
      "\n        ",
      nil,
      nil
    ],
}

class REXMLTestObject
  include ParseHelper
  def xmlpathpreamble
    '/root/'
  end
  def initialize
    @doc = REXML::Document.new(fixture('parse_test.xml'))
  end
end

describe ParseHelper, 'using REXML' do

  before :all do
    @obj = REXMLTestObject.new
  end

  test_set.each_pair do |xpath, res|
    it "should parse #{xpath} to #{res}" do
      @obj.send(:x, xpath).should eql res
    end
  end

end


class NokogiriTestObject
  include ParseHelper
  def xmlpathpreamble
    '/root/'
  end
  def initialize
    @doc = load_xml_doc(fixture('parse_test.xml'))
  end
end

describe ParseHelper, 'using Nokogiri' do

  before :all do
    @obj = NokogiriTestObject.new
  end

  test_set.each_pair do |xpath, res|
    it "should parse #{xpath} to #{res}" do
      @obj.send(:x, xpath).should eql res
    end
  end


end

Version data entries

14 entries across 14 versions & 1 rubygems

Version Path
amee-4.4.0 spec/parse_helper_spec.rb
amee-4.3.2 spec/parse_helper_spec.rb
amee-4.3.1 spec/parse_helper_spec.rb
amee-4.3.0 spec/parse_helper_spec.rb
amee-4.2.0 spec/parse_helper_spec.rb
amee-4.1.7 spec/parse_helper_spec.rb
amee-4.1.6 spec/parse_helper_spec.rb
amee-4.1.5 spec/parse_helper_spec.rb
amee-4.1.4 spec/parse_helper_spec.rb
amee-4.1.3 spec/parse_helper_spec.rb
amee-4.1.2 spec/parse_helper_spec.rb
amee-4.1.1 spec/parse_helper_spec.rb
amee-4.1.0 spec/parse_helper_spec.rb
amee-4.0.0 spec/parse_helper_spec.rb