Speed up tests

This commit is contained in:
Dmitriy Zaporozhets 2013-10-17 10:52:38 +03:00
parent 91a31d767f
commit 7b70d81c83
2 changed files with 3 additions and 6 deletions

View File

@ -17,16 +17,14 @@ FactoryGirl.define do
sequence(:username) { |n| "#{Faker::Internet.user_name}#{n}" }
password "123456"
password_confirmation { password }
confirmed_at { Time.now }
confirmation_token { nil }
trait :admin do
admin true
end
factory :admin, traits: [:admin]
after :create do |u|
u.confirm!
end
end
factory :project do

View File

@ -86,9 +86,8 @@ module TestEnv
)
ActivityObserver.any_instance.stub(
current_user: double("current_user", id: 1)
current_user: double("current_user", id: 1)
)
end
def clear_repo_dir(namespace, name)