Add the has_many_polymorphs plugin
[cs356-p2-videostore.git] / vendor / plugins / has_many_polymorphs / test / integration / app / test / functional / sellers_controller_test.rb
diff --git a/vendor/plugins/has_many_polymorphs/test/integration/app/test/functional/sellers_controller_test.rb b/vendor/plugins/has_many_polymorphs/test/integration/app/test/functional/sellers_controller_test.rb
new file mode 100644 (file)
index 0000000..fb992e5
--- /dev/null
@@ -0,0 +1,57 @@
+require File.dirname(__FILE__) + '/../test_helper'
+require 'sellers_controller'
+
+# Re-raise errors caught by the controller.
+class SellersController; def rescue_action(e) raise e end; end
+
+class SellersControllerTest < Test::Unit::TestCase
+  fixtures :sellers
+
+  def setup
+    @controller = SellersController.new
+    @request    = ActionController::TestRequest.new
+    @response   = ActionController::TestResponse.new
+  end
+
+  def test_should_get_index
+    get :index
+    assert_response :success
+    assert assigns(:sellers)
+  end
+
+  def test_should_get_new
+    get :new
+    assert_response :success
+  end
+
+  def test_should_create_seller
+    assert_difference('Seller.count') do
+      post :create, :seller => { }
+    end
+
+    assert_redirected_to seller_path(assigns(:seller))
+  end
+
+  def test_should_show_seller
+    get :show, :id => 1
+    assert_response :success
+  end
+
+  def test_should_get_edit
+    get :edit, :id => 1
+    assert_response :success
+  end
+
+  def test_should_update_seller
+    put :update, :id => 1, :seller => { }
+    assert_redirected_to seller_path(assigns(:seller))
+  end
+
+  def test_should_destroy_seller
+    assert_difference('Seller.count', -1) do
+      delete :destroy, :id => 1
+    end
+
+    assert_redirected_to sellers_path
+  end
+end