merb-helpers 0.9.8 → 0.9.9

Sign up to get free protection for your applications and to get access to all the features.
data/LICENSE CHANGED
@@ -1,4 +1,4 @@
1
- Copyright (c) 2008 YOUR NAME
1
+ Copyright (c) 2008 Engine Yard
2
2
 
3
3
  Permission is hereby granted, free of charge, to any person obtaining
4
4
  a copy of this software and associated documentation files (the
data/Rakefile CHANGED
@@ -4,6 +4,8 @@ require "extlib"
4
4
  require 'merb-core/tasks/merb_rake_helper'
5
5
  require "spec/rake/spectask"
6
6
 
7
+ require File.join(File.dirname(__FILE__), "../merb-core/lib/merb-core/version.rb")
8
+
7
9
  ##############################################################################
8
10
  # Package && release
9
11
  ##############################################################################
@@ -17,7 +19,7 @@ GEM_EMAIL = "ivey@gweezlebur.com"
17
19
 
18
20
  GEM_NAME = "merb-helpers"
19
21
  PKG_BUILD = ENV['PKG_BUILD'] ? '.' + ENV['PKG_BUILD'] : ''
20
- GEM_VERSION = (Merb::MORE_VERSION rescue "0.9.8") + PKG_BUILD
22
+ GEM_VERSION = Merb::VERSION + PKG_BUILD
21
23
 
22
24
  RELEASE_NAME = "REL #{GEM_VERSION}"
23
25
 
@@ -35,7 +37,7 @@ spec = Gem::Specification.new do |s|
35
37
  s.author = GEM_AUTHOR
36
38
  s.email = GEM_EMAIL
37
39
  s.homepage = PROJECT_URL
38
- s.add_dependency('merb-core', '>= 0.9.8')
40
+ s.add_dependency('merb-core', "= #{Merb::VERSION}")
39
41
  s.require_path = 'lib'
40
42
  s.files = %w(LICENSE README Rakefile TODO) + Dir.glob("{lib,spec}/**/*")
41
43
  end
@@ -74,4 +76,4 @@ Spec::Rake::SpecTask.new('spec') do |t|
74
76
  end
75
77
 
76
78
  desc 'Default: run spec examples'
77
- task :default => 'spec'
79
+ task :default => 'spec'
@@ -184,7 +184,7 @@ module Merb
184
184
  end
185
185
  end
186
186
 
187
- class Merb::Controller
187
+ module Merb::GlobalHelpers
188
188
  include Merb::Helpers::DateAndTime
189
189
  end
190
190
 
@@ -10,10 +10,6 @@ module Merb::Helpers::Form::Builder
10
10
  @name = name || @obj.class.name.snake_case.split("/").last
11
11
  end
12
12
 
13
- def concat(attrs, &blk)
14
- @origin.concat(@origin.capture(&blk), blk.binding)
15
- end
16
-
17
13
  def form(attrs = {}, &blk)
18
14
  captured = @origin.capture(&blk)
19
15
  fake_method_tag = process_form_attrs(attrs)
@@ -31,7 +27,10 @@ module Merb::Helpers::Form::Builder
31
27
  def bound_#{kind}_field(method, attrs = {})
32
28
  name = control_name(method)
33
29
  update_bound_controls(method, attrs, "#{kind}")
34
- unbound_#{kind}_field({:name => name, :value => @obj.send(method)}.merge(attrs))
30
+ unbound_#{kind}_field({
31
+ :name => name,
32
+ :value => control_value(method)
33
+ }.merge(attrs))
35
34
  end
36
35
 
37
36
  def unbound_#{kind}_field(attrs)
@@ -61,7 +60,7 @@ module Merb::Helpers::Form::Builder
61
60
  def bound_radio_button(method, attrs = {})
62
61
  name = control_name(method)
63
62
  update_bound_controls(method, attrs, "radio")
64
- unbound_radio_button({:name => name, :value => @obj.send(method)}.merge(attrs))
63
+ unbound_radio_button({:name => name, :value => control_value(method)}.merge(attrs))
65
64
  end
66
65
 
67
66
  def unbound_radio_button(attrs)
@@ -70,7 +69,7 @@ module Merb::Helpers::Form::Builder
70
69
  end
71
70
 
72
71
  def bound_radio_group(method, arr)
73
- val = @obj.send(method)
72
+ val = control_value(method)
74
73
  arr.map do |attrs|
75
74
  attrs = {:value => attrs} unless attrs.is_a?(Hash)
76
75
  attrs[:checked] ||= (val == attrs[:value])
@@ -102,7 +101,7 @@ module Merb::Helpers::Form::Builder
102
101
  def bound_text_area(method, attrs = {})
103
102
  name = "#{@name}[#{method}]"
104
103
  update_bound_controls(method, attrs, "text_area")
105
- unbound_text_area(@obj.send(method), {:name => name}.merge(attrs))
104
+ unbound_text_area(control_value(method), {:name => name}.merge(attrs))
106
105
  end
107
106
 
108
107
  def unbound_text_area(contents, attrs)
@@ -158,14 +157,14 @@ module Merb::Helpers::Form::Builder
158
157
 
159
158
  attrs[:boolean] = attrs.fetch(:boolean, true)
160
159
 
161
- val = @obj.send(method)
160
+ val = control_value(method)
162
161
  attrs[:checked] = attrs.key?(:on) ? val == attrs[:on] : considered_true?(val)
163
162
  end
164
163
 
165
164
  def update_bound_select(method, attrs)
166
165
  attrs[:value_method] ||= method
167
166
  attrs[:text_method] ||= attrs[:value_method] || :to_s
168
- attrs[:selected] ||= @obj.send(attrs[:value_method])
167
+ attrs[:selected] ||= control_value(attrs[:value_method])
169
168
  end
170
169
 
171
170
  def update_unbound_controls(attrs, type)
@@ -268,7 +267,11 @@ module Merb::Helpers::Form::Builder
268
267
  end
269
268
 
270
269
  def control_name(method)
271
- "#{@name}[#{method}]"
270
+ @obj ? "#{@name}[#{method}]" : method
271
+ end
272
+
273
+ def control_value(method)
274
+ @obj ? @obj.send(method) : @origin.params[method]
272
275
  end
273
276
 
274
277
  def add_css_class(attrs, new_class)
@@ -378,7 +381,7 @@ module Merb::Helpers::Form::Builder
378
381
  private
379
382
 
380
383
  def update_bound_controls(method, attrs, type)
381
- if @obj.errors.on(method.to_sym)
384
+ if @obj && !@obj.errors.on(method.to_sym).blank?
382
385
  add_css_class(attrs, "error")
383
386
  end
384
387
  super
@@ -103,15 +103,15 @@ module Merb::Helpers::Form
103
103
  # <%= form_for @person do %>
104
104
  # <%= text_field :first_name, :label => "First Name" %>
105
105
  # <%= text_field :last_name, :label => "Last Name" %>
106
- # <% fields_for :permission do %>
106
+ # <%= fields_for :permission do %>
107
107
  # <%= check_box :is_admin, :label => "Administrator" %>
108
- # <% end %>
108
+ # <% end =%>
109
109
  # <%= submit "Create" %>
110
110
  # <% end =%>
111
111
  def fields_for(name, attrs = {}, &blk)
112
112
  attrs ||= {}
113
113
  with_form_context(name, attrs.delete(:builder)) do
114
- current_form_context.concat(attrs, &blk)
114
+ yield
115
115
  end
116
116
  end
117
117
 
@@ -392,10 +392,11 @@ module Merb::Helpers::Form
392
392
  # <%= delete_button url(:article, @article)%>
393
393
  #
394
394
  def delete_button(object_or_url, contents="Delete", attrs = {})
395
- url = object_or_url.is_a?(String) ? object_or_url : url(object_or_url.class.to_s.snake_case.to_sym, object_or_url)
395
+ url = object_or_url.is_a?(String) ? object_or_url : resource(object_or_url)
396
+ button_text = (contents || 'Delete')
396
397
  tag :form, :class => 'delete-btn', :action => url, :method => :post do
397
398
  tag(:input, :type => :hidden, :name => "_method", :value => "DELETE") <<
398
- tag(:input, (contents || 'Delete'), attrs.merge(:type => :submit))
399
+ tag(:input, attrs.merge(:value => button_text, :type => :submit))
399
400
  end
400
401
  end
401
402
 
@@ -1,23 +1,16 @@
1
1
  load File.dirname(__FILE__) / "form" / "helpers.rb"
2
2
  load File.dirname(__FILE__) / "form" / "builder.rb"
3
3
 
4
- class Merb::Controller
5
- class_inheritable_accessor :_default_builder
4
+ module Merb::GlobalHelpers
6
5
  include Merb::Helpers::Form
7
6
  end
8
7
 
9
- class Merb::PartController < Merb::AbstractController
8
+ class Merb::AbstractController
10
9
  class_inheritable_accessor :_default_builder
11
- include Merb::Helpers::Form
12
10
  end
13
11
 
14
12
  Merb::BootLoader.after_app_loads do
15
- class Merb::Controller
16
- self._default_builder =
17
- Object.full_const_get(Merb::Plugins.config[:helpers][:default_builder]) rescue Merb::Helpers::Form::Builder::ResourcefulFormWithErrors
18
- end
19
-
20
- class Merb::PartController
13
+ class Merb::AbstractController
21
14
  self._default_builder =
22
15
  Object.full_const_get(Merb::Plugins.config[:helpers][:default_builder]) rescue Merb::Helpers::Form::Builder::ResourcefulFormWithErrors
23
16
  end
@@ -56,6 +56,6 @@ module Merb
56
56
  end
57
57
  end
58
58
 
59
- class Merb::Controller
59
+ module Merb::GlobalHelpers
60
60
  include Merb::Helpers::Tag
61
61
  end
@@ -56,6 +56,6 @@ module Merb::Helpers::Text
56
56
  end
57
57
  end
58
58
 
59
- class Merb::Controller
59
+ module Merb::GlobalHelpers
60
60
  include Merb::Helpers::Text
61
61
  end
@@ -0,0 +1,2 @@
1
+ class RelativeDateSpecs < SpecController
2
+ end
@@ -0,0 +1,2 @@
1
+ class RelativeDateSpanSpecs < SpecController
2
+ end
@@ -1,3 +1,3 @@
1
- <% fields_for(:obj) do %>
2
- <%= text_field(:foo) %>
3
- <% end %>
1
+ <%= fields_for(:obj) do %>
2
+ <%= text_field(:foo) %>
3
+ <% end =%>
@@ -1,3 +1,3 @@
1
- <% fields_for @obj, nil do %>
1
+ <%= fields_for @obj, nil do %>
2
2
  <%= text_field :foo %>
