minitest-heat 0.0.13 → 0.0.14

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: c523abe811fe169d2a919fe4495cad61c8f282f0d76809d302504f94b6030eb4
4
- data.tar.gz: fffa2dcf19662bd6aa2b4ab46243cb797f9de5fa32723428008496d6942ad11e
3
+ metadata.gz: 4009f20d5e5d4d92d8e0796e853df4da059e3ec7a6b49cae98a8ce71352316fd
4
+ data.tar.gz: adf5692ab8af5f08ec97607f43ac8f454ad91fb62d15d9f867ee354d920a7a45
5
5
  SHA512:
6
- metadata.gz: 7efa01e486a94c5506b6e68b0eb7c200243575909546f871dc2a905e7477d124f85c79d4f0160b9f101fc2d42f01828500565c6fb3434f207d5699b7adabd715
7
- data.tar.gz: 114ee328cacda9818932c188368f7d808587374012af973998dcd1ee777f30c6fd878f97b3093e2fadb87010e6db5d7f3a0b739a2c805dd162ff41b51a05f99c
6
+ metadata.gz: 8e0d422fbc88d79598464f1640ffb7b6ea3e8ab7324e85f9a059a61f1d14e6c8792f277525dadf6cf81ee493168708dd0eb1a3f9b836b7efd0af3e73b959f25b
7
+ data.tar.gz: dfa2aa6267e1c026da29b93e1e7ab73f4a1fc65d9d1132228efff315622b742ebe40074eec7a639e6246b7bad27f14a31feee647c9c1274b77d8a57b8d8ed22b
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- minitest-heat (0.0.13)
4
+ minitest-heat (0.0.14)
5
5
  minitest
6
6
 
7
7
  GEM
@@ -139,15 +139,15 @@ module Minitest
139
139
  #
140
140
  # @return [Boolean] true if the test took longer to run than `slow_threshold`
141
141
  def slow?
142
- execution_time >= slow_threshold && execution_time < painful_threshold
142
+ execution_time >= slow_threshold && execution_time < painfully_slow_threshold
143
143
  end
144
144
 
145
145
  # Determines if a test should be considered painfully slow by comparing it to the high end
146
146
  # definition of what is considered slow.
147
147
  #
148
- # @return [Boolean] true if the test took longer to run than `painful_threshold`
148
+ # @return [Boolean] true if the test took longer to run than `painfully_slow_threshold`
149
149
  def painful?
150
- execution_time >= painful_threshold
150
+ execution_time >= painfully_slow_threshold
151
151
  end
152
152
 
153
153
  # Determines if the issue is an exception that was raised from directly within a test
@@ -2,6 +2,6 @@
2
2
 
3
3
  module Minitest
4
4
  module Heat
5
- VERSION = '0.0.13'
5
+ VERSION = '0.0.14'
6
6
  end
7
7
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: minitest-heat
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.13
4
+ version: 0.0.14
5
5
  platform: ruby
6
6
  authors:
7
7
  - Garrett Dimon