Sha256: 75bc235ef0c329142068a68561ac954ced7a63891a8da015b859d2f7cc07a655
Contents?: true
Size: 993 Bytes
Versions: 19
Compression:
Stored size: 993 Bytes
Contents
require 'test_helper' class ClientsControllerTest < ActionController::TestCase setup do @client = clients(:one) end test "should get index" do get :index assert_response :success assert_not_nil assigns(:clients) end test "should get new" do get :new assert_response :success end test "should create client" do assert_difference('Client.count') do post :create, client: { } end assert_redirected_to client_path(assigns(:client)) end test "should show client" do get :show, id: @client assert_response :success end test "should get edit" do get :edit, id: @client assert_response :success end test "should update client" do patch :update, id: @client, client: { } assert_redirected_to client_path(assigns(:client)) end test "should destroy client" do assert_difference('Client.count', -1) do delete :destroy, id: @client end assert_redirected_to clients_path end end
Version data entries
19 entries across 19 versions & 2 rubygems