Builds command line arguments to pass to the rspec command over DRb
| PendingExampleFixedError | = | Pending::PendingExampleFixedError | Alias the error for compatibility with extension gems (e.g. formatters) that depend on the const name of the error in RSpec <= 2.8. |
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=