method

prepare_args_for_assertion

Importance_0
v6.0.0 - Show latest stable - 0 notes - Class: TestHelper
prepare_args_for_assertion(args) private

No documentation

This method has no description. You can help the Ruby on Rails community by adding new notes.

Hide source
# File activejob/lib/active_job/test_helper.rb, line 631
      def prepare_args_for_assertion(args)
        args.dup.tap do |arguments|
          arguments[:at] = round_time_arguments(arguments[:at]) if arguments[:at]
          arguments[:args] = round_time_arguments(arguments[:args]) if arguments[:args]
        end
      end
Register or log in to add new notes.