Sha256: bb421e5d36358beff7532ac429658df5183ed504c7c8c9903c05ccacae139f2d
Contents?: true
Size: 1.09 KB
Versions: 3
Compression:
Stored size: 1.09 KB
Contents
require 'test_helper' class TasksControllerTest < ActionController::TestCase setup do @task = tasks(:one) end test "should get index" do get :index assert_response :success assert_not_nil assigns(:tasks) end test "should get new" do get :new assert_response :success end test "should create task" do assert_difference('Task.count') do post :create, task: { description: @task.description, project_id: @task.project_id, status: @task.status } end assert_redirected_to task_path(assigns(:task)) end test "should show task" do get :show, id: @task assert_response :success end test "should get edit" do get :edit, id: @task assert_response :success end test "should update task" do patch :update, id: @task, task: { description: @task.description, project_id: @task.project_id, status: @task.status } assert_redirected_to task_path(assigns(:task)) end test "should destroy task" do assert_difference('Task.count', -1) do delete :destroy, id: @task end assert_redirected_to tasks_path end end
Version data entries
3 entries across 3 versions & 1 rubygems