Sha256: 7e3ba196389d097a8797ba57ed7ce3ecdfed9e171312fb1414eac179711b2521

Contents?: true

Size: 659 Bytes

Versions: 5

Compression:

Stored size: 659 Bytes

Contents

require "spec_helper"

describe Wasabi::Document do
  context "with: geotrust.xml" do

    subject { Wasabi::Document.new fixture(:geotrust) }

    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

5 entries across 5 versions & 2 rubygems

Version Path
vagrant-tiktalik-0.0.3 vendor/bundle/ruby/2.0.0/gems/wasabi-1.0.0/spec/wasabi/document/geotrust_spec.rb
wasabi-2.1.1 spec/wasabi/document/geotrust_spec.rb
wasabi-2.1.0 spec/wasabi/document/geotrust_spec.rb
wasabi-2.0.0 spec/wasabi/document/geotrust_spec.rb
wasabi-1.0.0 spec/wasabi/document/geotrust_spec.rb