mirror of
https://github.com/wahyd4/gitlabhq.git
synced 2026-08-09 20:56:08 +10:00
12 lines
193 B
Ruby
12 lines
193 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
|