Sha256: c2c67e810a2d103b3de876aee01d820c7ee5f55ea62aade51368416bd4fca665
Contents?: true
Size: 636 Bytes
Versions: 29
Compression:
Stored size: 636 Bytes
Contents
class Views::HelpersSystemSpec::AutomaticHelpersDisabled < Fortitude::Widgets::Html5 automatic_helper_access false helper :number_to_currency def content text "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