Sha256: 1dddfd00f8c84890e22013818771739790b63391220bece8f8da3a09a1f48fb8
Contents?: true
Size: 665 Bytes
Versions: 6
Compression:
Stored size: 665 Bytes
Contents
require "spec_helper" describe Wasabi::Document do context "with: geotrust.wsdl" do subject { Wasabi::Document.new fixture(:geotrust).read } its(:namespace) { should == "http://api.geotrust.com/webtrust/query" } its(:endpoint) { should == URI("https://test-api.geotrust.com:443/webtrust/query.jws") } its(:element_form_default) { should == :qualified } it { should have(2).operations } its(:operations) do should include( { :get_quick_approver_list => { :input => "GetQuickApproverList", :action => "GetQuickApproverList" } }, { :hello => { :input => "hello", :action => "hello" } } ) end end end
Version data entries
6 entries across 6 versions & 1 rubygems