b865a60bea
- Ticket in user/admin sides ok (respond tested) - Fix seeds - Fix models - Fix all migrations - Add client_... controllers (bills/tickets)
50 lines
1.1 KiB
Ruby
50 lines
1.1 KiB
Ruby
require 'test_helper'
|
|
|
|
class ClientTicketsControllerTest < ActionController::TestCase
|
|
setup do
|
|
@ticket_client = ticket_clients(:one)
|
|
end
|
|
|
|
test "should get index" do
|
|
get :index
|
|
assert_response :success
|
|
assert_not_nil assigns(:ticket_clients)
|
|
end
|
|
|
|
test "should get new" do
|
|
get :new
|
|
assert_response :success
|
|
end
|
|
|
|
test "should create ticket_client" do
|
|
assert_difference('TicketClient.count') do
|
|
post :create, ticket_client: { }
|
|
end
|
|
|
|
assert_redirected_to ticket_client_path(assigns(:ticket_client))
|
|
end
|
|
|
|
test "should show ticket_client" do
|
|
get :show, id: @ticket_client
|
|
assert_response :success
|
|
end
|
|
|
|
test "should get edit" do
|
|
get :edit, id: @ticket_client
|
|
assert_response :success
|
|
end
|
|
|
|
test "should update ticket_client" do
|
|
patch :update, id: @ticket_client, ticket_client: { }
|
|
assert_redirected_to ticket_client_path(assigns(:ticket_client))
|
|
end
|
|
|
|
test "should destroy ticket_client" do
|
|
assert_difference('TicketClient.count', -1) do
|
|
delete :destroy, id: @ticket_client
|
|
end
|
|
|
|
assert_redirected_to ticket_clients_path
|
|
end
|
|
end
|