Sha256: 8d168316d78d497959ef201c9f83c8478a7c8cdc9e0b7e6c016aa629603f5f7b
Contents?: true
Size: 494 Bytes
Versions: 16
Compression:
Stored size: 494 Bytes
Contents
class Views::ComplexHelpersSystemSpec::CacheTagsTest < Fortitude::Widgets::Html5 needs :a, :b format_output true def content p(:class => 'before_cache') do span "before_cache: a=#{a},b=#{b}" cache("cache_tags_test-#{a}") do p(:class => "in_cache") do span "in_cache: a=#{a},b=#{b}" end end span("after_cache: a=#{a},b=#{b}") end p(:class => "after_cache_2") do span "after_cache_2: a=#{a},b=#{b}" end end end
Version data entries
16 entries across 16 versions & 1 rubygems