Sha256: eb1fd184fde799f1a1d38242eb35d8280c6bbc137240d036d44780e1757b952c

Contents?: true

Size: 930 Bytes

Versions: 6

Compression:

Stored size: 930 Bytes

Contents

require "spec_helper"

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

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

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

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

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

    it { should have(3).operations }

    its(:operations) do
      should include(
        { :delete_client => { :input => "Client.Delete", :action => "http://api.example.com/api/Client.Delete", :namespace_identifier => "tns" } },
        { :get_clients   => { :input => "User.GetClients", :action => "http://api.example.com/api/User.GetClients", :namespace_identifier => "tns" } },
        { :get_api_key   => { :input => "User.GetApiKey", :action => "http://api.example.com/api/User.GetApiKey", :namespace_identifier => "tns" } }
      )
    end

  end
end

Version data entries

6 entries across 6 versions & 1 rubygems

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