Sha256: 1ca0c6dfd822458074207d8ea187942a805faad1d31f6115f8b93711953ea1e4
Contents?: true
Size: 623 Bytes
Versions: 29
Compression:
Stored size: 623 Bytes
Contents
class Views::HelpersSystemSpec::AutomaticHelpersInheritanceChildOne < Views::HelpersSystemSpec::AutomaticHelpersInheritanceParent def content text "C1: excitedly: " result = begin excitedly("awesome") rescue => e e.class.name end text result text "; " t = 3.months.ago text "time_ago_in_words: " result = begin time_ago_in_words(t) rescue => e e.class.name end text result text "; " text "number_to_currency: " result = begin number_to_currency(1_000_000) rescue => e e.class.name end text result end end
Version data entries
29 entries across 29 versions & 1 rubygems