diff --git a/test/controllers/.keep b/test/controllers/.keep deleted file mode 100644 index e69de29b..00000000 diff --git a/test/controllers/ajax/inbox_controller_test.rb b/test/controllers/ajax/inbox_controller_test.rb deleted file mode 100644 index 7af54c8f..00000000 --- a/test/controllers/ajax/inbox_controller_test.rb +++ /dev/null @@ -1,7 +0,0 @@ -require 'test_helper' - -class Ajax::InboxControllerTest < ActionController::TestCase - # test "the truth" do - # assert true - # end -end diff --git a/test/controllers/ajax_controller_test.rb b/test/controllers/ajax_controller_test.rb deleted file mode 100644 index 899107b0..00000000 --- a/test/controllers/ajax_controller_test.rb +++ /dev/null @@ -1,9 +0,0 @@ -require 'test_helper' - -class AjaxControllerTest < ActionController::TestCase - test "should get ask" do - get :ask - assert_response :success - end - -end diff --git a/test/controllers/inbox_controller_test.rb b/test/controllers/inbox_controller_test.rb deleted file mode 100644 index ef31f0d4..00000000 --- a/test/controllers/inbox_controller_test.rb +++ /dev/null @@ -1,9 +0,0 @@ -require 'test_helper' - -class InboxControllerTest < ActionController::TestCase - test "should get show" do - get :show - assert_response :success - end - -end diff --git a/test/controllers/user_controller_test.rb b/test/controllers/user_controller_test.rb deleted file mode 100644 index af5871b2..00000000 --- a/test/controllers/user_controller_test.rb +++ /dev/null @@ -1,14 +0,0 @@ -require 'test_helper' - -class UserControllerTest < ActionController::TestCase - test "should get show" do - get :show - assert_response :success - end - - test "should get edit" do - get :edit - assert_response :success - end - -end diff --git a/test/fixtures/.keep b/test/fixtures/.keep deleted file mode 100644 index e69de29b..00000000 diff --git a/test/fixtures/inboxes.yml b/test/fixtures/inboxes.yml deleted file mode 100644 index 816e1ac2..00000000 --- a/test/fixtures/inboxes.yml +++ /dev/null @@ -1,9 +0,0 @@ -# Read about fixtures at http://api.rubyonrails.org/classes/ActiveRecord/FixtureSet.html - -one: - user_id: 1 - question_id: 1 - -two: - user_id: 1 - question_id: 1 diff --git a/test/fixtures/users.yml b/test/fixtures/users.yml deleted file mode 100644 index 937a0c00..00000000 --- a/test/fixtures/users.yml +++ /dev/null @@ -1,11 +0,0 @@ -# Read about fixtures at http://api.rubyonrails.org/classes/ActiveRecord/FixtureSet.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 diff --git a/test/helpers/.keep b/test/helpers/.keep deleted file mode 100644 index e69de29b..00000000 diff --git a/test/helpers/ajax/inbox_helper_test.rb b/test/helpers/ajax/inbox_helper_test.rb deleted file mode 100644 index 1eea02c1..00000000 --- a/test/helpers/ajax/inbox_helper_test.rb +++ /dev/null @@ -1,4 +0,0 @@ -require 'test_helper' - -class Ajax::InboxHelperTest < ActionView::TestCase -end diff --git a/test/helpers/ajax_helper_test.rb b/test/helpers/ajax_helper_test.rb deleted file mode 100644 index c44c5ca4..00000000 --- a/test/helpers/ajax_helper_test.rb +++ /dev/null @@ -1,4 +0,0 @@ -require 'test_helper' - -class AjaxHelperTest < ActionView::TestCase -end diff --git a/test/helpers/inbox_helper_test.rb b/test/helpers/inbox_helper_test.rb deleted file mode 100644 index 6f6f0bb7..00000000 --- a/test/helpers/inbox_helper_test.rb +++ /dev/null @@ -1,4 +0,0 @@ -require 'test_helper' - -class InboxHelperTest < ActionView::TestCase -end diff --git a/test/helpers/user_helper_test.rb b/test/helpers/user_helper_test.rb deleted file mode 100644 index ad44a537..00000000 --- a/test/helpers/user_helper_test.rb +++ /dev/null @@ -1,4 +0,0 @@ -require 'test_helper' - -class UserHelperTest < ActionView::TestCase -end diff --git a/test/integration/.keep b/test/integration/.keep deleted file mode 100644 index e69de29b..00000000 diff --git a/test/mailers/.keep b/test/mailers/.keep deleted file mode 100644 index e69de29b..00000000 diff --git a/test/models/.keep b/test/models/.keep deleted file mode 100644 index e69de29b..00000000 diff --git a/test/models/inbox_test.rb b/test/models/inbox_test.rb deleted file mode 100644 index 2c7bd48a..00000000 --- a/test/models/inbox_test.rb +++ /dev/null @@ -1,7 +0,0 @@ -require 'test_helper' - -class InboxTest < ActiveSupport::TestCase - # test "the truth" do - # assert true - # end -end diff --git a/test/models/user_test.rb b/test/models/user_test.rb deleted file mode 100644 index 82f61e01..00000000 --- a/test/models/user_test.rb +++ /dev/null @@ -1,7 +0,0 @@ -require 'test_helper' - -class UserTest < ActiveSupport::TestCase - # test "the truth" do - # assert true - # end -end diff --git a/test/test_helper.rb b/test/test_helper.rb deleted file mode 100644 index 05df4b43..00000000 --- a/test/test_helper.rb +++ /dev/null @@ -1,13 +0,0 @@ -require 'simplecov' -SimpleCov.start - -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 for all tests in alphabetical order. - fixtures :all - - # Add more helper methods to be used by all tests here... -end