Sha256: 6b0870693bbd76e6e581897185f49fabcdd1fc400d7aea69539235ac8c1679bb
Contents?: true
Size: 1.05 KB
Versions: 21
Compression:
Stored size: 1.05 KB
Contents
require 'test_helper' module Ems class ImagesControllerTest < ActionController::TestCase setup do @image = images(:one) end test "should get index" do get :index assert_response :success assert_not_nil assigns(:images) end test "should get new" do get :new assert_response :success end test "should create image" do assert_difference('Image.count') do post :create, image: { } end assert_redirected_to image_path(assigns(:image)) end test "should show image" do get :show, id: @image assert_response :success end test "should get edit" do get :edit, id: @image assert_response :success end test "should update image" do put :update, id: @image, image: { } assert_redirected_to image_path(assigns(:image)) end test "should destroy image" do assert_difference('Image.count', -1) do delete :destroy, id: @image end assert_redirected_to images_path end end end
Version data entries
21 entries across 21 versions & 1 rubygems