Sha256: aeadc6861980065cfd1a957d71981e9dbb930634e8b0c267ec29a6692748067b

Contents?: true

Size: 651 Bytes

Versions: 7

Compression:

Stored size: 651 Bytes

Contents

require File.join(File.dirname(__FILE__), 'helpers', 'test_helper')
require File.join(File.dirname(__FILE__), 'helpers', 'functional_test_helper')

ActionController::Routing::Routes.draw do |map|
  map.connect ':controller/:action/:id'
end

class RailsIntegrationFunctionalTest < ActiveRecord::TestCase
  fixtures :all
  
  def setup    
    @controller = NotesController.new()
    @controller.request = @request = ActionController::TestRequest.new
    @response = ActionController::TestResponse.new    
  end

  # def test_render_with_an_empty_params_hash_should_not_blow_up
  #   get :empty_params_action
  #   assert_response :success
  # end

end

Version data entries

7 entries across 7 versions & 4 rubygems

Version Path
captproton-restfulx-1.2.3 test/rails/test_rails_integration_functional.rb
dima-restfulx-1.2.3 test/rails/test_rails_integration_functional.rb
dima-restfulx-1.2.4 test/rails/test_rails_integration_functional.rb
rlmattax-restfulx-1.2.4.1 test/rails/test_rails_integration_functional.rb
restfulx-1.2.5 test/rails/test_rails_integration_functional.rb
restfulx-1.2.3 test/rails/test_rails_integration_functional.rb
restfulx-1.2.4 test/rails/test_rails_integration_functional.rb