Sha256: afa552fdda9211ffeafd42aa51bb54624136aa996cd1b5020f5d458f9ee4e715

Contents?: true

Size: 1.13 KB

Versions: 27

Compression:

Stored size: 1.13 KB

Contents

# encoding: utf-8
# This file is distributed under New Relic's license terms.
# See https://github.com/newrelic/rpm/blob/master/LICENSE for complete details.

require File.join(File.dirname(__FILE__), 'middlewares')

suite_dir = File.expand_path(File.dirname(__FILE__))

if defined?(Rails::VERSION::MAJOR) && Rails::VERSION::MAJOR > 2
  require File.join(suite_dir, 'rails3_app', 'app_rails3_plus')
  class RailsMultiverseTest < ActionDispatch::IntegrationTest; end
elsif !defined?(RAILS_ROOT)
  RAILS_ROOT = File.join(suite_dir, 'rails2_app')
  require File.join(RAILS_ROOT, 'config', 'environment')
  class RailsMultiverseTest < ActionController::IntegrationTest; end
end

# a basic active model compliant model we can render
class Foo
  extend ActiveModel::Naming if defined?(ActiveModel::Naming)

  def to_model
    self
  end

  def to_partial_path
    'foos/foo'
  end

  def valid?()      true end
  def new_record?() true end
  def destroyed?()  true end

  def raise_error
    raise 'this is an uncaught model error'
  end

  def errors
    obj = Object.new
    def obj.[](key)         [] end
    def obj.full_messages() [] end
    obj
  end
end

Version data entries

27 entries across 27 versions & 2 rubygems

Version Path
newrelic_rpm-3.13.1.300 test/multiverse/suites/rails/app.rb
newrelic_rpm-3.13.0.299 test/multiverse/suites/rails/app.rb
newrelic_rpm-3.12.1.298 test/multiverse/suites/rails/app.rb
newrelic_rpm-3.12.0.288 test/multiverse/suites/rails/app.rb
newrelic_rpm-3.11.2.286 test/multiverse/suites/rails/app.rb
newrelic_rpm-3.11.1.284 test/multiverse/suites/rails/app.rb
newrelic_rpm-3.11.0.283 test/multiverse/suites/rails/app.rb