blob: 8a0459e49e9caa02ef04ba623c08d68dd44243de (
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
50
51
52
53
54
55
56
|
require 'test_helper'
class Admin::TemplatesControllerTest < ActionController::TestCase
setup do
@template = templates(:one)
log_in_as :admin
end
test "should not grant access to regular users" do
log_in_as :user
get :index
assert_redirected_to :controller => '/index', :action => 'error', :type => 'access'
end
test "should get index" do
get :index
assert_response :success
assert_not_nil assigns(:templates)
end
test "should get new" do
get :new
assert_response :success
end
test "should create admin_template" do
assert_difference('Template.count') do
post :create, template: @template.attributes
end
assert_redirected_to admin_template_path(assigns(:template))
end
test "should show admin_template" do
get :show, :id => @template.to_param
assert_response :success
end
test "should get edit" do
get :edit, :id => @template.to_param
assert_response :success
end
test "should update admin_template" do
put :update, :id => @template.to_param, :template => @template.attributes
assert_redirected_to admin_template_path(assigns(:template))
end
test "should destroy admin_template" do
assert_difference('Template.count', -1) do
delete :destroy, :id => @template.to_param
end
assert_redirected_to admin_templates_path
end
end
|