Files
growstuff/spec/models/authentication_spec.rb
2019-12-20 03:33:23 +00:00

12 lines
274 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 Authentication
@auth.member.should be_an_instance_of Member
end
end