enum

Spectator::RunFlags

Inherits Enum / Comparable / Value / Object

Toggles indicating how the test spec should execute.

Constants

FailFast = 1

Indicates whether the test should abort on first failure.

FailBlank = 2

Indicates whether the test should fail if there are no examples.

DryRun = 4

Indicates whether the test should be done as a dry-run. Examples won't run, but the output will show that they did.

Randomize = 8

Indicates whether examples run in a random order.

Profile = 16

Indicates whether timing information should be generated.

None = 0
All = 31

Instance methods

dry_run?

Returns true if this enum value contains DryRun

Source
fail_blank?

Returns true if this enum value contains FailBlank

Source
fail_fast?

Returns true if this enum value contains FailFast

Source
none?
Source
profile?

Returns true if this enum value contains Profile

Source
randomize?

Returns true if this enum value contains Randomize

Source