blob: 6d9ff09c657530d80db1b6fa612778d2b16fb5da (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
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
|