Files
growstuff/spec/models/authentication_spec.rb

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