Install and set up Devise

This commit is contained in:
riggraz
2019-08-18 18:51:25 +02:00
parent f3ed240965
commit fb924c9e75
11 changed files with 483 additions and 1 deletions

5
spec/factories/users.rb Normal file
View File

@@ -0,0 +1,5 @@
FactoryBot.define do
factory :user do
end
end

5
spec/models/user_spec.rb Normal file
View File

@@ -0,0 +1,5 @@
require 'rails_helper'
RSpec.describe User, type: :model do
pending "add some examples to (or delete) #{__FILE__}"
end