Delete test directory
This commit is contained in:
31
test/fixtures/users.yml
vendored
31
test/fixtures/users.yml
vendored
@@ -1,31 +0,0 @@
|
||||
<% admin_password_digest = BCrypt::Password.create("admin") %>
|
||||
<% user_password_digest = BCrypt::Password.create("user") %>
|
||||
|
||||
# == Schema Information
|
||||
#
|
||||
# Table name: users
|
||||
#
|
||||
# id :integer not null, primary key
|
||||
# admin :boolean default(FALSE), not null
|
||||
# email_address :string not null
|
||||
# lang :string default("en")
|
||||
# password_digest :string not null
|
||||
# username :string
|
||||
# created_at :datetime not null
|
||||
# updated_at :datetime not null
|
||||
#
|
||||
# Indexes
|
||||
#
|
||||
# index_users_on_email_address (email_address) UNIQUE
|
||||
#
|
||||
admin_user:
|
||||
email_address: admin@admin.org
|
||||
password_digest: <%= admin_password_digest %>
|
||||
username: admin
|
||||
admin: true
|
||||
|
||||
user:
|
||||
email_address: user@user.org
|
||||
password_digest: <%= user_password_digest %>
|
||||
username: user
|
||||
admin: false
|
||||
Reference in New Issue
Block a user