Last active
December 29, 2015 03:19
-
-
Save apcomplete/7606933 to your computer and use it in GitHub Desktop.
Shared example for request specs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
require 'spec_helper' | |
describe "Scrapbooks" do | |
context 'beta user' do | |
before do | |
@user = FactoryGirl.create :user, :confirmed, roles: [:beta] | |
@resource = FactoryGirl.create :scrapbook, user: @user | |
@other_resource = FactoryGirl.create :scrapbook | |
end | |
include_examples 'accessible when authenticated', Scrapbook | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment