test/integration/app/app/controllers/items_controller.rb in interlock-1.0 vs test/integration/app/app/controllers/items_controller.rb in interlock-1.1

- old
+ new

@@ -7,10 +7,20 @@ @items = Item.find(:all) end render :action => 'list' end + def detail + # Nesting is theoretically useful when the outer view block invalidates faster than the inner one + behavior_cache :tag => :outer do + @items = Item.find(:all) + end + behavior_cache Item => :id, :tag => :inner do + @item = Item.find(params[:id]) + end + end + def show behavior_cache Item => :id do @item = Item.find(params['id']) end end @@ -19,14 +29,22 @@ behavior_cache nil, :tag => [:seconds] do @items = Item.find(:all, :conditions => ['updated_at >= ?', params['seconds'].to_i.ago]) end end + def preview + @perform = false + behavior_cache Item => :id, :perform => @perform do + @item = Item.find(params['id']) + end + render :action => 'show' + end + private def related behavior_cache :ignore => :all, :tag => 'related' do @related = "Delicious cake" end end - + end