From cf1b60e0cfa7d1a8f4a80d686649cc12e73a634e Mon Sep 17 00:00:00 2001 From: hukl Date: Fri, 24 Apr 2009 11:43:08 +0200 Subject: Integrated basic Asset upload functionality. You can upload files now and use their url in pages. --- test/functional/assets_controller_test.rb | 45 +++++++++++++++++++++++++++++++ 1 file changed, 45 insertions(+) create mode 100644 test/functional/assets_controller_test.rb (limited to 'test/functional/assets_controller_test.rb') diff --git a/test/functional/assets_controller_test.rb b/test/functional/assets_controller_test.rb new file mode 100644 index 0000000..7b838cc --- /dev/null +++ b/test/functional/assets_controller_test.rb @@ -0,0 +1,45 @@ +require 'test_helper' + +class AssetsControllerTest < ActionController::TestCase + test "should get index" do + get :index + assert_response :success + assert_not_nil assigns(:assets) + end + + test "should get new" do + get :new + assert_response :success + end + + test "should create asset" do + assert_difference('Asset.count') do + post :create, :asset => { } + end + + assert_redirected_to asset_path(assigns(:asset)) + end + + test "should show asset" do + get :show, :id => assets(:one).to_param + assert_response :success + end + + test "should get edit" do + get :edit, :id => assets(:one).to_param + assert_response :success + end + + test "should update asset" do + put :update, :id => assets(:one).to_param, :asset => { } + assert_redirected_to asset_path(assigns(:asset)) + end + + test "should destroy asset" do + assert_difference('Asset.count', -1) do + delete :destroy, :id => assets(:one).to_param + end + + assert_redirected_to assets_path + end +end -- cgit v1.3