3
- <% end %>
3
+ <% end =%>
@@ -0,0 +1 @@
1
+ <%= relative_date_span([Time.utc(2007, 11, 15), Time.utc(2007, 11, 15)]) %>
@@ -0,0 +1 @@
1
+ <%= relative_date_span([Time.utc(2006, 11, 15), Time.utc(2006, 11, 15)]) %>
@@ -0,0 +1 @@
1
+ <%= relative_date(Time.utc(2005, 11, 15)) %>
@@ -0,0 +1 @@
1
+ <%= relative_date(Time.utc(2007, 11, 15)) %>
@@ -0,0 +1 @@
1
+ <%= relative_date(Time.now.utc) %>
@@ -0,0 +1 @@
1
+ <%= relative_date(1.day.from_now.utc) %>
@@ -0,0 +1 @@
1
+ <%= relative_date(1.day.ago.utc) %>
@@ -1,46 +1,57 @@
1
1
  require File.dirname(__FILE__) + '/spec_helper'
2
2
 
3
3
  describe "relative_date" do
4
- include Merb::Helpers::DateAndTime
5
-
4
+ include Merb::Helpers::DateAndTime
5
+
6
6
  before :each do
7
7
  Time.stub!(:now).and_return(Time.utc(2007, 6, 1, 11))
8
+ @controller = RelativeDateSpecs.new(Merb::Request.new({}))
8
9
  end
9
10
 
10
11
  it "Should show today" do
11
12
  relative_date(Time.now.utc).should == "today"
13
+ result = @controller.render :relative_today
14
+ result.should == "today"
12
15
  end
13
16
 
14
17
  it "Should show yesterday" do
15
18
  relative_date(1.day.ago.utc).should == 'yesterday'
19
+ result = @controller.render :relative_yesterday
20
+ result.should == "yesterday"
16
21
  end
17
22
 
18
23
  it "Should show tomorrow" do
19
24
  relative_date(1.day.from_now.utc).should == 'tomorrow'
25
+ @controller.render(:relative_tomorrow).should == 'tomorrow'
20
26
  end
21
27
 
22
28
  it "Should show date with year" do
23
29
  relative_date(Time.utc(2005, 11, 15)).should == 'Nov 15th, 2005'
30
+ @controller.render(:relative_date_with_year).should == 'Nov 15th, 2005'
24
31
  end
25
32
 
26
33
  it "Should show date" do
27
34
  relative_date(Time.utc(2007, 11, 15)).should == 'Nov 15th'
35
+ @controller.render(:relative_date_without_year).should == 'Nov 15th'
28
36
  end
29
37
  end
30
38
 
31
39
  describe "relative_date_span" do
32
- include Merb::Helpers::DateAndTime
33
-
40
+ include Merb::Helpers::DateAndTime
41
+
34
42
  before :each do
35
43
  Time.stub!(:now).and_return(Time.utc(2007, 6, 1, 11))
44
+ @controller = RelativeDateSpanSpecs.new(Merb::Request.new({}))
36
45
  end
37
46
 
38
47
  it "Should show date span on the same day" do
39
48
  relative_date_span([Time.utc(2007, 11, 15), Time.utc(2007, 11, 15)]).should == 'Nov 15th'
49
+ @controller.render(:date_span_on_same_day).should == 'Nov 15th'
40
50
  end
41
51
 
42
52
  it "Should show date span on the same day on different year" do
43
53
  relative_date_span([Time.utc(2006, 11, 15), Time.utc(2006, 11, 15)]).should == 'Nov 15th, 2006'
54
+ @controller.render(:date_span_on_same_day_on_different_year).should == 'Nov 15th, 2006'
44
55
  end
45
56
 
46
57
  it "Should show date span on the same month" do
@@ -70,8 +81,8 @@ describe "relative_date_span" do
70
81
  end
71
82
 
72
83
  describe "relative_time_span" do
73
- include Merb::Helpers::DateAndTime
74
-
84
+ include Merb::Helpers::DateAndTime
85
+
75
86
  before :each do
76
87
  Time.stub!(:now).and_return(Time.utc(2007, 6, 1, 11))
77
88
  end
@@ -111,8 +122,8 @@ describe "relative_time_span" do
111
122
  end
112
123
 
113
124
  describe "time_lost_in_words" do
114
- include Merb::Helpers::DateAndTime
115
-
125
+ include Merb::Helpers::DateAndTime
126
+
116
127
  it "Should show seconds" do
117
128
  time_lost_in_words(Time.now, Time.now, true).should == "less than 5 seconds"
118
129
  end
@@ -159,8 +170,8 @@ describe "time_lost_in_words" do
159
170
  end
160
171
 
161
172
  describe "prettier_time" do
162
- include Merb::Helpers::DateAndTime
163
-
173
+ include Merb::Helpers::DateAndTime
174
+
164
175
  # prettier time"
165
176
  it "Should not show leading zero in hour" do
166
177
  prettier_time(Time.utc(2007, 11, 15, 14, 0)).should == '2:00 PM'
@@ -176,11 +187,11 @@ describe "prettier_time" do
176
187
  end
177
188
 
178
189
  shared_examples_for "Date, DateTime, Time formatting" do
179
-
190
+
180
191
  before(:each) do
181
192
  Date.reset_formats
182
193
  end
183
-
194
+
184
195
  it "should list the available formats" do
185
196
  Date.formats.should be_an_instance_of(Hash)
186
197
  Date.formats.keys.length.should > 1
@@ -189,7 +200,7 @@ shared_examples_for "Date, DateTime, Time formatting" do
189
200
  it "should support to be db formatted" do
190
201
  @date.formatted(:db).should =~ /^2007-11-02 \d{2}:\d{2}:\d{2}$/
191
202
  end
192
-
203
+
193
204
  it "should support to be time formatted" do
194
205
  @date.formatted(:time).should == "00:00"
195
206
  end
@@ -197,15 +208,15 @@ shared_examples_for "Date, DateTime, Time formatting" do
197
208
  it "should support to be short formatted" do
198
209
  @date.formatted(:short).should == "02 Nov 00:00"
199
210
  end
200
-
211
+
201
212
  it "should support to be date formatted" do
202
213
  @date.formatted(:date).should == "2007-11-02"
203
214
  end
204
-
215
+
205
216
  it "should support to be long formatted" do
206
217
  @date.formatted(:long).should == "November 02, 2007 00:00"
207
218
  end
208
-
219
+
209
220
  it "should support a new date format" do
210
221
  @date.formatted(:matt).should == @date.to_s
211
222
  Date.add_format(:matt, "%H:%M:%S %Y-%m-%d")
@@ -241,17 +252,17 @@ describe "Date" do
241
252
  it "Should return itself when to_date is called" do
242
253
  @date.to_date.should == @date
243
254
  end
244
-
255
+
245
256
  it_should_behave_like "Date, DateTime, Time formatting"
246
-
257
+
247
258
  end
248
259
 
249
260
  describe "DateTime" do
250
-
261
+
251
262
  before(:each) do
252
263
  @date = DateTime.new(2007, 11, 02)
253
264
  end
254
-
265
+
255
266
  it_should_behave_like "Date, DateTime, Time formatting"
256
-
257
- end
267
+
268
+ end
@@ -779,7 +779,6 @@ describe "bound_radio_group" do
779
779
  it "should provide autogenerated id for inputs" do
780
780
  r = @c.render :mixed
781
781
  radio = r.scan(/<[^>]*>/)[2..-2]
782
- pp radio
783
782
  radio[0].should match_tag(:input, :id => 'fake_model_foo_bar')
784
783
  radio[1].should match_tag(:label, :for => 'fake_model_foo_bar')
785
784
  radio[3].should match_tag(:input, :id => 'fake_model_foo_bar')
@@ -1228,7 +1227,7 @@ describe 'delete_button' do
1228
1227
 
1229
1228
  it "should have a default submit button text" do
1230
1229
  result = @controller.render :simple_delete # <%= delete_button @obj %>
