Sha256: 701965a1a0a8a04051e009cdf7f431b2c36a01d0ebf88ebbb3754f3485fa24df
Contents?: true
Size: 1.34 KB
Versions: 19
Compression:
Stored size: 1.34 KB
Contents
require 'spec_helper' module Spree describe Api::InventoryUnitsController do render_views before do stub_authentication! @inventory_unit = create(:inventory_unit) end it "gets an inventory unit" do api_get :show, :id => @inventory_unit.id json_response['state'].should eq @inventory_unit.state end it "updates an inventory unit (only shipment is accessable by default)" do api_put :update, :id => @inventory_unit.id, :inventory_unit => { :shipment => nil } json_response['shipment_id'].should be_nil end context 'fires state event' do it 'if supplied with :fire param' do api_put :update, :id => @inventory_unit.id, :fire => 'ship', :inventory_unit => { :shipment => nil } json_response['state'].should eq 'shipped' end it 'and returns exception if cannot fire' do api_put :update, :id => @inventory_unit.id, :fire => 'return' json_response['exception'].should match /cannot transition to return/ end it 'and returns exception bad state' do api_put :update, :id => @inventory_unit.id, :fire => 'bad' json_response['exception'].should match /cannot transition to bad/ end end end end
Version data entries
19 entries across 19 versions & 1 rubygems