mirror of
https://github.com/internetee/registry.git
synced 2025-05-17 17:59:47 +02:00
8 lines
194 B
Ruby
8 lines
194 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) }
|
|
end
|