Sha256: b40fac42fb64987e37ab3aede2e07a4eb470f9b7223cb0734ccd09cd1a6dd084

Contents?: true

Size: 1.97 KB

Versions: 7

Compression:

Stored size: 1.97 KB

Contents

require 'test_helper'

class CollectionResponder < ActionController::Responder
  include Responders::CollectionResponder
end

class CollectionController < ApplicationController
  self.responder = CollectionResponder

  def single
    respond_with Address.new
  end

  def namespaced
    respond_with :admin, Address.new
  end

  def nested
    respond_with User.new, Address.new
  end

  def only_symbols
    respond_with :admin, :addresses
  end

  def with_location
    respond_with Address.new, :location => "given_location"
  end

  def isolated_namespace
    respond_with MyEngine::Business
  end

  def uncountable
    respond_with News.new
  end
end

class CollectionResponderTest < ActionController::TestCase
  tests CollectionController

  def test_collection_with_single_resource
    @controller.expects(:addresses_url).returns("addresses_url")
    post :single
    assert_redirected_to "addresses_url"
  end

  def test_collection_with_namespaced_resource
    @controller.expects(:admin_addresses_url).returns("admin_addresses_url")
    put :namespaced
    assert_redirected_to "admin_addresses_url"
  end

  def test_collection_with_nested_resource
    @controller.expects(:user_addresses_url).returns("user_addresses_url")
    delete :nested
    assert_redirected_to "user_addresses_url"
  end

  def test_collection_respects_location_option
    delete :with_location
    assert_redirected_to "given_location"
  end

  def test_collection_respects_only_symbols
    @controller.expects(:admin_addresses_url).returns("admin_addresses_url")
    post :only_symbols
    assert_redirected_to "admin_addresses_url"
  end

  def test_collection_respects_isolated_namespace
    @controller.expects(:businesses_url).returns("businesses_url")
    post :isolated_namespace
    assert_redirected_to "businesses_url"
  end

  def test_collection_respects_uncountable_resource
    @controller.expects(:news_index_url).returns("news_index_url")
    post :uncountable
    assert_redirected_to "news_index_url"
  end
end

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
responders-1.1.2 test/collection_responder_test.rb
responders-2.0.1 test/responders/collection_responder_test.rb
responders-1.1.1 test/collection_responder_test.rb
responders-2.0.0 test/responders/collection_responder_test.rb
responders-1.1.0 test/collection_responder_test.rb
responders-1.0.0 test/collection_responder_test.rb
responders-1.0.0.rc test/collection_responder_test.rb