require 'test_helper' class TicketsControllerTest < ActionController::TestCase # test "the truth" do # assert true # end test "should get new" do get :new assert_equal Ticket, assigns(:ticket).class assert_response :success end end