wasabi 3.3.1 → 3.4.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.travis.yml +1 -1
- data/CHANGELOG.md +5 -1
- data/lib/wasabi/parser.rb +16 -65
- data/lib/wasabi/version.rb +1 -1
- data/spec/wasabi/parser/marketo_spec.rb +1 -1
- data/spec/wasabi/parser/multiple_parts_in_message_spec.rb +2 -6
- data/wasabi.gemspec +1 -1
- metadata +4 -8
- data/spec/fixtures/savon562.wsdl +0 -13882
- data/spec/wasabi/parser/message_element_spec.rb +0 -17
@@ -1,17 +0,0 @@
|
|
1
|
-
require 'spec_helper'
|
2
|
-
|
3
|
-
describe Wasabi::Parser do
|
4
|
-
context 'with: savon562.wsdl' do
|
5
|
-
subject do
|
6
|
-
parser = Wasabi::Parser.new Nokogiri::XML(xml)
|
7
|
-
parser.parse
|
8
|
-
parser
|
9
|
-
end
|
10
|
-
|
11
|
-
let(:xml) { fixture(:savon562).read }
|
12
|
-
|
13
|
-
it 'parses the operations' do
|
14
|
-
subject.operations[:write_case_eform_data][:input].should == 'writeCaseEformData'
|
15
|
-
end
|
16
|
-
end
|
17
|
-
end
|