removed old test directory since it has now been replaced with rspec specs - warvox - VoIP based wardialing tool, forked from rapid7/warvox.
 (DIR) Log
 (DIR) Files
 (DIR) Refs
 (DIR) README
       ---
 (DIR) commit c25db678ded165b56d64d94bddd23d98e6f97e0e
 (DIR) parent db2897631ed5f274157ae7c5c807bf012ed94ca4
 (HTM) Author: zeknox <mccann.brandon@gmail.com>
       Date:   Fri, 23 Oct 2015 17:02:30 -0500
       
       removed old test directory since it has now been replaced with rspec specs
       
       Diffstat:
         D test/fixtures/dial_jobs.yml         |      11 -----------
         D test/fixtures/dial_results.yml      |      11 -----------
         D test/fixtures/providers.yml         |      11 -----------
         D test/functional/analyze_controller… |       8 --------
         D test/functional/dial_jobs_controll… |       8 --------
         D test/functional/dial_results_contr… |       8 --------
         D test/functional/home_controller_te… |       8 --------
         D test/functional/providers_controll… |       8 --------
         D test/performance/browsing_test.rb   |       9 ---------
         D test/test_helper.rb                 |      13 -------------
         D test/unit/dial_job_test.rb          |       8 --------
         D test/unit/dial_result_test.rb       |       8 --------
         D test/unit/helpers/analyze_helper_t… |       4 ----
         D test/unit/helpers/dial_jobs_helper… |       4 ----
         D test/unit/helpers/dial_results_hel… |       4 ----
         D test/unit/helpers/home_helper_test… |       4 ----
         D test/unit/helpers/providers_helper… |       4 ----
         D test/unit/provider_test.rb          |       8 --------
       
       18 files changed, 0 insertions(+), 139 deletions(-)
       ---
 (DIR) diff --git a/test/fixtures/dial_jobs.yml b/test/fixtures/dial_jobs.yml
       @@ -1,11 +0,0 @@
       -# Read about fixtures at http://ar.rubyonrails.org/classes/Fixtures.html
       -
       -# This model initially had no columns defined.  If you add columns to the
       -# model remove the '{}' from the fixture names and add the columns immediately
       -# below each fixture, per the syntax in the comments below
       -#
       -one: {}
       -# column: value
       -#
       -two: {}
       -#  column: value
 (DIR) diff --git a/test/fixtures/dial_results.yml b/test/fixtures/dial_results.yml
       @@ -1,11 +0,0 @@
       -# Read about fixtures at http://ar.rubyonrails.org/classes/Fixtures.html
       -
       -# This model initially had no columns defined.  If you add columns to the
       -# model remove the '{}' from the fixture names and add the columns immediately
       -# below each fixture, per the syntax in the comments below
       -#
       -one: {}
       -# column: value
       -#
       -two: {}
       -#  column: value
 (DIR) diff --git a/test/fixtures/providers.yml b/test/fixtures/providers.yml
       @@ -1,11 +0,0 @@
       -# Read about fixtures at http://ar.rubyonrails.org/classes/Fixtures.html
       -
       -# This model initially had no columns defined.  If you add columns to the
       -# model remove the '{}' from the fixture names and add the columns immediately
       -# below each fixture, per the syntax in the comments below
       -#
       -one: {}
       -# column: value
       -#
       -two: {}
       -#  column: value
 (DIR) diff --git a/test/functional/analyze_controller_test.rb b/test/functional/analyze_controller_test.rb
       @@ -1,8 +0,0 @@
       -require 'test_helper'
       -
       -class AnalyzeControllerTest < ActionController::TestCase
       -  # Replace this with your real tests.
       -  test "the truth" do
       -    assert true
       -  end
       -end
 (DIR) diff --git a/test/functional/dial_jobs_controller_test.rb b/test/functional/dial_jobs_controller_test.rb
       @@ -1,8 +0,0 @@
       -require 'test_helper'
       -
       -class DialJobsControllerTest < ActionController::TestCase
       -  # Replace this with your real tests.
       -  test "the truth" do
       -    assert true
       -  end
       -end
 (DIR) diff --git a/test/functional/dial_results_controller_test.rb b/test/functional/dial_results_controller_test.rb
       @@ -1,8 +0,0 @@
       -require 'test_helper'
       -
       -class DialResultsControllerTest < ActionController::TestCase
       -  # Replace this with your real tests.
       -  test "the truth" do
       -    assert true
       -  end
       -end
 (DIR) diff --git a/test/functional/home_controller_test.rb b/test/functional/home_controller_test.rb
       @@ -1,8 +0,0 @@
       -require 'test_helper'
       -
       -class HomeControllerTest < ActionController::TestCase
       -  # Replace this with your real tests.
       -  test "the truth" do
       -    assert true
       -  end
       -end
 (DIR) diff --git a/test/functional/providers_controller_test.rb b/test/functional/providers_controller_test.rb
       @@ -1,8 +0,0 @@
       -require 'test_helper'
       -
       -class ProvidersControllerTest < ActionController::TestCase
       -  # Replace this with your real tests.
       -  test "the truth" do
       -    assert true
       -  end
       -end
 (DIR) diff --git a/test/performance/browsing_test.rb b/test/performance/browsing_test.rb
       @@ -1,9 +0,0 @@
       -require 'test_helper'
       -require 'rails/performance_test_help'
       -
       -# Profiling results for each test method are written to tmp/performance.
       -class BrowsingTest < ActionDispatch::PerformanceTest
       -  def test_homepage
       -    get '/'
       -  end
       -end
 (DIR) diff --git a/test/test_helper.rb b/test/test_helper.rb
       @@ -1,13 +0,0 @@
       -ENV["RAILS_ENV"] = "test"
       -require File.expand_path('../../config/environment', __FILE__)
       -require 'rails/test_help'
       -
       -class ActiveSupport::TestCase
       -  # Setup all fixtures in test/fixtures/*.(yml|csv) for all tests in alphabetical order.
       -  #
       -  # Note: You'll currently still have to declare fixtures explicitly in integration tests
       -  # -- they do not yet inherit this setting
       -  fixtures :all
       -
       -  # Add more helper methods to be used by all tests here...
       -end
 (DIR) diff --git a/test/unit/dial_job_test.rb b/test/unit/dial_job_test.rb
       @@ -1,8 +0,0 @@
       -require 'test_helper'
       -
       -class DialJobTest < ActiveSupport::TestCase
       -  # Replace this with your real tests.
       -  test "the truth" do
       -    assert true
       -  end
       -end
 (DIR) diff --git a/test/unit/dial_result_test.rb b/test/unit/dial_result_test.rb
       @@ -1,8 +0,0 @@
       -require 'test_helper'
       -
       -class DialResultTest < ActiveSupport::TestCase
       -  # Replace this with your real tests.
       -  test "the truth" do
       -    assert true
       -  end
       -end
 (DIR) diff --git a/test/unit/helpers/analyze_helper_test.rb b/test/unit/helpers/analyze_helper_test.rb
       @@ -1,4 +0,0 @@
       -require 'test_helper'
       -
       -class AnalyzeHelperTest < ActionView::TestCase
       -end
 (DIR) diff --git a/test/unit/helpers/dial_jobs_helper_test.rb b/test/unit/helpers/dial_jobs_helper_test.rb
       @@ -1,4 +0,0 @@
       -require 'test_helper'
       -
       -class DialJobsHelperTest < ActionView::TestCase
       -end
 (DIR) diff --git a/test/unit/helpers/dial_results_helper_test.rb b/test/unit/helpers/dial_results_helper_test.rb
       @@ -1,4 +0,0 @@
       -require 'test_helper'
       -
       -class DialResultsHelperTest < ActionView::TestCase
       -end
 (DIR) diff --git a/test/unit/helpers/home_helper_test.rb b/test/unit/helpers/home_helper_test.rb
       @@ -1,4 +0,0 @@
       -require 'test_helper'
       -
       -class HomeHelperTest < ActionView::TestCase
       -end
 (DIR) diff --git a/test/unit/helpers/providers_helper_test.rb b/test/unit/helpers/providers_helper_test.rb
       @@ -1,4 +0,0 @@
       -require 'test_helper'
       -
       -class ProvidersHelperTest < ActionView::TestCase
       -end
 (DIR) diff --git a/test/unit/provider_test.rb b/test/unit/provider_test.rb
       @@ -1,8 +0,0 @@
       -require 'test_helper'
       -
       -class ProviderTest < ActiveSupport::TestCase
       -  # Replace this with your real tests.
       -  test "the truth" do
       -    assert true
       -  end
       -end