mirror of
https://github.com/amiaopensource/ffmprovisr.git
synced 2024-11-14 01:12:47 +01:00
50 lines
951 B
Ruby
50 lines
951 B
Ruby
|
require 'test_helper'
|
||
|
|
||
|
class FormsControllerTest < ActionController::TestCase
|
||
|
setup do
|
||
|
@form = forms(:one)
|
||
|
end
|
||
|
|
||
|
test "should get index" do
|
||
|
get :index
|
||
|
assert_response :success
|
||
|
assert_not_nil assigns(:forms)
|
||
|
end
|
||
|
|
||
|
test "should get new" do
|
||
|
get :new
|
||
|
assert_response :success
|
||
|
end
|
||
|
|
||
|
test "should create form" do
|
||
|
assert_difference('Form.count') do
|
||
|
post :create, form: { }
|
||
|
end
|
||
|
|
||
|
assert_redirected_to form_path(assigns(:form))
|
||
|
end
|
||
|
|
||
|
test "should show form" do
|
||
|
get :show, id: @form
|
||
|
assert_response :success
|
||
|
end
|
||
|
|
||
|
test "should get edit" do
|
||
|
get :edit, id: @form
|
||
|
assert_response :success
|
||
|
end
|
||
|
|
||
|
test "should update form" do
|
||
|
patch :update, id: @form, form: { }
|
||
|
assert_redirected_to form_path(assigns(:form))
|
||
|
end
|
||
|
|
||
|
test "should destroy form" do
|
||
|
assert_difference('Form.count', -1) do
|
||
|
delete :destroy, id: @form
|
||
|
end
|
||
|
|
||
|
assert_redirected_to forms_path
|
||
|
end
|
||
|
end
|