blob: c4165280b82396cecad923ae5b231ea1db19c4e7 (
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 GatewaySettingsControllerTest < ActionController::TestCase
setup do
@gateway_setting = gateway_settings(:one)
end
test "should get index" do
get :index
assert_response :success
assert_not_nil assigns(:gateway_settings)
end
test "should get new" do
get :new
assert_response :success
end
test "should create gateway_setting" do
assert_difference('GatewaySetting.count') do
post :create, gateway_setting: @gateway_setting.attributes
end
assert_redirected_to gateway_setting_path(assigns(:gateway_setting))
end
test "should show gateway_setting" do
get :show, id: @gateway_setting.to_param
assert_response :success
end
test "should get edit" do
get :edit, id: @gateway_setting.to_param
assert_response :success
end
test "should update gateway_setting" do
put :update, id: @gateway_setting.to_param, gateway_setting: @gateway_setting.attributes
assert_redirected_to gateway_setting_path(assigns(:gateway_setting))
end
test "should destroy gateway_setting" do
assert_difference('GatewaySetting.count', -1) do
delete :destroy, id: @gateway_setting.to_param
end
assert_redirected_to gateway_settings_path
end
end
|