Sha256: 491b0a526e440a5542aef52c368e680f7f205d36a9ad50f8c898eb1e2661b2d7
Contents?: true
Size: 1.39 KB
Versions: 3
Compression:
Stored size: 1.39 KB
Contents
require 'spec_helper' describe "Roles", type: :feature, js: true do stub_authorization! before(:each) do create(:role, name: "admin") create(:role, name: "user") visit spree.admin_path click_link "Configuration" # Crap workaround for animation to finish expanding so click doesn't hit ReimbursementTypes. sleep 1 click_link "Roles" end context "show" do it "should display existing roles" do within_row(1) { expect(page).to have_content("admin") } within_row(2) { expect(page).to have_content("user") } end end context "create" do it "should be able to create a new role" do click_link "admin_new_role_link" expect(page).to have_content("New Role") fill_in "role_name", with: "blogger" click_button "Create" expect(page).to have_content("successfully created!") end end context "edit" do it "should not be able to edit the admin role" do within_row(1) do expect(find("td:nth-child(2)")).not_to have_selector(:css, "span.icon-edit") expect(find("td:nth-child(2)")).not_to have_selector(:css, "span.icon-delete") end end it "should be able to edit the user role" do within_row(2) do expect(find("td:nth-child(2)")).to have_selector(:css, "span.icon-edit") expect(find("td:nth-child(2)")).to have_selector(:css, "span.icon-delete") end end end end
Version data entries
3 entries across 3 versions & 1 rubygems