mirror of
https://github.com/internetee/registry.git
synced 2025-05-18 18:29:40 +02:00
9 lines
231 B
Ruby
9 lines
231 B
Ruby
require 'rails_helper'
|
|
|
|
describe Registrar do
|
|
it { should belong_to(:country) }
|
|
it { should have_many(:domains) }
|
|
it { should have_many(:epp_users) }
|
|
it { should have_many(:users) }
|
|
it { should have_many(:messages) }
|
|
end
|