1
0
mirror of https://github.com/fspc/BikeShed-1.git synced 2025-03-11 21:53:22 -04:00

Adding bike_admin fixture, fixed seeds.rb

This commit is contained in:
Jason Denney 2013-06-13 21:11:54 -04:00
parent ff60fdd67f
commit d431024f01
2 changed files with 6 additions and 2 deletions

View File

@ -1,9 +1,12 @@
user:
id: 1
role: user
staff:
bike_admin:
id: 2
role: bike_admin
staff:
id: 3
role: staff
admin:
id: 3
id: 4
role: admin

View File

@ -25,6 +25,7 @@ if Rails.env.development?
FactoryGirl.create(:user)
FactoryGirl.create(:staff)
FactoryGirl.create(:bike_admin)
FactoryGirl.create(:admin)
FactoryGirl.create(:user_profile)
end