From 07f1594a7aca2c116b5b7fb4fccabe098da0cdb7 Mon Sep 17 00:00:00 2001 From: soh_cah_toa Date: Sat, 3 May 2014 20:42:40 -0400 Subject: [PATCH] Removed old DNS RESTful API temporary test suite. Previously, this was used to make writing tests easier without having to run the entire integration test suite (of which it is still a part of). Somehow it accidentally got committed. --- test/integration/ts_dns_rest.rb | 20 -------------------- test/integration/ts_integration.rb | 2 +- 2 files changed, 1 insertion(+), 21 deletions(-) delete mode 100644 test/integration/ts_dns_rest.rb diff --git a/test/integration/ts_dns_rest.rb b/test/integration/ts_dns_rest.rb deleted file mode 100644 index 301d30bba..000000000 --- a/test/integration/ts_dns_rest.rb +++ /dev/null @@ -1,20 +0,0 @@ -# -# Copyright (c) 2006-2013 Wade Alcorn - wade@bindshell.net -# Browser Exploitation Framework (BeEF) - http://beefproject.com -# See the file 'doc/COPYING' for copying permission -# -require '../common/ts_common' -require './tc_dns_rest' - -class TS_DnsIntegrationTests - - def self.suite - suite = Test::Unit::TestSuite.new(name="BeEF DNS Integration Test Suite") - suite << TC_DnsRest.suite - - return suite - end - -end - -Test::Unit::UI::Console::TestRunner.run(TS_DnsIntegrationTests) diff --git a/test/integration/ts_integration.rb b/test/integration/ts_integration.rb index 8eea8a49f..6da122199 100644 --- a/test/integration/ts_integration.rb +++ b/test/integration/ts_integration.rb @@ -16,7 +16,7 @@ require './check_environment' # Basic log in and log out tests require './tc_debug_modules' # RESTful API tests (as well as debug modules) require './tc_login' # Basic log in and log out tests require './tc_jools' # Basic tests for jools - #require './tc_dns_rest' # Basic tests for DNS RESTful API interface +#require './tc_dns_rest' # Basic tests for DNS RESTful API interface require './tc_social_engineering_rest' # Basic tests for social engineering RESTful API interface class TS_BeefIntegrationTests