Sha256: 64255dc43202b54b68840cbc7b6cb8af51ec3874c64cf43628fa0a3c61e97a3f
Contents?: true
Size: 518 Bytes
Versions: 13
Compression:
Stored size: 518 Bytes
Contents
require "rails_helper" feature "Clinician - Dashboard Links", type: :feature do fixtures :all it "redirects if accessed by a clinician" do sign_in users :clinician1 visit "/think_feel_do_dashboard" expect(page).to have_text "Home" expect(page).to have_link "ThinkFeelDo" expect(page).to have_link "Arms" expect(page).to_not have_link "Groups" expect(page).to_not have_link "Participants" expect(page).to_not have_link "Users" expect(page).to_not have_link "Reports" end end
Version data entries
13 entries across 13 versions & 1 rubygems