From 3d11d0a3a047a12bfd40b61252e269cabac76225 Mon Sep 17 00:00:00 2001 From: Stefan Wintermeyer Date: Fri, 15 Feb 2013 14:49:16 +0100 Subject: Basic structure for sim_cards and sim_card_providers. --- .../sim_card_providers_controller_test.rb | 49 ++++++++++++++++++++++ 1 file changed, 49 insertions(+) create mode 100644 test/functional/sim_card_providers_controller_test.rb (limited to 'test/functional/sim_card_providers_controller_test.rb') diff --git a/test/functional/sim_card_providers_controller_test.rb b/test/functional/sim_card_providers_controller_test.rb new file mode 100644 index 0000000..2dd9f3c --- /dev/null +++ b/test/functional/sim_card_providers_controller_test.rb @@ -0,0 +1,49 @@ +require 'test_helper' + +class SimCardProvidersControllerTest < ActionController::TestCase + setup do + @sim_card_provider = sim_card_providers(:one) + end + + test "should get index" do + get :index + assert_response :success + assert_not_nil assigns(:sim_card_providers) + end + + test "should get new" do + get :new + assert_response :success + end + + test "should create sim_card_provider" do + assert_difference('SimCardProvider.count') do + post :create, sim_card_provider: @sim_card_provider.attributes + end + + assert_redirected_to sim_card_provider_path(assigns(:sim_card_provider)) + end + + test "should show sim_card_provider" do + get :show, id: @sim_card_provider.to_param + assert_response :success + end + + test "should get edit" do + get :edit, id: @sim_card_provider.to_param + assert_response :success + end + + test "should update sim_card_provider" do + put :update, id: @sim_card_provider.to_param, sim_card_provider: @sim_card_provider.attributes + assert_redirected_to sim_card_provider_path(assigns(:sim_card_provider)) + end + + test "should destroy sim_card_provider" do + assert_difference('SimCardProvider.count', -1) do + delete :destroy, id: @sim_card_provider.to_param + end + + assert_redirected_to sim_card_providers_path + end +end -- cgit v1.2.3