mirror of
https://github.com/astuto/astuto.git
synced 2025-12-15 03:07:52 +01:00
10 lines
196 B
Ruby
10 lines
196 B
Ruby
require 'rails_helper'
|
|
|
|
RSpec.describe Invitation, type: :model do
|
|
let(:invitation) { FactoryBot.build(:invitation) }
|
|
|
|
it 'has a valid factory' do
|
|
expect(invitation).to be_valid
|
|
end
|
|
end
|