Sha256: 3c59fd7f9ed953a2cf201a02108b48b07a5a401628e761e811a3f49ca4894ffe

Contents?: true

Size: 862 Bytes

Versions: 6

Compression:

Stored size: 862 Bytes

Contents

require "spec_helper"

describe Wasabi::Document do
  context "with: no_namespace.wsdl" do

    subject { Wasabi::Document.new fixture(:no_namespace).read }

    its(:namespace) { should == "urn:ActionWebService" }

    its(:endpoint) { should == URI("http://example.com/api/api") }

    its(:element_form_default) { should == :unqualified }

    it { should have(3).operations }

    its(:operations) do
      should include(
        { :get_user_login_by_id => { :input => "GetUserLoginById", :action => "/api/api/GetUserLoginById", :namespace_identifier => "typens" } },
        { :get_all_contacts => { :input => "GetAllContacts", :action => "/api/api/GetAllContacts", :namespace_identifier => "typens" } },
        { :search_user => { :input => "SearchUser", :action => "/api/api/SearchUser", :namespace_identifier => "typens" } }
      )
    end

  end
end

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
wasabi-3.1.0 spec/wasabi/document/no_namespace_spec.rb
wasabi-3.0.0 spec/wasabi/document/no_namespace_spec.rb
wasabi-2.5.1 spec/wasabi/document/no_namespace_spec.rb
wasabi-2.5.0 spec/wasabi/document/no_namespace_spec.rb
wasabi-2.4.1 spec/wasabi/document/no_namespace_spec.rb
wasabi-2.4.0 spec/wasabi/document/no_namespace_spec.rb