Files
growstuff/spec/models/authentication_spec.rb
Daniel O'Connor f1acb35520 Merge pull request #4537 from Growstuff/FactoryBot/SyntaxMethods
Rubocop: FactoryBot/SyntaxMethods
2026-04-23 22:29:24 +09:30

12 lines
264 B
Ruby

# frozen_string_literal: true
require 'rails_helper'
describe Authentication do
it 'creates an authentication' do
@auth = create(:authentication)
@auth.should be_an_instance_of described_class
@auth.member.should be_an_instance_of Member
end
end