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.
This commit is contained in:
soh_cah_toa
2014-05-03 20:42:40 -04:00
parent 6bf0f9d648
commit 07f1594a7a
2 changed files with 1 additions and 21 deletions

View File

@@ -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)

View File

@@ -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