blob: f2cc7165d6720dd2101fc30497adbb710f8fc359 (
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 = FactoryGirl.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: FactoryGirl.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
|