Sha256: a7285909dbab59a5a7506ee283d74e6e2e390eba71c487602cecbb4bf2657b1e
Contents?: true
Size: 825 Bytes
Versions: 1
Compression:
Stored size: 825 Bytes
Contents
require 'spec_helper' describe Spree::Api::V1::BaseController do controller(Spree::Api::V1::BaseController) do def index render :json => { "products" => [] } end end context "cannot make a request to the API" do it "without an API key" do api_get :index json_response.should == { "error" => "You must specify an API key." } response.status.should == 401 end it "with an invalid API key" do request.env["X-Spree-Token"] = "fake_key" get :index, {} json_response.should == { "error" => "Invalid API key (fake_key) specified." } response.status.should == 401 end it "using an invalid token param" do get :index, :token => "fake_key" json_response.should == { "error" => "Invalid API key (fake_key) specified." } end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
spree_api-1.1.0.rc1 | spec/controllers/spree/api/v1/base_controller_spec.rb |