summaryrefslogtreecommitdiff
path: root/test/functional/gui_functions_controller_test.rb
blob: 9a6326fc80aac6452b7bdf7b67d4227cf60a04eb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
require 'test_helper'

class GuiFunctionsControllerTest < ActionController::TestCase
  setup do
    @gui_function = gui_functions(:one)
  end

  test "should get index" do
    get :index
    assert_response :success
    assert_not_nil assigns(:gui_functions)
  end

  test "should get new" do
    get :new
    assert_response :success
  end

  test "should create gui_function" do
    assert_difference('GuiFunction.count') do
      post :create, gui_function: @gui_function.attributes
    end

    assert_redirected_to gui_function_path(assigns(:gui_function))
  end

  test "should show gui_function" do
    get :show, id: @gui_function.to_param
    assert_response :success
  end

  test "should get edit" do
    get :edit, id: @gui_function.to_param
    assert_response :success
  end

  test "should update gui_function" do
    put :update, id: @gui_function.to_param, gui_function: @gui_function.attributes
    assert_redirected_to gui_function_path(assigns(:gui_function))
  end

  test "should destroy gui_function" do
    assert_difference('GuiFunction.count', -1) do
      delete :destroy, id: @gui_function.to_param
    end

    assert_redirected_to gui_functions_path
  end
end