require 'test_helper' class EppDomainTransferBaseTest < ApplicationIntegrationTest def test_non_existent_domain request_xml = <<-XML non-existent.test any XML post '/epp/command/transfer', { frame: request_xml }, { 'HTTP_COOKIE' => 'session=api_goodnames' } assert_equal '2303', Nokogiri::XML(response.body).at_css('result')[:code] end end