Sha256: a1f88e24481a34acf5fb27e2bd36f43bb9d3d41911a59577848559954554381d

Contents?: true

Size: 377 Bytes

Versions: 1

Compression:

Stored size: 377 Bytes

Contents

require 'spec_helper'

describe Wasabi::Parser do
  context 'with: savon562.wsdl' do
    subject do
      parser = Wasabi::Parser.new Nokogiri::XML(xml)
      parser.parse
      parser
    end

    let(:xml) { fixture(:savon562).read }

    it 'parses the operations' do
      subject.operations[:write_case_eform_data][:input].should == 'writeCaseEformData'
    end
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
wasabi-3.3.1 spec/wasabi/parser/message_element_spec.rb