test-queue 0.2.10 → 0.2.11
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.
- data/lib/test_queue/runner/minitest5.rb +1 -10
- data/test-queue.gemspec +1 -1
- metadata +1 -1
@@ -11,12 +11,8 @@ module MiniTest
|
|
11
11
|
|
12
12
|
class Test
|
13
13
|
def self.runnables= runnables
|
14
|
-
@@orig_runnables = @@runnables
|
15
14
|
@@runnables = runnables
|
16
15
|
end
|
17
|
-
def self.orig_runnables
|
18
|
-
@@orig_runnables
|
19
|
-
end
|
20
16
|
end
|
21
17
|
|
22
18
|
class ProgressReporter
|
@@ -36,12 +32,7 @@ module MiniTest
|
|
36
32
|
class << self
|
37
33
|
private
|
38
34
|
def total_count(options)
|
39
|
-
|
40
|
-
filter = Regexp.new $1 if filter =~ /\/(.*)\//
|
41
|
-
|
42
|
-
Minitest::Test.orig_runnables.map(&:runnable_methods).flatten.find_all { |m|
|
43
|
-
filter === m || filter === "#{self}##{m}"
|
44
|
-
}.size
|
35
|
+
0
|
45
36
|
end
|
46
37
|
end
|
47
38
|
rescue LoadError
|
data/test-queue.gemspec
CHANGED