Sha256: f80bf19adb97621ab14d4448da4edc67c83b7a477823a88359e069cb2a2af429

Contents?: true

Size: 791 Bytes

Versions: 12

Compression:

Stored size: 791 Bytes

Contents

module EnvHelpers
  def http_request_env_with_data(args={})
    path = args.delete(:path) || "/blog"
    Rack::MockRequest.env_for(
      path,
      :params => {
        'controller' => 'blog_posts',
        'action' => 'show',
        'id' => '1'
      }
    ).merge(
      :controller => 'BlogPostsController',
      :action => 'show',
      :request_format => 'html',
      :request_method => "GET",
      :status => '200',
      :view_runtime => 500,
      :db_runtime => 500,
      :metadata => {:key => 'value'}
    ).merge(args)
  end

  def background_env_with_data(args={})
    {
      :class => 'BackgroundJob',
      :method => 'perform',
      :priority => 1,
      :attempts => 0,
      :queue => 'default',
      :queue_start => fixed_time - 10.0,
    }.merge(args)
  end
end

Version data entries

12 entries across 12 versions & 1 rubygems

Version Path
appsignal-2.0.6 spec/support/helpers/env_helpers.rb
appsignal-2.0.5 spec/support/helpers/env_helpers.rb
appsignal-2.0.5.beta.1 spec/support/helpers/env_helpers.rb
appsignal-2.1.0.alpha.3 spec/support/helpers/env_helpers.rb
appsignal-2.1.0.alpha.2 spec/support/helpers/env_helpers.rb
appsignal-2.1.0.alpha.1 spec/support/helpers/env_helpers.rb
appsignal-2.0.4 spec/support/helpers/env_helpers.rb
appsignal-2.0.3 spec/support/helpers/env_helpers.rb
appsignal-2.0.2 spec/support/helpers/env_helpers.rb
appsignal-2.0.1 spec/support/helpers/env_helpers.rb
appsignal-2.0.0 spec/support/helpers/env_helpers.rb
appsignal-2.0.0.beta.1 spec/support/helpers/env_helpers.rb