Files
openfoodnetwork/spec/features/admin/configuration/zones_spec.rb
Matt-Yorkley b9edea7c0e Rename 'admin/overview#index' route from :admin to :admin_dashboard
Fixes issues with route declarations in Rails 4
2020-01-12 13:11:33 +01:00

41 lines
1.1 KiB
Ruby

require 'spec_helper'
describe "Zones" do
include AuthenticationWorkflow
before(:each) do
quick_login_as_admin
Spree::Zone.delete_all
visit spree.admin_dashboard_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