mirror of
https://github.com/Growstuff/growstuff.git
synced 2025-12-24 01:57:46 -05:00
12 lines
275 B
Ruby
12 lines
275 B
Ruby
# frozen_string_literal: true
|
|
|
|
require 'rails_helper'
|
|
|
|
describe Authentication do
|
|
it 'creates an authentication' do
|
|
@auth = FactoryBot.create(:authentication)
|
|
@auth.should be_an_instance_of described_class
|
|
@auth.member.should be_an_instance_of Member
|
|
end
|
|
end
|