Sha256: 407639f0d3dbe894110e6b6fd8856eb851a998c57ac15310b5722c3233c03587
Contents?: true
Size: 1.12 KB
Versions: 8
Compression:
Stored size: 1.12 KB
Contents
require 'test_helper' module Notee class ImagesControllerTest < ActionController::TestCase setup do @image = notee_images(:one) @routes = Engine.routes 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: {content: @image.content } 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 :notee, id: @image assert_response :success end test "should update image" do patch :update, id: @image, image: {content: @image.content } 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
8 entries across 8 versions & 1 rubygems