mirror of
https://github.com/internetee/registry.git
synced 2025-05-16 17:37:17 +02:00
14 lines
300 B
Ruby
14 lines
300 B
Ruby
require 'rails_helper'
|
|
|
|
RSpec.describe 'Admin area zone file generation', settings: false do
|
|
let!(:zone) { create(:zone, origin: 'com') }
|
|
|
|
before do
|
|
sign_in_to_admin_area
|
|
end
|
|
|
|
it 'generates new' do
|
|
post admin_zonefiles_path(origin: 'com')
|
|
expect(response).to be_success
|
|
end
|
|
end
|