mirror of
https://github.com/projekteuler/projekteuler.git
synced 2026-01-27 02:28:50 +01:00
Add redirects, update test types
This commit is contained in:
@@ -1,26 +1,26 @@
|
||||
require 'test_helper'
|
||||
|
||||
class Admin::DashboardControllerTest < ActionController::TestCase
|
||||
include Devise::Test::ControllerHelpers
|
||||
class Admin::DashboardControllerTest < ActionDispatch::IntegrationTest
|
||||
include Devise::Test::IntegrationHelpers
|
||||
|
||||
setup do
|
||||
login
|
||||
end
|
||||
|
||||
test "should get index" do
|
||||
get :index
|
||||
get admin_dashboard_index_url
|
||||
assert_response :success
|
||||
end
|
||||
|
||||
test "should post new problem count" do
|
||||
post :update_problem_count, params: { problem_count: 15 }
|
||||
assert_redirected_to controller: 'admin/dashboard', action: 'index'
|
||||
post admin_dashboard_update_problem_count_url(problem_count: 15)
|
||||
assert_redirected_to admin_dashboard_index_url
|
||||
assert_equal 15, Problem.count
|
||||
end
|
||||
|
||||
test "should fail incorrect problem count" do
|
||||
post :update_problem_count, params: { problem_count: 2 }
|
||||
assert_redirected_to controller: 'admin/dashboard', action: 'index'
|
||||
post admin_dashboard_update_problem_count_url(problem_count: 2)
|
||||
assert_redirected_to admin_dashboard_index_url
|
||||
assert_equal 3, Problem.count
|
||||
end
|
||||
|
||||
|
||||
Reference in New Issue
Block a user