Skip to content
Snippets Groups Projects
Commit 6ca73619 authored by Mauricio Giacomini Girardello's avatar Mauricio Giacomini Girardello
Browse files

fixing controller tests

parent 85da1d91
No related branches found
No related tags found
No related merge requests found
require 'test_helper' require 'test_helper'
class Management::WelcomeControllerTest < ActionController::TestCase class Management::WelcomeControllerTest < ActionController::TestCase
tests Management::WelcomeController
test "should get index" do test "should get index" do
get :index get :index
assert_response :success assert_response :success
......
...@@ -4,9 +4,8 @@ class UniversityControllerTest < ActionController::TestCase ...@@ -4,9 +4,8 @@ class UniversityControllerTest < ActionController::TestCase
tests UniversitiesController tests UniversitiesController
test "should get index" do test "should get index" do
#get :index get :index
#assert_response :success assert_response :success
assert true
end end
end end
require 'test_helper' require 'test_helper'
class WelcomeControllerTest < ActionController::TestCase class WelcomeControllerTest < ActionController::TestCase
tests WelcomeController
test "should get index" do test "should get index" do
# get :index get :index
# assert_response :success assert_response :success
assert true
end end
end end
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment