Sha256: 3051c7dba601f1dded042cdc3181c9028081554f9da2ef2fd3d26936edd59bd5

Contents?: true

Size: 1.13 KB

Versions: 6

Compression:

Stored size: 1.13 KB

Contents

require 'spec_helper'

module Spree
  module Admin
    describe StockLocationsController, type: :controller do
      stub_authorization!

      # Regression for https://github.com/spree/spree/issues/4272
      context "with no countries present" do
        it "cannot create a new stock location" do
          get :new
          expect(flash[:error]).to eq(I18n.t('spree.stock_locations_need_a_default_country'))
          expect(response).to redirect_to(spree.admin_stock_locations_path)
        end
      end

      context "with a default country other than the US present" do
        let(:country) { create :country, iso: "BR" }

        before do
          Spree::Config[:default_country_iso] = country.iso
        end

        it "can create a new stock location" do
          get :new
          expect(response).to be_successful
        end
      end

      context "with a country with the ISO code of 'US' existing" do
        before do
          FactoryBot.create(:country, iso: 'US')
        end

        it "can create a new stock location" do
          get :new
          expect(response).to be_successful
        end
      end
    end
  end
end

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
solidus_backend-2.5.2 spec/controllers/spree/admin/stock_locations_controller_spec.rb
solidus_backend-2.5.1 spec/controllers/spree/admin/stock_locations_controller_spec.rb
solidus_backend-2.5.0 spec/controllers/spree/admin/stock_locations_controller_spec.rb
solidus_backend-2.5.0.rc1 spec/controllers/spree/admin/stock_locations_controller_spec.rb
solidus_backend-2.5.0.beta2 spec/controllers/spree/admin/stock_locations_controller_spec.rb
solidus_backend-2.5.0.beta1 spec/controllers/spree/admin/stock_locations_controller_spec.rb