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 ++++++++++++++++++++++ test/functional/sim_cards_controller_test.rb | 49 ++++++++++++++++++++++ test/unit/sim_card_provider_test.rb | 7 ++++ test/unit/sim_card_test.rb | 7 ++++ 4 files changed, 112 insertions(+) create mode 100644 test/functional/sim_card_providers_controller_test.rb create mode 100644 test/functional/sim_cards_controller_test.rb create mode 100644 test/unit/sim_card_provider_test.rb create mode 100644 test/unit/sim_card_test.rb (limited to 'test') 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 diff --git a/test/functional/sim_cards_controller_test.rb b/test/functional/sim_cards_controller_test.rb new file mode 100644 index 0000000..72436c9 --- /dev/null +++ b/test/functional/sim_cards_controller_test.rb @@ -0,0 +1,49 @@ +require 'test_helper' + +class SimCardsControllerTest < ActionController::TestCase + setup do + @sim_card = sim_cards(:one) + end + + test "should get index" do + get :index + assert_response :success + assert_not_nil assigns(:sim_cards) + end + + test "should get new" do + get :new + assert_response :success + end + + test "should create sim_card" do + assert_difference('SimCard.count') do + post :create, sim_card: @sim_card.attributes + end + + assert_redirected_to sim_card_path(assigns(:sim_card)) + end + + test "should show sim_card" do + get :show, id: @sim_card.to_param + assert_response :success + end + + test "should get edit" do + get :edit, id: @sim_card.to_param + assert_response :success + end + + test "should update sim_card" do + put :update, id: @sim_card.to_param, sim_card: @sim_card.attributes + assert_redirected_to sim_card_path(assigns(:sim_card)) + end + + test "should destroy sim_card" do + assert_difference('SimCard.count', -1) do + delete :destroy, id: @sim_card.to_param + end + + assert_redirected_to sim_cards_path + end +end diff --git a/test/unit/sim_card_provider_test.rb b/test/unit/sim_card_provider_test.rb new file mode 100644 index 0000000..c9ef142 --- /dev/null +++ b/test/unit/sim_card_provider_test.rb @@ -0,0 +1,7 @@ +require 'test_helper' + +class SimCardProviderTest < ActiveSupport::TestCase + def test_should_be_valid + assert SimCardProvider.new.valid? + end +end diff --git a/test/unit/sim_card_test.rb b/test/unit/sim_card_test.rb new file mode 100644 index 0000000..2f9ba16 --- /dev/null +++ b/test/unit/sim_card_test.rb @@ -0,0 +1,7 @@ +require 'test_helper' + +class SimCardTest < ActiveSupport::TestCase + def test_should_be_valid + assert SimCard.new.valid? + end +end -- cgit v1.2.3