Commit 7b70d81c authored by Dmitriy Zaporozhets's avatar Dmitriy Zaporozhets

Speed up tests

parent 91a31d76
......@@ -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
......
......@@ -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)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment