Sha256: 052d09ff754d1e2d23b0611651db354c832d977918303cf5236d2b91e7e87412
Contents?: true
Size: 1.09 KB
Versions: 25
Compression:
Stored size: 1.09 KB
Contents
require 'spec_helper' describe "my_accounts/show" do fixtures :all before(:each) do @profile = assign(:profile, profiles(:admin)) end describe "when logged in as Librarian" do before(:each) do @profile = assign(:profile, profiles(:librarian2)) user = users(:librarian1) view.stub(:current_user).and_return(user) end it "renders attributes in <p>" do allow(view).to receive(:policy).and_return double(update?: true, destroy?: true) render # Run the generator again with the --webrat flag if you want to use webrat matchers end it "cannot be deletable by other librarian" do allow(view).to receive(:policy).and_return double(update?: true, destroy?: true) render end end describe "when logged in as User" do before(:each) do @profile = assign(:profile, profiles(:user2)) user = users(:librarian1) view.stub(:current_user).and_return(user) end it "renders attributes in <p>" do allow(view).to receive(:policy).and_return double(update?: true, destroy?: true) render end end end
Version data entries
25 entries across 24 versions & 2 rubygems