Sha256: 1695840d8f68d8b392ef9b262332f69728a7744797efdcd919d864a2c7a08264

Contents?: true

Size: 554 Bytes

Versions: 5

Compression:

Stored size: 554 Bytes

Contents

require 'helper'
require 'peddler/xml_parser'

class PeddlerXMLParserTest < MiniTest::Test
  def setup
    body = '<Response><Result><NextToken>123</NextToken><Foo>Bar</Foo></Result></Response>'
    res = OpenStruct.new(body: body, headers: { 'Content-Type' => 'text/xml', 'Content-Length' => '78'})

    @parser = Peddler::XMLParser.new(res)
  end

  def test_parses_data
    assert_equal 'Bar', @parser.parse['Foo']
  end

  def test_next_token
    assert_equal '123', @parser.next_token
  end

  def test_validates
    assert @parser.valid?
  end
end

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
peddler-0.8.0 test/unit/peddler/test_xml_parser.rb
peddler-0.7.11 test/unit/peddler/test_xml_parser.rb
peddler-0.7.10 test/unit/peddler/test_xml_parser.rb
peddler-0.7.9 test/unit/peddler/test_xml_parser.rb
peddler-0.7.8 test/unit/peddler/test_xml_parser.rb