Module: Rspec::Eventually
- Defined in:
- lib/rspec/eventually.rb,
lib/rspec/eventually/version.rb
Defined Under Namespace
Classes: Eventually, FailedMatcherError
Constant Summary collapse
- VERSION =
'0.0.2'
Class Attribute Summary collapse
-
.timeout ⇒ Object
Returns the value of attribute timeout.
Instance Method Summary collapse
Class Attribute Details
.timeout ⇒ Object
Returns the value of attribute timeout.
7 8 9 |
# File 'lib/rspec/eventually.rb', line 7 def timeout @timeout end |
Instance Method Details
#eventually(target) ⇒ Object
78 79 80 |
# File 'lib/rspec/eventually.rb', line 78 def eventually(target) Eventually.new target end |
#eventually_not(target) ⇒ Object
82 83 84 |
# File 'lib/rspec/eventually.rb', line 82 def eventually_not(target) Eventually.new(target).not end |