Sha256: 18a0d23b605e87d068c364c41c2f3494b05ca73b1eb6ff15aa9802560ed92a7a

Contents?: true

Size: 1.6 KB

Versions: 12

Compression:

Stored size: 1.6 KB

Contents

require File.dirname(__FILE__) + '/../test_helper'
require 'tags_controller'

# Re-raise errors caught by the controller.
class TagsController; def rescue_action(e) raise e end; end

class TagsControllerTest < ActionController::TestCase
  def setup
    @controller = TagsController.new
    @request    = ActionController::TestRequest.new
    @response   = ActionController::TestResponse.new
    @tag        = Tag.find 1
  end
  
  context "with photo as parent" do
    context "get to :index" do
      setup do
        get :index, :photo_id => 1
      end

      should_assign_to :products
      should_render_template "index"
      should_respond_with :success
      
      should "respond with html" do
        assert_equal 'text/html', @response.content_type
      end
    end
    
    context "xhr to :index" do
      setup do
        xhr :get, :index, :photo_id => 1
      end

      should_assign_to :products
      should_respond_with :success

      should "respond with rjs" do
        assert_equal 'text/javascript', @response.content_type
      end
    end
    
    context "post to create" do
      setup do
        post :create, :photo_id => 1, :tag => {:name => "Hello!"}
      end

      should "add tag to photo" do
        assert assigns(:photo).tags.include?(assigns(:tag)), "photo does not include new tag"
      end
    end
  end
  
  context "without photo as parent" do
    should_be_restful do |resource|
      resource.formats = [:html]
    end
    
    should "render text for a missing object" do
      get :show, :id => 50000
      assert @response.body.match(/not found/i), @response.body
    end
  end
end

Version data entries

12 entries across 12 versions & 7 rubygems

Version Path
csmosx-resource_controller-0.6.6 test/test/functional/tags_controller_test.rb
csmosx-resource_controller-0.6.7 test/test/functional/tags_controller_test.rb
dkubb-resource_controller-0.6.5 test/test/functional/tags_controller_test.rb
giraffesoft-resource_controller-0.5.5 test/test/functional/tags_controller_test.rb
giraffesoft-resource_controller-0.5.6 test/test/functional/tags_controller_test.rb
giraffesoft-resource_controller-0.6.0 test/test/functional/tags_controller_test.rb
giraffesoft-resource_controller-0.6.1 test/test/functional/tags_controller_test.rb
giraffesoft-resource_controller-0.6.5 test/test/functional/tags_controller_test.rb
jeffrafter-resource_controller-0.5.5 test/test/functional/tags_controller_test.rb
maser-resource_controller-0.6.6 test/test/functional/tags_controller_test.rb
radar-resource_controller-0.6.6 test/test/functional/tags_controller_test.rb
strikeroff-resource_controller-0.6.6 test/test/functional/tags_controller_test.rb