1231
- result.should match(/<input type=\"submit\">Delete<\/input>/)
1230
+ result.should match(/<input type=\"submit\" value="Delete"><\/input>/)
1232
1231
  end
1233
1232
 
1234
1233
  it 'should return a button inside of a form for the object' do
@@ -1239,12 +1238,12 @@ describe 'delete_button' do
1239
1238
 
1240
1239
  it 'should allow you to modify the label' do
1241
1240
  result = @controller.render :delete_with_label # <%= delete_button(@obj, "Delete moi!") %>
1242
- result.should match(/<input type=\"submit\">Delete moi!<\/input>/)
1241
+ result.should match(/<input type=\"submit\" value=\"Delete moi!\"><\/input>/)
1243
1242
  end
1244
1243
 
1245
1244
  it "should allow you to pass some extra params like a class" do
1246
1245
  result = @controller.render :delete_with_extra_params
1247
- result.should match(/<input type=\"submit\" class=\"custom-class\">Delete<\/input>/)
1246
+ result.should match(/<input type=\"submit\" class=\"custom-class\" value=\"Delete\"><\/input>/)
1248
1247
  end
1249
1248
 
1250
1249
  it "should allow to pass an explicit url as a string" do
data/spec/spec_helper.rb CHANGED
@@ -10,8 +10,15 @@ require "date"
10
10
  # use the app in spec/fixture to test helpers
11
11
 
12
12
 
13
- default_options = {:environment => 'test', :adapter => 'runner'}.merge({:merb_root => File.dirname(__FILE__) / 'fixture'})
13
+ default_options = {
14
+ :environment => 'test',
15
+ :adapter => 'runner',
16
+ :merb_root => File.dirname(__FILE__) / 'fixture',
17
+ :log_file => File.dirname(__FILE__) / "merb_test.log"
18
+ }
14
19
  options = default_options.merge($START_OPTIONS || {})
20
+
21
+ Merb.disable(:initfile)
15
22
  Merb.start_environment(options)
16
23
 
17
24
  def unload_merb_helpers
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: merb-helpers
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.9.8
4
+ version: 0.9.9
5
5
  platform: ruby
6
6
  authors:
7
7
  - Michael D. Ivey
@@ -9,7 +9,7 @@ autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
11
 
12
- date: 2008-10-06 00:00:00 +03:00
12
+ date: 2008-10-13 00:00:00 +03:00
13
13
  default_executable:
14
14
  dependencies:
15
15
  - !ruby/object:Gem::Dependency
@@ -18,9 +18,9 @@ dependencies:
18
18
  version_requirement:
19
19
  version_requirements: !ruby/object:Gem::Requirement
20
20
  requirements:
21
- - - ">="
21
+ - - "="
22
22
  - !ruby/object:Gem::Version
23
- version: 0.9.8
23
+ version: 0.9.9
24
24
  version:
25
25
  description: Helper support for Merb
26
26
  email: ivey@gweezlebur.com
@@ -84,6 +84,8 @@ files:
84
84
  - spec/fixture/app/controllers/password_field.rb
85
85
  - spec/fixture/app/controllers/radio_button.rb
86
86
  - spec/fixture/app/controllers/radio_group.rb
87
+ - spec/fixture/app/controllers/relative_date.rb
88
+ - spec/fixture/app/controllers/relative_date_span.rb
87
89
  - spec/fixture/app/controllers/select.rb
88
90
  - spec/fixture/app/controllers/specs_controller.rb
89
91
  - spec/fixture/app/controllers/submit.rb
@@ -225,6 +227,15 @@ files:
225
227
  - spec/fixture/app/views/radio_group_specs/basic.html.erb
226
228
  - spec/fixture/app/views/radio_group_specs/hash.html.erb
227
229
  - spec/fixture/app/views/radio_group_specs/specific_attributes.html.erb
230
+ - spec/fixture/app/views/relative_date_span_specs
231
+ - spec/fixture/app/views/relative_date_span_specs/date_span_on_same_day.html.erb
232
+ - spec/fixture/app/views/relative_date_span_specs/date_span_on_same_day_on_different_year.html.erb
233
+ - spec/fixture/app/views/relative_date_specs
234
+ - spec/fixture/app/views/relative_date_specs/relative_date_with_year.html.erb
235
+ - spec/fixture/app/views/relative_date_specs/relative_date_without_year.html.erb
236
+ - spec/fixture/app/views/relative_date_specs/relative_today.html.erb
237
+ - spec/fixture/app/views/relative_date_specs/relative_tomorrow.html.erb
238
+ - spec/fixture/app/views/relative_date_specs/relative_yesterday.html.erb
228
239
  - spec/fixture/app/views/select_specs
229
240
  - spec/fixture/app/views/select_specs/blank.html.erb
230
241
  - spec/fixture/app/views/select_specs/multiple.html.erb
@@ -255,9 +266,6 @@ files:
255
266
  - spec/fixture/config/init.rb
256
267
  - spec/fixture/config/rack.rb
257
268
  - spec/fixture/config/router.rb
258
- - spec/fixture/log
259
- - spec/fixture/log/merb.main.pid
260
- - spec/fixture/log/merb_test.log
261
269
  - spec/fixture/public
262
270
  - spec/fixture/public/images
263
271
  - spec/fixture/public/images/merb.jpg
@@ -1 +0,0 @@
1
- 3619
@@ -1,624 +0,0 @@
1
- Sun, 28 Sep 2008 05:15:13 GMT ~ info ~ Logfile created
2
- ~ Loaded TEST Environment...
3
- ~ loading gem './spec/fixture/config/../../../lib/merb-helpers' ...
4
- ~ Parent pid: 42605
5
- ~ Loaded TEST Environment...
6
- ~ loading gem './spec/fixture/config/../../../lib/merb-helpers' ...
7
- ~ Parent pid: 42781
8
- ~ Loaded TEST Environment...
9
- ~ loading gem './spec/fixture/config/../../../lib/merb-helpers' ...
10
- ~ Loaded TEST Environment...
11
- ~ loading gem './spec/fixture/config/../../../lib/merb-helpers' ...
12
- ~ Loaded TEST Environment...
13
- ~ loading gem './spec/fixture/config/../../../lib/merb-helpers' ...
14
- ~ Loaded TEST Environment...
15
- ~ loading gem './spec/fixture/config/../../../lib/merb-helpers' ...
16
- ~ Loaded TEST Environment...
17
- ~ loading gem './spec/fixture/config/../../../lib/merb-helpers' ...
18
- ~ Loaded TEST Environment...
19
- ~ loading gem './spec/fixture/config/../../../lib/merb-helpers' ...
20
- ~ Loaded TEST Environment...
21
- ~ loading gem './spec/fixture/config/../../../lib/merb-helpers' ...
22
- ~ Loaded TEST Environment...
23
- ~ loading gem './spec/fixture/config/../../../lib/merb-helpers' ...
24
- ~ Loaded TEST Environment...
25
- ~ loading gem './spec/fixture/config/../../../lib/merb-helpers' ...
26
- ~ Loaded TEST Environment...
27
- ~ loading gem './spec/fixture/config/../../../lib/merb-helpers' ...
28
- ~ Loaded TEST Environment...
29
- ~ loading gem './spec/fixture/config/../../../lib/merb-helpers' ...
30
- ~ Loaded TEST Environment...
31
- ~ loading gem './spec/fixture/config/../../../lib/merb-helpers' ...
32
- ~ Compiling routes...
33
- ~ Killing children
34
- ~ Loaded TEST Environment...
35
- ~ loading gem './spec/fixture/config/../../../lib/merb-helpers' ...
36
- ~ Loaded TEST Environment...
37
- ~ loading gem './spec/fixture/config/../../../lib/merb-helpers' ...
38
- ~ Loaded TEST Environment...
39
- ~ loading gem './spec/fixture/config/../../../lib/merb-helpers' ...
40
- ~ Loaded TEST Environment...
41
- ~ loading gem './spec/fixture/config/../../../lib/merb-helpers' ...
42
- ~ Loaded TEST Environment...
43
- ~ loading gem './spec/fixture/config/../../../lib/merb-helpers' ...
44
- ~ Loaded TEST Environment...
45
- ~ loading gem './spec/fixture/config/../../../lib/merb-helpers' ...
46
- ~ Loaded TEST Environment...
47
- ~ loading gem './spec/fixture/config/../../../lib/merb-helpers' ...
48
- ~ Loaded TEST Environment...
49
- ~ loading gem './spec/fixture/config/../../../lib/merb-helpers' ...
50
- ~ Compiling routes...
51
- ~ Params: {"format"=>"", "action"=>"tag_with_content", "id"=>"", "controller"=>"generic_tag"}
52
- ~ {:after_filters_time=>1.6e-05, :action_time=>0.001108, :before_filters_time=>2.0e-05}
53
- ~ Loaded TEST Environment...
54
- ~ loading gem './spec/fixture/config/../../../lib/merb-helpers' ...
55
- ~ Compiling routes...
56
- ~ Params: {"format"=>"", "action"=>"tag_with_content", "id"=>"", "controller"=>"generic_tag"}
57
- ~ {:after_filters_time=>1.6e-05, :action_time=>0.000948, :before_filters_time=>1.8e-05}
58
- ~ Loaded TEST Environment...
59
- ~ loading gem './spec/fixture/config/../../../lib/merb-helpers' ...
60
- ~ Compiling routes...
61
- ~ Params: {"format"=>"", "action"=>"tag_with_content", "id"=>"", "controller"=>"generic_tag"}
62
- ~ {:after_filters_time=>1.6e-05, :action_time=>0.000964, :before_filters_time=>1.8e-05}
63
- ~ Loaded TEST Environment...
64
- ~ loading gem './spec/fixture/config/../../../lib/merb-helpers' ...
65
- ~ Loaded TEST Environment...
66
- ~ loading gem './spec/fixture/config/../../../lib/merb-helpers' ...
67
- ~ Compiling routes...
68
- ~ Params: {"format"=>"", "action"=>"tag_with_content", "id"=>"", "controller"=>"generic_tag"}
69
- ~ {:after_filters_time=>1.6e-05, :action_time=>0.000971, :before_filters_time=>1.8e-05}
70
- ~ Loaded TEST Environment...
71
- ~ loading gem './spec/fixture/config/../../../lib/merb-helpers' ...
72
- ~ Compiling routes...
73
- ~ Params: {"format"=>"", "action"=>"tag_with_content", "id"=>"", "controller"=>"generic_tag"}
74
- ~ {:after_filters_time=>2.4e-05, :action_time=>0.001643, :before_filters_time=>2.5e-05}
75
- ~ Loaded TEST Environment...
76
- ~ loading gem './spec/fixture/config/../../../lib/merb-helpers' ...
77
- ~ Compiling routes...
78
- ~ Params: {"format"=>"", "action"=>"tag_with_content", "id"=>"", "controller"=>"generic_tag"}
79
- ~ {:after_filters_time=>1.7e-05, :action_time=>0.001159, :before_filters_time=>2.1e-05}
80
- ~ Loaded TEST Environment...
81
- ~ loading gem './spec/fixture/config/../../../lib/merb-helpers' ...
82
- ~ Compiling routes...
83
- ~ Params: {"format"=>"", "action"=>"tag_with_content", "id"=>"", "controller"=>"generic_tag"}
84
- ~ {:after_filters_time=>1.6e-05, :action_time=>0.000954, :before_filters_time=>1.7e-05}
85
- ~ Loaded TEST Environment...
86
- ~ loading gem './spec/fixture/config/../../../lib/merb-helpers' ...
87
- ~ Compiling routes...
88
- ~ Params: {"format"=>"", "action"=>"tag_with_content", "id"=>"", "controller"=>"generic_tag"}
89
- ~ {:after_filters_time=>1.6e-05, :action_time=>0.000944, :before_filters_time=>1.8e-05}
90
- ~ Params: {"format"=>"", "action"=>"tag_with_content_in_the_block", "id"=>"", "controller"=>"generic_tag"}
91
- ~ {:after_filters_time=>8.0e-06, :action_time=>0.000668, :before_filters_time=>8.0e-06}
92
- ~ Loaded TEST Environment...
93
- ~ loading gem './spec/fixture/config/../../../lib/merb-helpers' ...
94
- ~ Compiling routes...
95
- ~ Params: {"format"=>"", "action"=>"tag_with_content", "id"=>"", "controller"=>"generic_tag"}
96
- ~ {:after_filters_time=>2.2e-05, :action_time=>0.001293, :before_filters_time=>2.3e-05}
97
- ~ Params: {"format"=>"", "action"=>"tag_with_content_in_the_block", "id"=>"", "controller"=>"generic_tag"}
98
- ~ {:after_filters_time=>1.0e-05, :action_time=>0.000893, :before_filters_time=>1.3e-05}
99
- ~ Loaded TEST Environment...
100
- ~ loading gem './spec/fixture/config/../../../lib/merb-helpers' ...
101
- ~ Compiling routes...
102
- ~ Params: {"format"=>"", "action"=>"tag_with_content", "id"=>"", "controller"=>"generic_tag"}
103
- ~ {:after_filters_time=>1.7e-05, :action_time=>0.001131, :before_filters_time=>2.1e-05}
104
- ~ Params: {"format"=>"", "action"=>"tag_with_content_in_the_block", "id"=>"", "controller"=>"generic_tag"}
105
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000971, :before_filters_time=>6.0e-06}
106
- ~ Loaded TEST Environment...
107
- ~ loading gem './spec/fixture/config/../../../lib/merb-helpers' ...
108
- ~ Loaded TEST Environment...
109
- ~ loading gem './spec/fixture/config/../../../lib/merb-helpers' ...
110
- ~ Compiling routes...
111
- ~ Params: {"format"=>"", "action"=>"tag_with_content", "id"=>"", "controller"=>"generic_tag"}
112
- ~ {:after_filters_time=>1.7e-05, :action_time=>0.001449, :before_filters_time=>6.6e-05}
113
- ~ Params: {"format"=>"", "action"=>"tag_with_content_in_the_block", "id"=>"", "controller"=>"generic_tag"}
114
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000689, :before_filters_time=>6.0e-06}
115
- ~ Loaded TEST Environment...
116
- ~ loading gem './spec/fixture/config/../../../lib/merb-helpers' ...
117
- ~ Compiling routes...
118
- ~ Params: {"format"=>"", "action"=>"tag_with_content", "id"=>"", "controller"=>"generic_tag"}
119
- ~ {:after_filters_time=>1.6e-05, :action_time=>0.000973, :before_filters_time=>1.8e-05}
120
- ~ Params: {"format"=>"", "action"=>"tag_with_content_in_the_block", "id"=>"", "controller"=>"generic_tag"}
121
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000803, :before_filters_time=>6.0e-06}
122
- ~ Params: {"format"=>"", "action"=>"nested_tags", "id"=>"", "controller"=>"generic_tag"}
123
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000781, :before_filters_time=>5.0e-06}
124
- ~ Loaded TEST Environment...
125
- ~ loading gem './spec/fixture/config/../../../lib/merb-helpers' ...
126
- ~ Compiling routes...
127
- ~ Params: {"format"=>"", "action"=>"tag_with_content", "id"=>"", "controller"=>"generic_tag"}
128
- ~ {:after_filters_time=>1.6e-05, :action_time=>0.000948, :before_filters_time=>1.7e-05}
129
- ~ Params: {"format"=>"", "action"=>"tag_with_content_in_the_block", "id"=>"", "controller"=>"generic_tag"}
130
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000658, :before_filters_time=>5.0e-06}
131
- ~ Params: {"format"=>"", "action"=>"nested_tags", "id"=>"", "controller"=>"generic_tag"}
132
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000775, :before_filters_time=>5.0e-06}
133
- ~ Loaded TEST Environment...
134
- ~ loading gem './spec/fixture/config/../../../lib/merb-helpers' ...
135
- ~ Compiling routes...
136
- ~ Params: {"format"=>"", "action"=>"tag_with_content", "id"=>"", "controller"=>"generic_tag"}
137
- ~ {:after_filters_time=>1.6e-05, :action_time=>0.000979, :before_filters_time=>1.7e-05}
138
- ~ Params: {"format"=>"", "action"=>"tag_with_content_in_the_block", "id"=>"", "controller"=>"generic_tag"}
139
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000664, :before_filters_time=>5.0e-06}
140
- ~ Params: {"format"=>"", "action"=>"nested_tags", "id"=>"", "controller"=>"generic_tag"}
141
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000751, :before_filters_time=>5.0e-06}
142
- ~ Loaded TEST Environment...
143
- ~ loading gem './spec/fixture/config/../../../lib/merb-helpers' ...
144
- ~ Compiling routes...
145
- ~ Params: {"format"=>"", "action"=>"tag_with_content", "id"=>"", "controller"=>"generic_tag"}
146
- ~ {:after_filters_time=>1.6e-05, :action_time=>0.00095, :before_filters_time=>1.8e-05}
147
- ~ Params: {"format"=>"", "action"=>"tag_with_content_in_the_block", "id"=>"", "controller"=>"generic_tag"}
148
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000671, :before_filters_time=>5.0e-06}
149
- ~ Params: {"format"=>"", "action"=>"nested_tags", "id"=>"", "controller"=>"generic_tag"}
150
- ~ {:after_filters_time=>1.0e-05, :action_time=>0.001134, :before_filters_time=>6.0e-06}
151
- ~ Loaded TEST Environment...
152
- ~ loading gem './spec/fixture/config/../../../lib/merb-helpers' ...
153
- ~ Compiling routes...
154
- ~ Params: {"format"=>"", "action"=>"tag_with_content", "id"=>"", "controller"=>"generic_tag"}
155
- ~ {:after_filters_time=>1.6e-05, :action_time=>0.000949, :before_filters_time=>1.8e-05}
156
- ~ Params: {"format"=>"", "action"=>"tag_with_content_in_the_block", "id"=>"", "controller"=>"generic_tag"}
157
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000659, :before_filters_time=>6.0e-06}
158
- ~ Params: {"format"=>"", "action"=>"nested_tags", "id"=>"", "controller"=>"generic_tag"}
159
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000739, :before_filters_time=>5.0e-06}
160
- ~ Loaded TEST Environment...
161
- ~ loading gem './spec/fixture/config/../../../lib/merb-helpers' ...
162
- ~ Compiling routes...
163
- ~ Params: {"format"=>"", "action"=>"tag_with_content", "id"=>"", "controller"=>"generic_tag"}
164
- ~ {:after_filters_time=>1.6e-05, :action_time=>0.000945, :before_filters_time=>1.8e-05}
165
- ~ Params: {"format"=>"", "action"=>"tag_with_content_in_the_block", "id"=>"", "controller"=>"generic_tag"}
166
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000673, :before_filters_time=>6.0e-06}
167
- ~ Params: {"format"=>"", "action"=>"nested_tags", "id"=>"", "controller"=>"generic_tag"}
168
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.00077, :before_filters_time=>5.0e-06}
169
- ~ Loaded TEST Environment...
170
- ~ loading gem './spec/fixture/config/../../../lib/merb-helpers' ...
171
- ~ Compiling routes...
172
- ~ Params: {"format"=>"", "action"=>"tag_with_content", "id"=>"", "controller"=>"generic_tag"}
173
- ~ {:after_filters_time=>1.8e-05, :action_time=>0.001294, :before_filters_time=>2.3e-05}
174
- ~ Params: {"format"=>"", "action"=>"tag_with_content_in_the_block", "id"=>"", "controller"=>"generic_tag"}
175
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.002546, :before_filters_time=>6.0e-06}
176
- ~ Params: {"format"=>"", "action"=>"nested_tags", "id"=>"", "controller"=>"generic_tag"}
177
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000861, :before_filters_time=>6.0e-06}
178
- ~ Loaded TEST Environment...
179
- ~ loading gem './spec/fixture/config/../../../lib/merb-helpers' ...
180
- ~ Compiling routes...
181
- ~ Params: {"format"=>"", "action"=>"tag_with_content", "id"=>"", "controller"=>"generic_tag"}
182
- ~ {:after_filters_time=>1.6e-05, :action_time=>0.000946, :before_filters_time=>1.7e-05}
183
- ~ Params: {"format"=>"", "action"=>"tag_with_content_in_the_block", "id"=>"", "controller"=>"generic_tag"}
184
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000671, :before_filters_time=>6.0e-06}
185
- ~ Params: {"format"=>"", "action"=>"nested_tags", "id"=>"", "controller"=>"generic_tag"}
186
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000799, :before_filters_time=>6.0e-06}
187
- ~ Loaded TEST Environment...
188
- ~ loading gem './spec/fixture/config/../../../lib/merb-helpers' ...
189
- ~ Compiling routes...
190
- ~ Params: {"format"=>"", "action"=>"tag_with_content", "id"=>"", "controller"=>"generic_tag"}
191
- ~ {:after_filters_time=>1.8e-05, :action_time=>0.00104, :before_filters_time=>1.8e-05}
192
- ~ Params: {"format"=>"", "action"=>"tag_with_content_in_the_block", "id"=>"", "controller"=>"generic_tag"}
193
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000665, :before_filters_time=>5.0e-06}
194
- ~ Params: {"format"=>"", "action"=>"nested_tags", "id"=>"", "controller"=>"generic_tag"}
195
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000741, :before_filters_time=>6.0e-06}
196
- ~ Loaded TEST Environment...
197
- ~ loading gem './spec/fixture/config/../../../lib/merb-helpers' ...
198
- ~ Compiling routes...
199
- ~ Params: {"format"=>"", "action"=>"tag_with_content", "id"=>"", "controller"=>"generic_tag"}
200
- ~ {:after_filters_time=>1.6e-05, :action_time=>0.001024, :before_filters_time=>1.8e-05}
201
- ~ Params: {"format"=>"", "action"=>"tag_with_content_in_the_block", "id"=>"", "controller"=>"generic_tag"}
202
- ~ {:after_filters_time=>9.0e-06, :action_time=>0.002132, :before_filters_time=>1.5e-05}
203
- ~ Params: {"format"=>"", "action"=>"nested_tags", "id"=>"", "controller"=>"generic_tag"}
204
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.00089, :before_filters_time=>1.5e-05}
205
- ~ Params: {"format"=>"", "action"=>"tag_with_attributes", "id"=>"", "controller"=>"generic_tag"}
206
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.00075, :before_filters_time=>1.0e-05}
207
- ~ Loaded TEST Environment...
208
- ~ loading gem './spec/fixture/config/../../../lib/merb-helpers' ...
209
- ~ Compiling routes...
210
- ~ Params: {"format"=>"", "action"=>"tag_with_content", "id"=>"", "controller"=>"generic_tag"}
211
- ~ {:after_filters_time=>1.8e-05, :action_time=>0.001253, :before_filters_time=>2.2e-05}
212
- ~ Params: {"format"=>"", "action"=>"tag_with_content_in_the_block", "id"=>"", "controller"=>"generic_tag"}
213
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000703, :before_filters_time=>8.0e-06}
214
- ~ Params: {"format"=>"", "action"=>"nested_tags", "id"=>"", "controller"=>"generic_tag"}
215
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000755, :before_filters_time=>7.0e-06}
216
- ~ Params: {"format"=>"", "action"=>"tag_with_attributes", "id"=>"", "controller"=>"generic_tag"}
217
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000708, :before_filters_time=>9.0e-06}
218
- ~ Loaded TEST Environment...
219
- ~ loading gem './spec/fixture/config/../../../lib/merb-helpers' ...
220
- ~ Compiling routes...
221
- ~ Params: {"format"=>"", "action"=>"tag_with_content", "id"=>"", "controller"=>"generic_tag"}
222
- ~ {:after_filters_time=>1.6e-05, :action_time=>0.000968, :before_filters_time=>1.8e-05}
223
- ~ Params: {"format"=>"", "action"=>"tag_with_content_in_the_block", "id"=>"", "controller"=>"generic_tag"}
224
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000749, :before_filters_time=>5.0e-06}
225
- ~ Params: {"format"=>"", "action"=>"nested_tags", "id"=>"", "controller"=>"generic_tag"}
226
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.00079, :before_filters_time=>5.0e-06}
227
- ~ Params: {"format"=>"", "action"=>"tag_with_attributes", "id"=>"", "controller"=>"generic_tag"}
228
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000698, :before_filters_time=>6.0e-06}
229
- ~ Loaded TEST Environment...
230
- ~ loading gem './spec/fixture/config/../../../lib/merb-helpers' ...
231
- ~ Compiling routes...
232
- ~ Params: {"format"=>"", "action"=>"tag_with_content", "id"=>"", "controller"=>"generic_tag"}
233
- ~ {:after_filters_time=>1.6e-05, :action_time=>0.000988, :before_filters_time=>1.8e-05}
234
- ~ Params: {"format"=>"", "action"=>"tag_with_content_in_the_block", "id"=>"", "controller"=>"generic_tag"}
235
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000684, :before_filters_time=>5.0e-06}
236
- ~ Params: {"format"=>"", "action"=>"nested_tags", "id"=>"", "controller"=>"generic_tag"}
237
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.005576, :before_filters_time=>7.0e-06}
238
- ~ Params: {"format"=>"", "action"=>"tag_with_attributes", "id"=>"", "controller"=>"generic_tag"}
239
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.00073, :before_filters_time=>7.0e-06}
240
- ~ Loaded TEST Environment...
241
- ~ loading gem './spec/fixture/config/../../../lib/merb-helpers' ...
242
- ~ Compiling routes...
243
- ~ Params: {"format"=>"", "action"=>"tag_with_content", "id"=>"", "controller"=>"generic_tag"}
244
- ~ {:after_filters_time=>1.6e-05, :action_time=>0.001136, :before_filters_time=>2.0e-05}
245
- ~ Params: {"format"=>"", "action"=>"tag_with_content_in_the_block", "id"=>"", "controller"=>"generic_tag"}
246
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000686, :before_filters_time=>6.0e-06}
247
- ~ Params: {"format"=>"", "action"=>"nested_tags", "id"=>"", "controller"=>"generic_tag"}
248
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000783, :before_filters_time=>3.0e-05}
249
- ~ Params: {"format"=>"", "action"=>"tag_with_attributes", "id"=>"", "controller"=>"generic_tag"}
250
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000699, :before_filters_time=>6.0e-06}
251
- ~ Loaded TEST Environment...
252
- ~ loading gem './spec/fixture/config/../../../lib/merb-helpers' ...
253
- ~ Compiling routes...
254
- ~ Params: {"format"=>"", "action"=>"tag_with_content", "id"=>"", "controller"=>"generic_tag"}
255
- ~ {:after_filters_time=>1.6e-05, :action_time=>0.001008, :before_filters_time=>1.9e-05}
256
- ~ Params: {"format"=>"", "action"=>"tag_with_content_in_the_block", "id"=>"", "controller"=>"generic_tag"}
257
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000706, :before_filters_time=>8.0e-06}
258
- ~ Params: {"format"=>"", "action"=>"nested_tags", "id"=>"", "controller"=>"generic_tag"}
259
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000748, :before_filters_time=>8.0e-06}
260
- ~ Params: {"format"=>"", "action"=>"tag_with_attributes", "id"=>"", "controller"=>"generic_tag"}
261
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000693, :before_filters_time=>9.0e-06}
262
- ~ Loaded TEST Environment...
263
- ~ loading gem './spec/fixture/config/../../../lib/merb-helpers' ...
264
- ~ Compiling routes...
265
- ~ Params: {"format"=>"", "action"=>"tag_with_content", "id"=>"", "controller"=>"generic_tag"}
266
- ~ {:after_filters_time=>1.6e-05, :action_time=>0.000959, :before_filters_time=>1.7e-05}
267
- ~ Params: {"format"=>"", "action"=>"tag_with_content_in_the_block", "id"=>"", "controller"=>"generic_tag"}
268
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.00084, :before_filters_time=>9.0e-06}
269
- ~ Params: {"format"=>"", "action"=>"nested_tags", "id"=>"", "controller"=>"generic_tag"}
270
- ~ {:after_filters_time=>9.0e-06, :action_time=>0.001018, :before_filters_time=>1.4e-05}
271
- ~ Params: {"format"=>"", "action"=>"tag_with_attributes", "id"=>"", "controller"=>"generic_tag"}
272
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000837, :before_filters_time=>1.2e-05}
273
- ~ Loaded TEST Environment...
274
- ~ loading gem './spec/fixture/config/../../../lib/merb-helpers' ...
275
- ~ Compiling routes...
276
- ~ Params: {"format"=>"", "action"=>"tag_with_content", "id"=>"", "controller"=>"generic_tag"}
277
- ~ {:after_filters_time=>1.7e-05, :action_time=>0.001038, :before_filters_time=>2.2e-05}
278
- ~ Params: {"format"=>"", "action"=>"tag_with_content_in_the_block", "id"=>"", "controller"=>"generic_tag"}
279
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000674, :before_filters_time=>5.0e-06}
280
- ~ Params: {"format"=>"", "action"=>"nested_tags", "id"=>"", "controller"=>"generic_tag"}
281
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000858, :before_filters_time=>5.0e-06}
282
- ~ Params: {"format"=>"", "action"=>"tag_with_attributes", "id"=>"", "controller"=>"generic_tag"}
283
- ~ {:after_filters_time=>1.0e-05, :action_time=>0.000793, :before_filters_time=>9.0e-06}
284
- ~ Loaded TEST Environment...
285
- ~ loading gem './spec/fixture/config/../../../lib/merb-helpers' ...
286
- ~ Compiling routes...
287
- ~ Params: {"format"=>"", "action"=>"tag_with_content", "id"=>"", "controller"=>"generic_tag"}
288
- ~ {:after_filters_time=>1.6e-05, :action_time=>0.001012, :before_filters_time=>1.9e-05}
289
- ~ Params: {"format"=>"", "action"=>"tag_with_content_in_the_block", "id"=>"", "controller"=>"generic_tag"}
290
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000642, :before_filters_time=>5.0e-06}
291
- ~ Loaded TEST Environment...
292
- ~ loading gem './spec/fixture/config/../../../lib/merb-helpers' ...
293
- ~ Compiling routes...
294
- ~ Params: {"format"=>"", "action"=>"tag_with_content", "id"=>"", "controller"=>"generic_tag"}
295
- ~ {:after_filters_time=>1.9e-05, :action_time=>0.001141, :before_filters_time=>1.8e-05}
296
- ~ Params: {"format"=>"", "action"=>"tag_with_content_in_the_block", "id"=>"", "controller"=>"generic_tag"}
297
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000696, :before_filters_time=>5.0e-06}
298
- ~ Params: {"format"=>"", "action"=>"nested_tags", "id"=>"", "controller"=>"generic_tag"}
299
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000825, :before_filters_time=>5.0e-06}
300
- ~ Params: {"format"=>"", "action"=>"tag_with_attributes", "id"=>"", "controller"=>"generic_tag"}
301
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000775, :before_filters_time=>6.0e-06}
302
- ~ Loaded TEST Environment...
303
- ~ loading gem './spec/fixture/config/../../../lib/merb-helpers' ...
304
- ~ Compiling routes...
305
- ~ Params: {"format"=>"", "action"=>"tag_with_content", "id"=>"", "controller"=>"generic_tag"}
306
- ~ {:after_filters_time=>2.2e-05, :action_time=>0.001562, :before_filters_time=>2.0e-05}
307
- ~ Params: {"format"=>"", "action"=>"tag_with_content_in_the_block", "id"=>"", "controller"=>"generic_tag"}
308
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.000804, :before_filters_time=>6.0e-06}
309
- ~ Params: {"format"=>"", "action"=>"tag_with_attributes", "id"=>"", "controller"=>"generic_tag"}
310
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000785, :before_filters_time=>6.0e-06}
311
- ~ Params: {"format"=>"", "action"=>"nested_tags", "id"=>"", "controller"=>"generic_tag"}
312
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.001001, :before_filters_time=>6.0e-06}
313
- ~ Loaded TEST Environment...
314
- ~ loading gem './spec/fixture/config/../../../lib/merb-helpers' ...
315
- ~ Compiling routes...
316
- ~ Params: {"format"=>"", "action"=>"tag_with_content", "id"=>"", "controller"=>"generic_tag"}
317
- ~ {:after_filters_time=>1.7e-05, :action_time=>0.00098, :before_filters_time=>1.9e-05}
318
- ~ Params: {"format"=>"", "action"=>"tag_with_content_in_the_block", "id"=>"", "controller"=>"generic_tag"}
319
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.00066, :before_filters_time=>6.0e-06}
320
- ~ Params: {"format"=>"", "action"=>"tag_with_attributes", "id"=>"", "controller"=>"generic_tag"}
321
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000653, :before_filters_time=>5.0e-06}
322
- ~ Params: {"format"=>"", "action"=>"nested_tags", "id"=>"", "controller"=>"generic_tag"}
323
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000927, :before_filters_time=>6.0e-06}
324
- ~ Loaded TEST Environment...
325
- ~ loading gem './spec/fixture/config/../../../lib/merb-helpers' ...
326
- ~ Loaded TEST Environment...
327
- ~ loading gem './spec/fixture/config/../../../lib/merb-helpers' ...
328
- ~ Compiling routes...
329
- ~ Params: {"format"=>"", "action"=>"tag_with_content", "id"=>"", "controller"=>"tag_helper"}
330
- ~ {:after_filters_time=>1.7e-05, :action_time=>0.001045, :before_filters_time=>2.1e-05}
331
- ~ Params: {"format"=>"", "action"=>"tag_with_content_in_the_block", "id"=>"", "controller"=>"tag_helper"}
332
- ~ {:after_filters_time=>9.0e-06, :action_time=>0.000766, :before_filters_time=>6.0e-06}
333
- ~ Params: {"format"=>"", "action"=>"tag_with_attributes", "id"=>"", "controller"=>"tag_helper"}
334
- ~ {:after_filters_time=>9.0e-06, :action_time=>0.00068, :before_filters_time=>6.0e-06}
335
- ~ Params: {"format"=>"", "action"=>"nested_tags", "id"=>"", "controller"=>"tag_helper"}
336
- ~ {:after_filters_time=>9.0e-06, :action_time=>0.000862, :before_filters_time=>6.0e-06}
337
- ~ Loaded TEST Environment...
338
- ~ loading gem './spec/fixture/config/../../../lib/merb-helpers' ...
339
- ~ Compiling routes...
340
- ~ Params: {"format"=>"", "action"=>"tag_with_content", "id"=>"", "controller"=>"tag_helper"}
341
- ~ {:after_filters_time=>1.6e-05, :before_filters_time=>1.7e-05, :action_time=>0.000966}
342
- ~ Params: {"format"=>"", "action"=>"tag_with_content_in_the_block", "id"=>"", "controller"=>"tag_helper"}
343
- ~ {:after_filters_time=>1.0e-05, :before_filters_time=>5.0e-06, :action_time=>0.000906}
344
- ~ Params: {"format"=>"", "action"=>"tag_with_attributes", "id"=>"", "controller"=>"tag_helper"}
345
- ~ {:after_filters_time=>1.6e-05, :before_filters_time=>6.0e-06, :action_time=>0.000881}
346
- ~ Params: {"format"=>"", "action"=>"nested_tags", "id"=>"", "controller"=>"tag_helper"}
347
- ~ {:after_filters_time=>1.2e-05, :before_filters_time=>7.0e-06, :action_time=>0.001001}
348
- ~ Loaded TEST Environment...
349
- ~ loading gem './spec/fixture/config/../../../lib/merb-helpers' ...
350
- ~ Compiling routes...
351
- ~ Params: {"format"=>"", "action"=>"tag_with_content", "id"=>"", "controller"=>"tag_helper"}
352
- ~ {:after_filters_time=>1.7e-05, :before_filters_time=>1.8e-05, :action_time=>0.00098}
353
- ~ Params: {"format"=>"", "action"=>"tag_with_content_in_the_block", "id"=>"", "controller"=>"tag_helper"}
354
- ~ {:after_filters_time=>1.0e-05, :before_filters_time=>6.0e-06, :action_time=>0.000928}
355
- ~ Params: {"format"=>"", "action"=>"tag_with_attributes", "id"=>"", "controller"=>"tag_helper"}
356
- ~ {:after_filters_time=>1.3e-05, :before_filters_time=>6.0e-06, :action_time=>0.000869}
357
- ~ Params: {"format"=>"", "action"=>"nested_tags", "id"=>"", "controller"=>"tag_helper"}
358
- ~ {:after_filters_time=>1.0e-05, :before_filters_time=>7.0e-06, :action_time=>0.000909}
359
- ~ Loaded TEST Environment...
360
- ~ loading gem './spec/fixture/config/../../../lib/merb-helpers' ...
361
- ~ Compiling routes...
362
- ~ Params: {"format"=>"", "action"=>"tag_with_content", "id"=>"", "controller"=>"tag_helper"}
363
- ~ {:after_filters_time=>1.7e-05, :before_filters_time=>1.8e-05, :action_time=>0.001027}
364
- ~ Params: {"format"=>"", "action"=>"tag_with_content_in_the_block", "id"=>"", "controller"=>"tag_helper"}
365
- ~ {:after_filters_time=>9.0e-06, :before_filters_time=>6.0e-06, :action_time=>0.000778}
366
- ~ Params: {"format"=>"", "action"=>"tag_with_attributes", "id"=>"", "controller"=>"tag_helper"}
367
- ~ {:after_filters_time=>1.4e-05, :before_filters_time=>7.0e-06, :action_time=>0.00091}
368
- ~ Params: {"format"=>"", "action"=>"nested_tags", "id"=>"", "controller"=>"tag_helper"}
369
- ~ {:after_filters_time=>1.1e-05, :before_filters_time=>7.0e-06, :action_time=>0.000929}
370
- ~ Loaded TEST Environment...
371
- ~ loading gem './spec/fixture/config/../../../lib/merb-helpers' ...
372
- ~ Compiling routes...
373
- ~ Params: {"format"=>"", "action"=>"tag_with_content", "id"=>"", "controller"=>"tag_helper"}
374
- ~ {:after_filters_time=>2.2e-05, :before_filters_time=>1.8e-05, :action_time=>0.001125}
375
- ~ Params: {"format"=>"", "action"=>"tag_with_content_in_the_block", "id"=>"", "controller"=>"tag_helper"}
376
- ~ {:after_filters_time=>9.0e-06, :before_filters_time=>6.0e-06, :action_time=>0.000799}
377
- ~ Params: {"format"=>"", "action"=>"tag_with_attributes", "id"=>"", "controller"=>"tag_helper"}
378
- ~ {:after_filters_time=>8.0e-06, :before_filters_time=>5.0e-06, :action_time=>0.000738}
379
- ~ Params: {"format"=>"", "action"=>"nested_tags", "id"=>"", "controller"=>"tag_helper"}
380
- ~ {:after_filters_time=>1.0e-05, :before_filters_time=>5.0e-06, :action_time=>0.000893}
381
- ~ Loaded TEST Environment...
382
- ~ loading gem './spec/fixture/config/../../../lib/merb-helpers' ...
383
- ~ Compiling routes...
384
- ~ Params: {"format"=>"", "action"=>"tag_with_content", "id"=>"", "controller"=>"tag_helper"}
385
- ~ {:after_filters_time=>1.7e-05, :before_filters_time=>1.9e-05, :action_time=>0.001018}
386
- ~ Params: {"format"=>"", "action"=>"tag_with_content_in_the_block", "id"=>"", "controller"=>"tag_helper"}
387
- ~ {:after_filters_time=>6.0e-06, :before_filters_time=>8.0e-06, :action_time=>0.000667}
388
- ~ Params: {"format"=>"", "action"=>"tag_with_attributes", "id"=>"", "controller"=>"tag_helper"}
389
- ~ {:after_filters_time=>5.0e-06, :before_filters_time=>8.0e-06, :action_time=>0.000672}
390
- ~ Params: {"format"=>"", "action"=>"nested_tags", "id"=>"", "controller"=>"tag_helper"}
391
- ~ {:after_filters_time=>6.0e-06, :before_filters_time=>8.0e-06, :action_time=>0.000764}
392
- ~ Loaded TEST Environment...
393
- ~ loading gem './spec/fixture/config/../../../lib/merb-helpers' ...
394
- ~ Compiling routes...
395
- ~ Params: {"format"=>"", "action"=>"tag_with_content", "id"=>"", "controller"=>"tag_helper"}
396
- ~ {:after_filters_time=>1.6e-05, :before_filters_time=>1.9e-05, :action_time=>0.001059}
397
- ~ Params: {"format"=>"", "action"=>"tag_with_content_in_the_block", "id"=>"", "controller"=>"tag_helper"}
398
- ~ {:after_filters_time=>6.0e-06, :before_filters_time=>6.0e-06, :action_time=>0.000714}
399
- ~ Params: {"format"=>"", "action"=>"tag_with_attributes", "id"=>"", "controller"=>"tag_helper"}
400
- ~ {:after_filters_time=>5.0e-06, :before_filters_time=>6.0e-06, :action_time=>0.000828}
401
- ~ Params: {"format"=>"", "action"=>"nested_tags", "id"=>"", "controller"=>"tag_helper"}
402
- ~ {:after_filters_time=>8.0e-06, :before_filters_time=>5.0e-06, :action_time=>0.000806}
403
- ~ Loaded TEST Environment...
404
- ~ loading gem './spec/fixture/config/../../../lib/merb-helpers' ...
405
- ~ Compiling routes...
406
- ~ Params: {"format"=>"", "action"=>"tag_with_content", "id"=>"", "controller"=>"tag_helper"}
407
- ~ {:after_filters_time=>1.6e-05, :before_filters_time=>1.8e-05, :action_time=>0.000947}
408
- ~ Params: {"format"=>"", "action"=>"tag_with_content_in_the_block", "id"=>"", "controller"=>"tag_helper"}
409
- ~ {:after_filters_time=>5.0e-06, :before_filters_time=>8.0e-06, :action_time=>0.000661}
410
- ~ Params: {"format"=>"", "action"=>"tag_with_attributes", "id"=>"", "controller"=>"tag_helper"}
411
- ~ {:after_filters_time=>6.0e-06, :before_filters_time=>5.0e-06, :action_time=>0.000672}
412
- ~ Params: {"format"=>"", "action"=>"nested_tags", "id"=>"", "controller"=>"tag_helper"}
413
- ~ {:after_filters_time=>9.0e-06, :before_filters_time=>1.1e-05, :action_time=>0.000815}
414
- ~ Loaded TEST Environment...
415
- ~ loading gem './spec/fixture/config/../../../lib/merb-helpers' ...
416
- ~ Compiling routes...
417
- ~ Params: {"format"=>"", "action"=>"tag_with_content", "id"=>"", "controller"=>"tag_helper"}
418
- ~ {:after_filters_time=>1.8e-05, :before_filters_time=>1.9e-05, :action_time=>0.001219}
419
- ~ Params: {"format"=>"", "action"=>"tag_with_content_in_the_block", "id"=>"", "controller"=>"tag_helper"}
420
- ~ {:after_filters_time=>6.0e-06, :before_filters_time=>6.0e-06, :action_time=>0.00072}
421
- ~ Params: {"format"=>"", "action"=>"tag_with_attributes", "id"=>"", "controller"=>"tag_helper"}
422
- ~ {:after_filters_time=>1.2e-05, :before_filters_time=>5.0e-06, :action_time=>0.000712}
423
- ~ Params: {"format"=>"", "action"=>"nested_tags", "id"=>"", "controller"=>"tag_helper"}
424
- ~ {:after_filters_time=>8.0e-06, :before_filters_time=>6.0e-06, :action_time=>0.000828}
425
- ~ Loaded TEST Environment...
426
- ~ loading gem './spec/fixture/config/../../../lib/merb-helpers' ...
427
- ~ Compiling routes...
428
- ~ Params: {"format"=>"", "action"=>"tag_with_content", "id"=>"", "controller"=>"tag_helper"}
429
- ~ {:after_filters_time=>1.8e-05, :before_filters_time=>1.7e-05, :action_time=>0.001035}
430
- ~ Params: {"format"=>"", "action"=>"tag_with_content_in_the_block", "id"=>"", "controller"=>"tag_helper"}
431
- ~ {:after_filters_time=>5.0e-06, :before_filters_time=>8.0e-06, :action_time=>0.000704}
432
- ~ Params: {"format"=>"", "action"=>"tag_with_attributes", "id"=>"", "controller"=>"tag_helper"}
433
- ~ {:after_filters_time=>5.0e-06, :before_filters_time=>1.5e-05, :action_time=>0.000707}
434
- ~ Params: {"format"=>"", "action"=>"nested_tags", "id"=>"", "controller"=>"tag_helper"}
435
- ~ {:after_filters_time=>7.0e-06, :before_filters_time=>9.0e-06, :action_time=>0.000931}
436
- ~ Loaded TEST Environment...
437
- ~ loading gem './spec/fixture/config/../../../lib/merb-helpers' ...
438
- ~ Compiling routes...
439
- ~ Params: {"format"=>"", "action"=>"tag_with_content", "id"=>"", "controller"=>"tag_helper"}
440
- ~ {:after_filters_time=>1.7e-05, :before_filters_time=>1.7e-05, :action_time=>0.000967}
441
- ~ Params: {"format"=>"", "action"=>"tag_with_content_in_the_block", "id"=>"", "controller"=>"tag_helper"}
442
- ~ {:after_filters_time=>6.0e-06, :before_filters_time=>8.0e-06, :action_time=>0.000644}
443
- ~ Params: {"format"=>"", "action"=>"tag_with_attributes", "id"=>"", "controller"=>"tag_helper"}
444
- ~ {:after_filters_time=>6.0e-06, :before_filters_time=>7.0e-06, :action_time=>0.000912}
445
- ~ Params: {"format"=>"", "action"=>"nested_tags", "id"=>"", "controller"=>"tag_helper"}
446
- ~ {:after_filters_time=>9.0e-06, :before_filters_time=>8.0e-06, :action_time=>0.000892}
447
- ~ Loaded TEST Environment...
448
- ~ loading gem './spec/fixture/config/../../../lib/merb-helpers' ...
449
- ~ Compiling routes...
450
- ~ Params: {"format"=>"", "action"=>"tag_with_content", "id"=>"", "controller"=>"tag_helper"}
451
- ~ {:after_filters_time=>1.7e-05, :before_filters_time=>1.8e-05, :action_time=>0.000998}
452
- ~ Params: {"format"=>"", "action"=>"tag_with_content_in_the_block", "id"=>"", "controller"=>"tag_helper"}
453
- ~ {:after_filters_time=>6.0e-06, :before_filters_time=>8.0e-06, :action_time=>0.000658}
454
- ~ Params: {"format"=>"", "action"=>"tag_with_attributes", "id"=>"", "controller"=>"tag_helper"}
455
- ~ {:after_filters_time=>6.0e-06, :before_filters_time=>8.0e-06, :action_time=>0.000726}
456
- ~ Params: {"format"=>"", "action"=>"nested_tags", "id"=>"", "controller"=>"tag_helper"}
457
- ~ {:after_filters_time=>6.0e-06, :before_filters_time=>8.0e-06, :action_time=>0.000773}
458
- ~ Loaded TEST Environment...
459
- ~ loading gem './spec/fixture/config/../../../lib/merb-helpers' ...
460
- ~ Loaded TEST Environment...
461
- ~ loading gem './spec/fixture/config/../../../lib/merb-helpers' ...
462
- ~ Compiling routes...
463
- ~ Params: {"format"=>"", "action"=>"tag_with_content", "id"=>"", "controller"=>"tag_helper"}
464
- ~ {:after_filters_time=>1.7e-05, :before_filters_time=>1.8e-05, :action_time=>0.001042}
465
- ~ Params: {"format"=>"", "action"=>"tag_with_content_in_the_block", "id"=>"", "controller"=>"tag_helper"}
466
- ~ {:after_filters_time=>1.3e-05, :before_filters_time=>7.0e-06, :action_time=>0.00082}
467
- ~ Params: {"format"=>"", "action"=>"tag_with_attributes", "id"=>"", "controller"=>"tag_helper"}
468
- ~ {:after_filters_time=>5.0e-06, :before_filters_time=>8.0e-06, :action_time=>0.000725}
469
- ~ Params: {"format"=>"", "action"=>"nested_tags", "id"=>"", "controller"=>"tag_helper"}
470
- ~ {:after_filters_time=>6.0e-06, :before_filters_time=>9.0e-06, :action_time=>0.000833}
471
- ~ Loaded TEST Environment...
472
- ~ loading gem './spec/fixture/config/../../../lib/merb-helpers' ...
473
- ~ Compiling routes...
474
- ~ Params: {"format"=>"", "action"=>"tag_with_content", "id"=>"", "controller"=>"tag_helper"}
475
- ~ {:after_filters_time=>1.7e-05, :before_filters_time=>1.8e-05, :action_time=>0.001085}
476
- ~ Params: {"format"=>"", "action"=>"tag_with_content_in_the_block", "id"=>"", "controller"=>"tag_helper"}
477
- ~ {:after_filters_time=>6.0e-06, :before_filters_time=>6.0e-06, :action_time=>0.000705}
478
- ~ Params: {"format"=>"", "action"=>"tag_with_attributes", "id"=>"", "controller"=>"tag_helper"}
479
- ~ {:after_filters_time=>6.0e-06, :before_filters_time=>6.0e-06, :action_time=>0.000826}
480
- ~ Params: {"format"=>"", "action"=>"nested_tags", "id"=>"", "controller"=>"tag_helper"}
481
- ~ {:after_filters_time=>6.0e-06, :before_filters_time=>6.0e-06, :action_time=>0.00087}
482
- ~ Loaded TEST Environment...
483
- ~ loading gem './spec/fixture/config/../../../lib/merb-helpers' ...
484
- ~ Compiling routes...
485
- ~ Params: {"format"=>"", "action"=>"tag_with_content", "id"=>"", "controller"=>"tag_helper"}
486
- ~ {:after_filters_time=>1.7e-05, :before_filters_time=>1.9e-05, :action_time=>0.001046}
487
- ~ Params: {"format"=>"", "action"=>"tag_with_content_in_the_block", "id"=>"", "controller"=>"tag_helper"}
488
- ~ {:after_filters_time=>6.0e-06, :before_filters_time=>5.0e-06, :action_time=>0.00071}
489
- ~ Params: {"format"=>"", "action"=>"tag_with_attributes", "id"=>"", "controller"=>"tag_helper"}
490
- ~ {:after_filters_time=>6.0e-06, :before_filters_time=>5.0e-06, :action_time=>0.000731}
491
- ~ Params: {"format"=>"", "action"=>"nested_tags", "id"=>"", "controller"=>"tag_helper"}
492
- ~ {:after_filters_time=>6.0e-06, :before_filters_time=>5.0e-06, :action_time=>0.00082}
493
- ~ Loaded TEST Environment...
494
- ~ loading gem './spec/fixture/config/../../../lib/merb-helpers' ...
495
- ~ Compiling routes...
496
- ~ Params: {"format"=>"", "action"=>"tag_with_content", "id"=>"", "controller"=>"tag_helper"}
497
- ~ {:after_filters_time=>1.8e-05, :before_filters_time=>1.8e-05, :action_time=>0.0012}
498
- ~ Params: {"format"=>"", "action"=>"tag_with_content_in_the_block", "id"=>"", "controller"=>"tag_helper"}
499
- ~ {:after_filters_time=>5.0e-06, :before_filters_time=>5.0e-06, :action_time=>0.000738}
500
- ~ Params: {"format"=>"", "action"=>"tag_with_attributes", "id"=>"", "controller"=>"tag_helper"}
501
- ~ {:after_filters_time=>6.0e-06, :before_filters_time=>6.0e-06, :action_time=>0.000904}
502
- ~ Params: {"format"=>"", "action"=>"nested_tags", "id"=>"", "controller"=>"tag_helper"}
503
- ~ {:after_filters_time=>8.0e-06, :before_filters_time=>1.0e-05, :action_time=>0.000933}
504
- ~ Loaded TEST Environment...
505
- ~ loading gem './spec/fixture/config/../../../lib/merb-helpers' ...
506
- ~ Compiling routes...
507
- ~ Params: {"format"=>"", "action"=>"tag_with_content", "id"=>"", "controller"=>"tag_helper"}
508
- ~ {:after_filters_time=>2.0e-05, :before_filters_time=>1.9e-05, :action_time=>0.001396}
509
- ~ Params: {"format"=>"", "action"=>"tag_with_content_in_the_block", "id"=>"", "controller"=>"tag_helper"}
510
- ~ {:after_filters_time=>9.0e-06, :before_filters_time=>9.0e-06, :action_time=>0.001071}
511
- ~ Params: {"format"=>"", "action"=>"tag_with_attributes", "id"=>"", "controller"=>"tag_helper"}
512
- ~ {:after_filters_time=>7.0e-06, :before_filters_time=>9.0e-06, :action_time=>0.001076}
513
- ~ Params: {"format"=>"", "action"=>"nested_tags", "id"=>"", "controller"=>"tag_helper"}
514
- ~ {:after_filters_time=>8.0e-06, :before_filters_time=>7.0e-06, :action_time=>0.002392}
515
- ~ Loaded TEST Environment...
516
- ~ loading gem './spec/fixture/config/../../../lib/merb-helpers' ...
517
- ~ Compiling routes...
518
- ~ Params: {"format"=>"", "action"=>"tag_with_content", "id"=>"", "controller"=>"tag_helper"}
519
- ~ {:action_time=>0.001215, :after_filters_time=>2.3e-05, :before_filters_time=>2.8e-05}
520
- ~ Params: {"format"=>"", "action"=>"tag_with_content_in_the_block", "id"=>"", "controller"=>"tag_helper"}
521
- ~ {:action_time=>0.000855, :after_filters_time=>8.0e-06, :before_filters_time=>1.0e-05}
522
- ~ Params: {"format"=>"", "action"=>"tag_with_attributes", "id"=>"", "controller"=>"tag_helper"}
523
- ~ {:action_time=>0.000741, :after_filters_time=>9.0e-06, :before_filters_time=>8.0e-06}
524
- ~ Params: {"format"=>"", "action"=>"nested_tags", "id"=>"", "controller"=>"tag_helper"}
525
- ~ {:action_time=>0.001059, :after_filters_time=>1.1e-05, :before_filters_time=>9.0e-06}
526
- ~ Loaded TEST Environment...
527
- ~ loading gem './spec/fixture/config/../../../lib/merb-helpers' ...
528
- ~ Compiling routes...
529
- ~ Params: {"format"=>"", "action"=>"tag_with_content", "id"=>"", "controller"=>"tag_helper"}
530
- ~ {:action_time=>0.001165, :after_filters_time=>1.7e-05, :before_filters_time=>1.8e-05}
531
- ~ Params: {"format"=>"", "action"=>"tag_with_content_in_the_block", "id"=>"", "controller"=>"tag_helper"}
532
- ~ {:action_time=>0.000698, :after_filters_time=>9.0e-06, :before_filters_time=>9.0e-06}
533
- ~ Params: {"format"=>"", "action"=>"tag_with_attributes", "id"=>"", "controller"=>"tag_helper"}
534
- ~ {:action_time=>0.000838, :after_filters_time=>9.0e-06, :before_filters_time=>8.0e-06}
535
- ~ Params: {"format"=>"", "action"=>"nested_tags", "id"=>"", "controller"=>"tag_helper"}
536
- ~ {:action_time=>0.000855, :after_filters_time=>1.1e-05, :before_filters_time=>9.0e-06}
537
- ~ Loaded TEST Environment...
538
- ~ loading gem './spec/fixture/config/../../../lib/merb-helpers' ...
539
- ~ Compiling routes...
540
- ~ Params: {"format"=>"", "action"=>"tag_with_content", "id"=>"", "controller"=>"tag_helper"}
541
- ~ {:action_time=>0.000977, :after_filters_time=>1.6e-05, :before_filters_time=>1.7e-05}
542
- ~ Params: {"format"=>"", "action"=>"tag_with_content_in_the_block", "id"=>"", "controller"=>"tag_helper"}
543
- ~ {:action_time=>0.000773, :after_filters_time=>9.0e-06, :before_filters_time=>6.0e-06}
544
- ~ Params: {"format"=>"", "action"=>"tag_with_attributes", "id"=>"", "controller"=>"tag_helper"}
545
- ~ {:action_time=>0.000796, :after_filters_time=>9.0e-06, :before_filters_time=>6.0e-06}
546
- ~ Params: {"format"=>"", "action"=>"nested_tags", "id"=>"", "controller"=>"tag_helper"}
547
- ~ {:action_time=>0.000788, :after_filters_time=>8.0e-06, :before_filters_time=>5.0e-06}
548
- ~ Loaded TEST Environment...
549
- ~ loading gem './spec/fixture/config/../../../lib/merb-helpers' ...
550
- ~ Compiling routes...
551
- ~ Params: {"format"=>"", "action"=>"tag_with_content", "id"=>"", "controller"=>"tag_helper"}
552
- ~ {:action_time=>0.001073, :after_filters_time=>1.7e-05, :before_filters_time=>1.9e-05}
553
- ~ Params: {"format"=>"", "action"=>"tag_with_content_in_the_block", "id"=>"", "controller"=>"tag_helper"}
554
- ~ {:action_time=>0.000684, :after_filters_time=>8.0e-06, :before_filters_time=>6.0e-06}
555
- ~ Params: {"format"=>"", "action"=>"tag_with_attributes", "id"=>"", "controller"=>"tag_helper"}
556
- ~ {:action_time=>0.000683, :after_filters_time=>9.0e-06, :before_filters_time=>5.0e-06}
557
- ~ Params: {"format"=>"", "action"=>"nested_tags", "id"=>"", "controller"=>"tag_helper"}
558
- ~ {:action_time=>0.000991, :after_filters_time=>1.0e-05, :before_filters_time=>6.0e-06}
559
- ~ Loaded TEST Environment...
560
- ~ loading gem './spec/fixture/config/../../../lib/merb-helpers' ...
561
- ~ Compiling routes...
562
- ~ Params: {"format"=>"", "action"=>"tag_with_content", "id"=>"", "controller"=>"tag_helper"}
563
- ~ {:action_time=>0.001064, :after_filters_time=>1.7e-05, :before_filters_time=>2.1e-05}
564
- ~ Params: {"format"=>"", "action"=>"tag_with_content_in_the_block", "id"=>"", "controller"=>"tag_helper"}
565
- ~ {:action_time=>0.000694, :after_filters_time=>8.0e-06, :before_filters_time=>6.0e-06}
566
- ~ Params: {"format"=>"", "action"=>"tag_with_attributes", "id"=>"", "controller"=>"tag_helper"}
567
- ~ {:action_time=>0.000688, :after_filters_time=>8.0e-06, :before_filters_time=>5.0e-06}
568
- ~ Params: {"format"=>"", "action"=>"nested_tags", "id"=>"", "controller"=>"tag_helper"}
569
- ~ {:action_time=>0.00082, :after_filters_time=>1.0e-05, :before_filters_time=>6.0e-06}
570
- ~ Loaded TEST Environment...
571
- ~ loading gem './spec/fixture/config/../../../lib/merb-helpers' ...
572
- ~ Compiling routes...
573
- ~ Params: {"format"=>"", "action"=>"tag_with_content", "id"=>"", "controller"=>"tag_helper"}
574
- ~ {:action_time=>0.000991, :after_filters_time=>1.6e-05, :before_filters_time=>1.8e-05}
575
- ~ Params: {"format"=>"", "action"=>"tag_with_content_in_the_block", "id"=>"", "controller"=>"tag_helper"}
576
- ~ {:action_time=>0.000817, :after_filters_time=>1.0e-05, :before_filters_time=>7.0e-06}
577
- ~ Params: {"format"=>"", "action"=>"tag_with_attributes", "id"=>"", "controller"=>"tag_helper"}
578
- ~ {:action_time=>0.000691, :after_filters_time=>8.0e-06, :before_filters_time=>5.0e-06}
579
- ~ Params: {"format"=>"", "action"=>"nested_tags", "id"=>"", "controller"=>"tag_helper"}
580
- ~ {:action_time=>0.000831, :after_filters_time=>9.0e-06, :before_filters_time=>2.5e-05}
581
- ~ Loaded TEST Environment...
582
- ~ loading gem './spec/fixture/config/../../../lib/merb-helpers' ...
583
- ~ Compiling routes...
584
- ~ Params: {"format"=>"", "action"=>"tag_with_content", "id"=>"", "controller"=>"tag_helper"}
585
- ~ {:action_time=>0.000965, :after_filters_time=>1.6e-05, :before_filters_time=>1.7e-05}
586
- ~ Params: {"format"=>"", "action"=>"tag_with_content_in_the_block", "id"=>"", "controller"=>"tag_helper"}
587
- ~ {:action_time=>0.000683, :after_filters_time=>8.0e-06, :before_filters_time=>6.0e-06}
588
- ~ Params: {"format"=>"", "action"=>"tag_with_attributes", "id"=>"", "controller"=>"tag_helper"}
589
- ~ {:action_time=>0.000699, :after_filters_time=>8.0e-06, :before_filters_time=>6.0e-06}
590
- ~ Params: {"format"=>"", "action"=>"nested_tags", "id"=>"", "controller"=>"tag_helper"}
591
- ~ {:action_time=>0.000868, :after_filters_time=>1.0e-05, :before_filters_time=>6.0e-06}
592
- ~ Loaded TEST Environment...
593
- ~ loading gem './spec/fixture/config/../../../lib/merb-helpers' ...
594
- ~ Compiling routes...
595
- ~ Params: {"format"=>"", "action"=>"tag_with_content", "id"=>"", "controller"=>"tag_helper"}
596
- ~ {:action_time=>0.001041, :after_filters_time=>2.3e-05, :before_filters_time=>1.8e-05}
597
- ~ Params: {"format"=>"", "action"=>"tag_with_content_in_the_block", "id"=>"", "controller"=>"tag_helper"}
598
- ~ {:action_time=>0.000703, :after_filters_time=>9.0e-06, :before_filters_time=>5.0e-06}
599
- ~ Params: {"format"=>"", "action"=>"tag_with_attributes", "id"=>"", "controller"=>"tag_helper"}
600
- ~ {:action_time=>0.000721, :after_filters_time=>9.0e-06, :before_filters_time=>1.3e-05}
601
- ~ Params: {"format"=>"", "action"=>"nested_tags", "id"=>"", "controller"=>"tag_helper"}
602
- ~ {:action_time=>0.000836, :after_filters_time=>1.0e-05, :before_filters_time=>9.0e-06}
603
- ~ Loaded TEST Environment...
604
- ~ loading gem './spec/fixture/config/../../../lib/merb-helpers' ...
605
- ~ Compiling routes...
606
- ~ Params: {"format"=>"", "action"=>"tag_with_content", "id"=>"", "controller"=>"tag_helper"}
607
- ~ {:after_filters_time=>2.1e-05, :action_time=>0.001367, :before_filters_time=>2.9e-05}
608
- ~ Params: {"format"=>"", "action"=>"tag_with_content_in_the_block", "id"=>"", "controller"=>"tag_helper"}
609
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000744, :before_filters_time=>6.0e-06}
610
- ~ Params: {"format"=>"", "action"=>"tag_with_attributes", "id"=>"", "controller"=>"tag_helper"}
611
- ~ {:after_filters_time=>7.0e-06, :action_time=>0.006213, :before_filters_time=>5.0e-06}
612
- ~ Params: {"format"=>"", "action"=>"nested_tags", "id"=>"", "controller"=>"tag_helper"}
613
- ~ {:after_filters_time=>1.3e-05, :action_time=>0.011462, :before_filters_time=>1.3e-05}
614
- ~ Loaded TEST Environment...
615
- ~ loading gem './spec/fixture/config/../../../lib/merb-helpers' ...
616
- ~ Compiling routes...
617
- ~ Params: {"format"=>"", "action"=>"tag_with_content", "id"=>"", "controller"=>"tag_helper"}
618
- ~ {:after_filters_time=>1.6e-05, :action_time=>0.001152, :before_filters_time=>2.1e-05}
619
- ~ Params: {"format"=>"", "action"=>"tag_with_content_in_the_block", "id"=>"", "controller"=>"tag_helper"}
620
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000839, :before_filters_time=>6.0e-06}
621
- ~ Params: {"format"=>"", "action"=>"tag_with_attributes", "id"=>"", "controller"=>"tag_helper"}
622
- ~ {:after_filters_time=>5.0e-06, :action_time=>0.000871, :before_filters_time=>6.0e-06}
623
- ~ Params: {"format"=>"", "action"=>"nested_tags", "id"=>"", "controller"=>"tag_helper"}
624
- ~ {:after_filters_time=>6.0e-06, :action_time=>0.000801, :before_filters_time=>1.1e-05}