Method: Mutant.ci?
- Defined in:
- lib/mutant.rb
.ci? ⇒ Boolean
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.
Test if CI is detected via environment
40 41 42 |
# File 'lib/mutant.rb', line 40 def self.ci? ENV.key?('CI') end |