summaryrefslogtreecommitdiff
path: root/test/functional/phones_controller_test.rb
blob: 1b0aa55a9455269b15a9e5930c1c72c85cbf554e (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
require 'test_helper'

class PhonesControllerTest < ActionController::TestCase
  # TODO nil und normaler User duerfen nichts.
  
  #TODO Uncomment tests once the route has been implemented.
  
#   setup do
#     @phone = Factory.create(:phone)
#   end
# 
#   test "should get index" do
#     get :index
#     assert_response :success
#     assert_not_nil assigns(:phones)
#   end
# 
#   test "should get new" do
#     get :new
#     assert_response :success
#   end
# 
#   # Would have to be a nested route to work.
#   #
#   # test "should create phone" do
#   #   assert_difference('Phone.count') do
#   #     post :create, phone: Factory.build(:phone, :phone_model_id => @phone.phone_model_id).attributes
#   #   end
#   # 
#   #   assert_redirected_to phone_path(assigns(:phone))
#   # end
# 
#   test "should show phone" do
#     get :show, id: @phone.to_param
#     assert_response :success
#   end
# 
#   test "should get edit" do
#     get :edit, id: @phone.to_param
#     assert_response :success
#   end
# 
#   test "should update phone" do
#     put :update, id: @phone.to_param, phone: @phone.attributes
#     assert_redirected_to phone_path(assigns(:phone))
#   end
# 
#   test "should destroy phone" do
#     assert_difference('Phone.count', -1) do
#       delete :destroy, id: @phone.to_param
#     end
# 
#     assert_redirected_to phones_path
#   end
end