Last active
December 28, 2015 14:49
-
-
Save dwaynemac/7517820 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
@account = FactoryGirl.create(:account) | |
PadmaAccount.stub!(:find).and_return(PadmaAccount.new(name: @account.name, enabled: true)) | |
@user = FactoryGirl.create(:user) | |
pu = PadmaUser.new(username: @user.username) | |
User.any_instance.stub(:padma_enabled?).and_return true | |
User.any_instance.stub(:padma).and_return pu | |
sign_in(@user) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment