# File test/collection_responder_test.rb, line 30 def isolated_namespace respond_with MyEngine::Business end
# File test/collection_responder_test.rb, line 14 def namespaced respond_with :admin, Address.new end
# File test/collection_responder_test.rb, line 18 def nested respond_with User.new, Address.new end
# File test/collection_responder_test.rb, line 22 def only_symbols respond_with :admin, :addresses end
# File test/collection_responder_test.rb, line 10 def single respond_with Address.new end
# File test/collection_responder_test.rb, line 34 def uncountable respond_with News.new end
# File test/collection_responder_test.rb, line 26 def with_location respond_with Address.new, :location => "given_location" end