mirror of
https://github.com/internetee/registry.git
synced 2025-06-07 21:25:39 +02:00
13 lines
249 B
Ruby
13 lines
249 B
Ruby
require 'rails_helper'
|
|
|
|
describe BlockedDomain do
|
|
context 'with no attributes' do
|
|
before :all do
|
|
@blocked_domain = BlockedDomain.new
|
|
end
|
|
|
|
it 'should have names array' do
|
|
@blocked_domain.name.should == nil
|
|
end
|
|
end
|
|
end
|