react-redux-rails-todo/test/controllers/todos_controller_test.rb
2018-10-12 02:08:36 +11:00

19 lines
358 B
Ruby

require 'test_helper'
class TodosControllerTest < ActionDispatch::IntegrationTest
test "should get index" do
get todos_index_url
assert_response :success
end
test "should get create" do
get todos_create_url
assert_response :success
end
test "should get update" do
get todos_update_url
assert_response :success
end
end