Sha256: 5b41a3cd0974c2ee684af9d87d297ddad284a587aa544de9a948ffbbe5fe047c

Contents?: true

Size: 1.14 KB

Versions: 3

Compression:

Stored size: 1.14 KB

Contents

require 'spec_helper'

describe "Zones", type: :feature, js: true do
  stub_authorization!

  before(:each) do
    Spree::Zone.delete_all
    visit spree.admin_path
    click_link "Configuration"
  end

  context "show" do
    it "should display existing zones" do
      create(:zone, :name => "eastern", :description => "zone is eastern")
      create(:zone, :name => "western", :description => "cool san fran")
      click_link "Zones"

      within_row(1) { expect(page).to have_content("eastern") }
      within_row(2) { expect(page).to have_content("western") }

      click_link "zones_order_by_description_title"

      within_row(1) { expect(page).to have_content("western") }
      within_row(2) { expect(page).to have_content("eastern") }
    end
  end

  context "create" do
    it "should allow an admin to create a new zone" do
      click_link "Zones"
      click_link "admin_new_zone_link"
      expect(page).to have_content("New Zone")
      fill_in "zone_name", :with => "japan"
      fill_in "zone_description", :with => "japanese time zone"
      click_button "Create"
      expect(page).to have_content("successfully created!")
    end
  end
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
spree_backend-3.0.7 spec/features/admin/configuration/zones_spec.rb
spree_backend-3.0.6.1 spec/features/admin/configuration/zones_spec.rb
spree_backend-3.0.6 spec/features/admin/configuration/zones_spec.rb