Builds command line arguments to pass to the rspec command over DRb
Time | = | ::Time.dup | @private This avoids issues with reporting time caused by examples that change the value/meaning of Time.now without properly restoring it. |
Sets a strategy by which to order examples.
@example
RSpec.configure do |config| config.order_examples do |examples| examples.reverse end end
@see order_groups @see order_groups_and_examples @see order= @see seed=
Sets a strategy by which to order groups.
@example
RSpec.configure do |config| config.order_groups do |groups| groups.reverse end end
@see order_examples @see order_groups_and_examples @see order= @see seed=
Sets a strategy by which to order groups and examples.
@example
RSpec.configure do |config| config.order_groups_and_examples do |groups_or_examples| groups_or_examples.reverse end end
@see order_groups @see order_examples @see order= @see seed=