Module: RSpec::Rails::MinitestCounters Private
- Defined in:
- lib/rspec/rails/adapters.rb
This module is part of a private API. You should avoid using this module if possible, as it may be removed or be changed in the future.
Instance Method Summary (collapse)
- - (Object) assertions private
- - (Object) assertions=(assertions) private
Instance Method Details
- (Object) assertions
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
90 91 92 |
# File 'lib/rspec/rails/adapters.rb', line 90 def assertions @assertions ||= 0 end |
- (Object) assertions=(assertions)
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
95 96 97 |
# File 'lib/rspec/rails/adapters.rb', line 95 def assertions=(assertions) @assertions = assertions end |