dawarich/spec/models/place_visit_spec.rb
2024-08-12 22:18:11 +02:00

10 lines
225 B
Ruby

# frozen_string_literal: true
require 'rails_helper'
RSpec.describe PlaceVisit, type: :model do
describe 'associations' do
it { is_expected.to belong_to(:place) }
it { is_expected.to belong_to(:visit) }
end
end