Sha256: b00ac8c1fa175c7e658a2a534fc2d6b3ff463bcab33cfec4ba0bfcbedabdf261

Contents?: true

Size: 543 Bytes

Versions: 5

Compression:

Stored size: 543 Bytes

Contents

require "spec_helper"

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

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

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

    it { should have(3).operations }

    its(:operations) do
      should include(
        { :post => { :input => "Post", :action => "Post" } },
        { :post11only => { :input => "Post11only", :action => "Post11only" } },
        { :post12only => { :input => "Post12only", :action => "Post12only" } }
      )
    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/two_bindings_spec.rb
wasabi-2.1.1 spec/wasabi/document/two_bindings_spec.rb
wasabi-2.1.0 spec/wasabi/document/two_bindings_spec.rb
wasabi-2.0.0 spec/wasabi/document/two_bindings_spec.rb
wasabi-1.0.0 spec/wasabi/document/two_bindings_spec.rb