gitlab-org--gitlab-foss/features/steps/shared/admin.rb
2014-09-22 10:01:50 +02:00

12 lines
194 B
Ruby

module SharedAdmin
include Spinach::DSL
step 'there are projects in system' do
2.times { create(:project) }
end
step 'system has users' do
2.times { create(:user) }
end
end