Remove backward compatibility of factories.

This commit is contained in:
Vincent Bonmalais 2012-11-06 14:31:55 +11:00
parent d52f06f380
commit 80fb38de7a
54 changed files with 261 additions and 279 deletions

View file

@ -3,7 +3,7 @@ module LoginHelpers
#
# role - User role (e.g., :admin, :user)
def login_as(role)
@user = Factory(role)
@user = create(role)
login_with(@user)
end

View file

@ -59,9 +59,9 @@ module UrlAccess
def emulate_user(user)
user = case user
when :user then Factory(:user)
when :user then create(:user)
when :visitor then nil
when :admin then Factory(:admin)
when :admin then create(:admin)
else user
end
login_with(user) if user