removed minitest files

This commit is contained in:
nilsding 2014-12-07 20:11:14 +01:00
parent c26b081cc0
commit b3b29acd23
19 changed files with 0 additions and 102 deletions

View File

View File

@ -1,7 +0,0 @@
require 'test_helper'
class Ajax::InboxControllerTest < ActionController::TestCase
# test "the truth" do
# assert true
# end
end

View File

@ -1,9 +0,0 @@
require 'test_helper'
class AjaxControllerTest < ActionController::TestCase
test "should get ask" do
get :ask
assert_response :success
end
end

View File

@ -1,9 +0,0 @@
require 'test_helper'
class InboxControllerTest < ActionController::TestCase
test "should get show" do
get :show
assert_response :success
end
end

View File

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

0
test/fixtures/.keep vendored
View File

View File

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

View File

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

View File

View File

@ -1,4 +0,0 @@
require 'test_helper'
class Ajax::InboxHelperTest < ActionView::TestCase
end

View File

@ -1,4 +0,0 @@
require 'test_helper'
class AjaxHelperTest < ActionView::TestCase
end

View File

@ -1,4 +0,0 @@
require 'test_helper'
class InboxHelperTest < ActionView::TestCase
end

View File

@ -1,4 +0,0 @@
require 'test_helper'
class UserHelperTest < ActionView::TestCase
end

View File

View File

View File

View File

@ -1,7 +0,0 @@
require 'test_helper'
class InboxTest < ActiveSupport::TestCase
# test "the truth" do
# assert true
# end
end

View File

@ -1,7 +0,0 @@
require 'test_helper'
class UserTest < ActiveSupport::TestCase
# test "the truth" do
# assert true
# end
end

View File

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