mirror of
https://github.com/internetee/registry.git
synced 2025-08-25 02:23:51 +02:00
36 lines
1,000 B
Ruby
36 lines
1,000 B
Ruby
require 'rails_helper'
|
|
|
|
RSpec.describe 'registrar/contacts/show' do
|
|
let(:contact) { instance_spy(Depp::Contact, id: 1, name: 'test') }
|
|
|
|
before do
|
|
assign(:contact, contact)
|
|
stub_template 'shared/_title' => ''
|
|
stub_template 'registrar/contacts/partials/_general' => ''
|
|
stub_template 'registrar/contacts/partials/_statuses' => ''
|
|
stub_template 'registrar/contacts/partials/_domains' => ''
|
|
stub_template 'registrar/contacts/partials/_address' => 'address info'
|
|
end
|
|
|
|
context 'when address processing is enabled' do
|
|
before do
|
|
allow(Contact).to receive(:address_processing?).and_return(true)
|
|
end
|
|
|
|
it 'has address' do
|
|
render
|
|
expect(rendered).to have_text('address info')
|
|
end
|
|
end
|
|
|
|
context 'when address processing is disabled' do
|
|
before do
|
|
allow(Contact).to receive(:address_processing?).and_return(false)
|
|
end
|
|
|
|
it 'has no address' do
|
|
render
|
|
expect(rendered).to_not have_text('address info')
|
|
end
|
|
end
|
|
end
|