Sha256: c7f0ed7d36ca411bf3e460cdae4c191e8e9772eed40daa8bdac3296cf68e27f4

Contents?: true

Size: 593 Bytes

Versions: 2

Compression:

Stored size: 593 Bytes

Contents

if RUBY_VERSION >= '1.9.3'
  require "minitest_helper"
  require File.expand_path(File.dirname(__FILE__) + '/apps/padrino_simple')

  describe Padrino do
    before do
      clear_all_traces 
    end

    it "should trace a request to a simple padrino stack" do
      @app = SimpleDemo
      
      r = get "/render"
      
      traces = get_all_traces
      traces.count.must_equal 9

      validate_outer_layers(traces, 'rack')

      traces[1]['Layer'].must_equal "padrino"
      traces[6]['Controller'].must_equal "SimpleDemo"
      traces[7]['Label'].must_equal "info"
    end
  end
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
oboe-2.6.6.1 test/frameworks/padrino_test.rb
oboe-2.6.5.5 test/frameworks/padrino_test.rb