mirror of
https://github.com/Freika/dawarich.git
synced 2026-01-10 01:01:39 -05:00
10 lines
225 B
Ruby
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
|