summaryrefslogtreecommitdiff
path: root/test/functional/phones_controller_test.rb
diff options
context:
space:
mode:
authorStefan Wintermeyer <stefan.wintermeyer@amooma.de>2012-12-17 12:01:45 +0100
committerStefan Wintermeyer <stefan.wintermeyer@amooma.de>2012-12-17 12:01:45 +0100
commitb80bd744ad873f6fc43018bc4bfb90677de167bd (patch)
tree072c4b0e33d442528555b82c415f5e7a1712b2b0 /test/functional/phones_controller_test.rb
parent3e706c2025ecc5523e81ad649639ef2ff75e7bac (diff)
Start of GS5.
Diffstat (limited to 'test/functional/phones_controller_test.rb')
-rw-r--r--test/functional/phones_controller_test.rb55
1 files changed, 55 insertions, 0 deletions
diff --git a/test/functional/phones_controller_test.rb b/test/functional/phones_controller_test.rb
new file mode 100644
index 0000000..1b0aa55
--- /dev/null
+++ b/test/functional/phones_controller_test.rb
@@ -0,0 +1,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