aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/test/models/course.rb
blob: 0af33ed85fb58d164bfa944893fa7f96b0b58364 (plain) (blame)
1
2
3
4
5
6
7
# frozen_string_literal: true
require_dependency "models/arunit2_model"

class Course < ARUnit2Model
  belongs_to :college
  has_many :entrants
end