mirror of
https://github.com/Growstuff/growstuff.git
synced 2026-01-30 12:10:59 -05:00
* FactoryGirl Changed to FactoryBot file fix changes based on comments received Bundle Update on 2017-10-29 style update to align hash literal added package-lock * indentation fixes with rubocop * name added to contributors
10 lines
243 B
Ruby
10 lines
243 B
Ruby
require 'rails_helper'
|
|
|
|
describe Authentication do
|
|
it 'creates an authentication' do
|
|
@auth = FactoryBot.create(:authentication)
|
|
@auth.should be_an_instance_of Authentication
|
|
@auth.member.should be_an_instance_of Member
|
|
end
|
|
end
|