test-queue 0.5.0 → 0.7.0
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 +4 -4
- data/.github/workflows/test.yml +94 -0
- data/.gitignore +6 -0
- data/Appraisals +43 -0
- data/Gemfile +4 -2
- data/README.md +13 -13
- data/Rakefile +14 -0
- data/{bin → exe}/cucumber-queue +4 -0
- data/{bin → exe}/minitest-queue +4 -0
- data/{bin → exe}/rspec-queue +4 -0
- data/{bin → exe}/testunit-queue +4 -0
- data/gemfiles/cucumber1_3.gemfile +9 -0
- data/gemfiles/cucumber2_4.gemfile +9 -0
- data/gemfiles/minitest4.gemfile +7 -0
- data/gemfiles/minitest5.gemfile +7 -0
- data/gemfiles/rspec2.gemfile +8 -0
- data/gemfiles/rspec3.gemfile +7 -0
- data/gemfiles/rspec4.gemfile +11 -0
- data/gemfiles/testunit.gemfile +7 -0
- data/lib/test-queue.rb +1 -1
- data/lib/test_queue/iterator.rb +1 -1
- data/lib/test_queue/runner/minitest.rb +2 -2
- data/lib/test_queue/runner/minitest4.rb +1 -1
- data/lib/test_queue/runner/minitest5.rb +8 -1
- data/lib/test_queue/runner/puppet_lint.rb +1 -1
- data/lib/test_queue/runner/rspec.rb +8 -3
- data/lib/test_queue/runner/sample.rb +2 -2
- data/lib/test_queue/runner/testunit.rb +1 -1
- data/lib/test_queue/runner.rb +22 -22
- data/lib/test_queue.rb +2 -2
- data/script/bootstrap +1 -0
- data/spec/stats_spec.rb +3 -0
- data/test/minitest4.bats +1 -1
- data/test/minitest5.bats +5 -5
- data/test/{rspec.bats → rspec2.bats} +4 -4
- data/test/rspec3.bats +56 -0
- data/test/rspec4.bats +56 -0
- data/test/samples/sample_shared_examples_for_spec.rb +2 -4
- data/test/samples/sample_spec.rb +3 -3
- data/test/samples/sample_split_spec.rb +1 -1
- data/test/samples/sample_use_shared_example1_spec.rb +1 -2
- data/test/samples/sample_use_shared_example2_spec.rb +1 -2
- data/test/sleepy_runner.rb +3 -1
- data/test-queue.gemspec +4 -3
- metadata +23 -32
- data/.travis.yml +0 -18
- data/Gemfile-cucumber1-3 +0 -4
- data/Gemfile-cucumber1-3.lock +0 -33
- data/Gemfile-cucumber2-4 +0 -4
- data/Gemfile-cucumber2-4.lock +0 -37
- data/Gemfile-minitest4 +0 -3
- data/Gemfile-minitest4.lock +0 -19
- data/Gemfile-minitest5 +0 -3
- data/Gemfile-minitest5.lock +0 -19
- data/Gemfile-rspec2-1 +0 -3
- data/Gemfile-rspec2-1.lock +0 -27
- data/Gemfile-rspec3-0 +0 -3
- data/Gemfile-rspec3-0.lock +0 -31
- data/Gemfile-rspec3-1 +0 -3
- data/Gemfile-rspec3-1.lock +0 -31
- data/Gemfile-rspec3-2 +0 -3
- data/Gemfile-rspec3-2.lock +0 -32
- data/Gemfile-testunit +0 -3
- data/Gemfile-testunit.lock +0 -21
- data/Gemfile.lock +0 -41
- data/script/cibuild +0 -19
- data/script/spec +0 -7
data/spec/stats_spec.rb
CHANGED
data/test/minitest4.bats
CHANGED
data/test/minitest5.bats
CHANGED
@@ -3,7 +3,7 @@ load "testlib"
|
|
3
3
|
SCRATCH=tmp/minitest5-tests
|
4
4
|
|
5
5
|
setup() {
|
6
|
-
require_gem "minitest" "
|
6
|
+
require_gem "minitest" "~> 5.0"
|
7
7
|
rm -rf $SCRATCH
|
8
8
|
mkdir -p $SCRATCH
|
9
9
|
}
|
@@ -27,12 +27,12 @@ teardown() {
|
|
27
27
|
assert_output_contains "MiniTestFailure#test_fail"
|
28
28
|
}
|
29
29
|
|
30
|
-
@test "TEST_QUEUE_FORCE
|
31
|
-
export TEST_QUEUE_WORKERS=1 TEST_QUEUE_FORCE="
|
30
|
+
@test "TEST_QUEUE_FORCE allowlists certain tests" {
|
31
|
+
export TEST_QUEUE_WORKERS=1 TEST_QUEUE_FORCE="MiniTestSleep11,MiniTestSleep8"
|
32
32
|
run bundle exec minitest-queue ./test/samples/*_minitest5.rb
|
33
33
|
assert_status 0
|
34
34
|
assert_output_contains "Starting test-queue master"
|
35
|
-
assert_output_contains "
|
35
|
+
assert_output_contains "MiniTestSleep11"
|
36
36
|
assert_output_contains "MiniTestSleep8"
|
37
37
|
refute_output_contains "MiniTestSleep9"
|
38
38
|
}
|
@@ -68,7 +68,7 @@ assert_test_queue_force_ordering() {
|
|
68
68
|
}
|
69
69
|
|
70
70
|
@test "minitest-queue fails if TEST_QUEUE_FORCE specifies nonexistent tests" {
|
71
|
-
export TEST_QUEUE_WORKERS=1 TEST_QUEUE_FORCE="
|
71
|
+
export TEST_QUEUE_WORKERS=1 TEST_QUEUE_FORCE="MiniTestSleep11,DoesNotExist"
|
72
72
|
run bundle exec minitest-queue ./test/samples/*_minitest5.rb
|
73
73
|
assert_status 1
|
74
74
|
assert_output_contains "Failed to discover DoesNotExist specified in TEST_QUEUE_FORCE"
|
@@ -1,7 +1,7 @@
|
|
1
1
|
load "testlib"
|
2
2
|
|
3
3
|
setup() {
|
4
|
-
require_gem "rspec" "
|
4
|
+
require_gem "rspec" "~> 2.0"
|
5
5
|
}
|
6
6
|
|
7
7
|
@test "rspec-queue succeeds when all specs pass" {
|
@@ -15,7 +15,9 @@ setup() {
|
|
15
15
|
run bundle exec rspec-queue ./test/samples/sample_spec.rb
|
16
16
|
assert_status 1
|
17
17
|
assert_output_contains "1) RSpecFailure fails"
|
18
|
-
assert_output_contains "
|
18
|
+
assert_output_contains "RSpecFailure fails"
|
19
|
+
assert_output_contains "expected: :bar"
|
20
|
+
assert_output_contains "got: :foo"
|
19
21
|
}
|
20
22
|
|
21
23
|
@test "TEST_QUEUE_SPLIT_GROUPS splits splittable groups" {
|
@@ -41,6 +43,4 @@ setup() {
|
|
41
43
|
run bundle exec rspec-queue ./test/samples/sample_use_shared_example1_spec.rb \
|
42
44
|
./test/samples/sample_use_shared_example2_spec.rb
|
43
45
|
assert_status 0
|
44
|
-
|
45
46
|
}
|
46
|
-
|
data/test/rspec3.bats
ADDED
@@ -0,0 +1,56 @@
|
|
1
|
+
load "testlib"
|
2
|
+
|
3
|
+
setup() {
|
4
|
+
require_gem "rspec" "~> 3.0"
|
5
|
+
}
|
6
|
+
|
7
|
+
@test "rspec-queue succeeds when all specs pass" {
|
8
|
+
run bundle exec rspec-queue ./test/samples/sample_spec.rb
|
9
|
+
assert_status 0
|
10
|
+
assert_output_contains "Starting test-queue master"
|
11
|
+
assert_output_contains "16 examples, 0 failures"
|
12
|
+
assert_output_contains "16 examples, 0 failures"
|
13
|
+
}
|
14
|
+
|
15
|
+
@test "rspec-queue succeeds all specs pass in the default spec directory even if directory path is omitted" {
|
16
|
+
run bundle exec rspec-queue
|
17
|
+
assert_status 0
|
18
|
+
assert_output_contains "Starting test-queue master"
|
19
|
+
assert_output_contains "6 examples, 0 failures"
|
20
|
+
assert_output_contains "0 examples, 0 failures"
|
21
|
+
}
|
22
|
+
|
23
|
+
@test "rspec-queue fails when a spec fails" {
|
24
|
+
export FAIL=1
|
25
|
+
run bundle exec rspec-queue ./test/samples/sample_spec.rb
|
26
|
+
assert_status 1
|
27
|
+
assert_output_contains "1) RSpecFailure fails"
|
28
|
+
assert_output_contains "RSpecFailure fails"
|
29
|
+
assert_output_contains "expected: :bar"
|
30
|
+
assert_output_contains "got: :foo"
|
31
|
+
}
|
32
|
+
|
33
|
+
@test "TEST_QUEUE_SPLIT_GROUPS splits splittable groups" {
|
34
|
+
export TEST_QUEUE_SPLIT_GROUPS=true
|
35
|
+
run bundle exec rspec-queue ./test/samples/sample_split_spec.rb
|
36
|
+
assert_status 0
|
37
|
+
|
38
|
+
assert_output_matches '\[ 1\] +1 example, 0 failures'
|
39
|
+
assert_output_matches '\[ 2\] +1 example, 0 failures'
|
40
|
+
}
|
41
|
+
|
42
|
+
@test "TEST_QUEUE_SPLIT_GROUPS does not split unsplittable groups" {
|
43
|
+
export TEST_QUEUE_SPLIT_GROUPS=true
|
44
|
+
export NOSPLIT=1
|
45
|
+
run bundle exec rspec-queue ./test/samples/sample_split_spec.rb
|
46
|
+
assert_status 0
|
47
|
+
|
48
|
+
assert_output_contains "2 examples, 0 failures"
|
49
|
+
assert_output_contains "0 examples, 0 failures"
|
50
|
+
}
|
51
|
+
|
52
|
+
@test "rspec-queue supports shared example groups" {
|
53
|
+
run bundle exec rspec-queue ./test/samples/sample_use_shared_example1_spec.rb \
|
54
|
+
./test/samples/sample_use_shared_example2_spec.rb
|
55
|
+
assert_status 0
|
56
|
+
}
|
data/test/rspec4.bats
ADDED
@@ -0,0 +1,56 @@
|
|
1
|
+
load "testlib"
|
2
|
+
|
3
|
+
setup() {
|
4
|
+
require_gem "rspec" "4.0.0.pre"
|
5
|
+
}
|
6
|
+
|
7
|
+
@test "rspec-queue succeeds when all specs pass" {
|
8
|
+
run bundle exec rspec-queue ./test/samples/sample_spec.rb
|
9
|
+
assert_status 0
|
10
|
+
assert_output_contains "Starting test-queue master"
|
11
|
+
assert_output_contains "16 examples, 0 failures"
|
12
|
+
assert_output_contains "16 examples, 0 failures"
|
13
|
+
}
|
14
|
+
|
15
|
+
@test "rspec-queue succeeds all specs pass in the default spec directory even if directory path is omitted" {
|
16
|
+
run bundle exec rspec-queue
|
17
|
+
assert_status 0
|
18
|
+
assert_output_contains "Starting test-queue master"
|
19
|
+
assert_output_contains "6 examples, 0 failures"
|
20
|
+
assert_output_contains "0 examples, 0 failures"
|
21
|
+
}
|
22
|
+
|
23
|
+
@test "rspec-queue fails when a spec fails" {
|
24
|
+
export FAIL=1
|
25
|
+
run bundle exec rspec-queue ./test/samples/sample_spec.rb
|
26
|
+
assert_status 1
|
27
|
+
assert_output_contains "1) RSpecFailure fails"
|
28
|
+
assert_output_contains "RSpecFailure fails"
|
29
|
+
assert_output_contains "expected: :bar"
|
30
|
+
assert_output_contains "got: :foo"
|
31
|
+
}
|
32
|
+
|
33
|
+
@test "TEST_QUEUE_SPLIT_GROUPS splits splittable groups" {
|
34
|
+
export TEST_QUEUE_SPLIT_GROUPS=true
|
35
|
+
run bundle exec rspec-queue ./test/samples/sample_split_spec.rb
|
36
|
+
assert_status 0
|
37
|
+
|
38
|
+
assert_output_matches '\[ 1\] +1 example, 0 failures'
|
39
|
+
assert_output_matches '\[ 2\] +1 example, 0 failures'
|
40
|
+
}
|
41
|
+
|
42
|
+
@test "TEST_QUEUE_SPLIT_GROUPS does not split unsplittable groups" {
|
43
|
+
export TEST_QUEUE_SPLIT_GROUPS=true
|
44
|
+
export NOSPLIT=1
|
45
|
+
run bundle exec rspec-queue ./test/samples/sample_split_spec.rb
|
46
|
+
assert_status 0
|
47
|
+
|
48
|
+
assert_output_contains "2 examples, 0 failures"
|
49
|
+
assert_output_contains "0 examples, 0 failures"
|
50
|
+
}
|
51
|
+
|
52
|
+
@test "rspec-queue supports shared example groups" {
|
53
|
+
run bundle exec rspec-queue ./test/samples/sample_use_shared_example1_spec.rb \
|
54
|
+
./test/samples/sample_use_shared_example2_spec.rb
|
55
|
+
assert_status 0
|
56
|
+
}
|
data/test/samples/sample_spec.rb
CHANGED
@@ -1,13 +1,13 @@
|
|
1
1
|
require 'rspec'
|
2
2
|
|
3
|
-
describe 'RSpecEqual' do
|
3
|
+
RSpec::describe 'RSpecEqual' do
|
4
4
|
it 'checks equality' do
|
5
5
|
expect(1).to eq 1
|
6
6
|
end
|
7
7
|
end
|
8
8
|
|
9
9
|
30.times do |i|
|
10
|
-
describe "RSpecSleep(#{i})" do
|
10
|
+
RSpec::describe "RSpecSleep(#{i})" do
|
11
11
|
it "sleeps" do
|
12
12
|
start = Time.now
|
13
13
|
sleep(0.25)
|
@@ -17,7 +17,7 @@ end
|
|
17
17
|
end
|
18
18
|
|
19
19
|
if ENV["FAIL"]
|
20
|
-
describe 'RSpecFailure' do
|
20
|
+
RSpec::describe 'RSpecFailure' do
|
21
21
|
it 'fails' do
|
22
22
|
expect(:foo).to eq :bar
|
23
23
|
end
|
data/test/sleepy_runner.rb
CHANGED
@@ -1,9 +1,11 @@
|
|
1
|
+
$LOAD_PATH.unshift File.expand_path("../lib", __dir__)
|
2
|
+
|
1
3
|
require 'test_queue'
|
2
4
|
require 'test_queue/runner/minitest'
|
3
5
|
|
4
6
|
class SleepyTestRunner < TestQueue::Runner::MiniTest
|
5
7
|
def after_fork(num)
|
6
|
-
if ENV['SLEEP_AS_RELAY'] && relay?
|
8
|
+
if ENV['SLEEP_AS_RELAY'] && relay?
|
7
9
|
sleep 5
|
8
10
|
elsif ENV['SLEEP_AS_MASTER'] && !relay?
|
9
11
|
sleep 5
|
data/test-queue.gemspec
CHANGED
@@ -1,6 +1,7 @@
|
|
1
|
-
|
1
|
+
Gem::Specification.new do |s|
|
2
2
|
s.name = 'test-queue'
|
3
|
-
s.version = '0.
|
3
|
+
s.version = '0.7.0'
|
4
|
+
s.required_ruby_version = '>= 2.7.0'
|
4
5
|
s.summary = 'parallel test runner'
|
5
6
|
s.description = 'minitest/rspec parallel test runner for CI environments'
|
6
7
|
|
@@ -10,7 +11,7 @@ spec = Gem::Specification.new do |s|
|
|
10
11
|
s.email = "ruby@tmm1.net"
|
11
12
|
s.license = 'MIT'
|
12
13
|
|
13
|
-
s.bindir = '
|
14
|
+
s.bindir = 'exe'
|
14
15
|
s.executables << 'rspec-queue'
|
15
16
|
s.executables << 'minitest-queue'
|
16
17
|
s.executables << 'testunit-queue'
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: test-queue
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.7.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Aman Gupta
|
8
8
|
autorequire:
|
9
|
-
bindir:
|
9
|
+
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2023-04-26 00:00:00.000000000 Z
|
12
12
|
dependencies: []
|
13
13
|
description: minitest/rspec parallel test runner for CI environments
|
14
14
|
email: ruby@tmm1.net
|
@@ -20,34 +20,25 @@ executables:
|
|
20
20
|
extensions: []
|
21
21
|
extra_rdoc_files: []
|
22
22
|
files:
|
23
|
+
- ".github/workflows/test.yml"
|
23
24
|
- ".gitignore"
|
24
|
-
-
|
25
|
+
- Appraisals
|
25
26
|
- Gemfile
|
26
|
-
- Gemfile-cucumber1-3
|
27
|
-
- Gemfile-cucumber1-3.lock
|
28
|
-
- Gemfile-cucumber2-4
|
29
|
-
- Gemfile-cucumber2-4.lock
|
30
|
-
- Gemfile-minitest4
|
31
|
-
- Gemfile-minitest4.lock
|
32
|
-
- Gemfile-minitest5
|
33
|
-
- Gemfile-minitest5.lock
|
34
|
-
- Gemfile-rspec2-1
|
35
|
-
- Gemfile-rspec2-1.lock
|
36
|
-
- Gemfile-rspec3-0
|
37
|
-
- Gemfile-rspec3-0.lock
|
38
|
-
- Gemfile-rspec3-1
|
39
|
-
- Gemfile-rspec3-1.lock
|
40
|
-
- Gemfile-rspec3-2
|
41
|
-
- Gemfile-rspec3-2.lock
|
42
|
-
- Gemfile-testunit
|
43
|
-
- Gemfile-testunit.lock
|
44
|
-
- Gemfile.lock
|
45
27
|
- LICENSE
|
46
28
|
- README.md
|
47
|
-
-
|
48
|
-
-
|
49
|
-
-
|
50
|
-
-
|
29
|
+
- Rakefile
|
30
|
+
- exe/cucumber-queue
|
31
|
+
- exe/minitest-queue
|
32
|
+
- exe/rspec-queue
|
33
|
+
- exe/testunit-queue
|
34
|
+
- gemfiles/cucumber1_3.gemfile
|
35
|
+
- gemfiles/cucumber2_4.gemfile
|
36
|
+
- gemfiles/minitest4.gemfile
|
37
|
+
- gemfiles/minitest5.gemfile
|
38
|
+
- gemfiles/rspec2.gemfile
|
39
|
+
- gemfiles/rspec3.gemfile
|
40
|
+
- gemfiles/rspec4.gemfile
|
41
|
+
- gemfiles/testunit.gemfile
|
51
42
|
- lib/test-queue.rb
|
52
43
|
- lib/test_queue.rb
|
53
44
|
- lib/test_queue/iterator.rb
|
@@ -65,14 +56,14 @@ files:
|
|
65
56
|
- lib/test_queue/stats.rb
|
66
57
|
- lib/test_queue/test_framework.rb
|
67
58
|
- script/bootstrap
|
68
|
-
- script/cibuild
|
69
|
-
- script/spec
|
70
59
|
- spec/stats_spec.rb
|
71
60
|
- test-queue.gemspec
|
72
61
|
- test/cucumber.bats
|
73
62
|
- test/minitest4.bats
|
74
63
|
- test/minitest5.bats
|
75
|
-
- test/
|
64
|
+
- test/rspec2.bats
|
65
|
+
- test/rspec3.bats
|
66
|
+
- test/rspec4.bats
|
76
67
|
- test/samples/features/bad.feature
|
77
68
|
- test/samples/features/sample.feature
|
78
69
|
- test/samples/features/sample2.feature
|
@@ -102,14 +93,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
102
93
|
requirements:
|
103
94
|
- - ">="
|
104
95
|
- !ruby/object:Gem::Version
|
105
|
-
version:
|
96
|
+
version: 2.7.0
|
106
97
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
107
98
|
requirements:
|
108
99
|
- - ">="
|
109
100
|
- !ruby/object:Gem::Version
|
110
101
|
version: '0'
|
111
102
|
requirements: []
|
112
|
-
rubygems_version: 3.3.
|
103
|
+
rubygems_version: 3.3.26
|
113
104
|
signing_key:
|
114
105
|
specification_version: 4
|
115
106
|
summary: parallel test runner
|
data/.travis.yml
DELETED
@@ -1,18 +0,0 @@
|
|
1
|
-
language: ruby
|
2
|
-
install: script/bootstrap
|
3
|
-
rvm:
|
4
|
-
- 2.2
|
5
|
-
env:
|
6
|
-
- SUITE=ruby
|
7
|
-
- SUITE=cucumber1-3
|
8
|
-
- SUITE=cucumber2-4
|
9
|
-
- SUITE=minitest4
|
10
|
-
- SUITE=minitest5
|
11
|
-
- SUITE=rspec2-1
|
12
|
-
- SUITE=rspec3-0
|
13
|
-
- SUITE=rspec3-1
|
14
|
-
- SUITE=rspec3-2
|
15
|
-
- SUITE=testunit
|
16
|
-
script: script/cibuild
|
17
|
-
notifications:
|
18
|
-
email: false
|
data/Gemfile-cucumber1-3
DELETED
data/Gemfile-cucumber1-3.lock
DELETED
@@ -1,33 +0,0 @@
|
|
1
|
-
PATH
|
2
|
-
remote: .
|
3
|
-
specs:
|
4
|
-
test-queue (0.5.0)
|
5
|
-
|
6
|
-
GEM
|
7
|
-
remote: https://rubygems.org/
|
8
|
-
specs:
|
9
|
-
builder (3.2.2)
|
10
|
-
cucumber (1.3.20)
|
11
|
-
builder (>= 2.1.2)
|
12
|
-
diff-lcs (>= 1.1.3)
|
13
|
-
gherkin (~> 2.12)
|
14
|
-
multi_json (>= 1.7.5, < 2.0)
|
15
|
-
multi_test (>= 0.1.2)
|
16
|
-
diff-lcs (1.2.5)
|
17
|
-
gherkin (2.12.2)
|
18
|
-
multi_json (~> 1.3)
|
19
|
-
multi_json (1.12.1)
|
20
|
-
multi_test (0.1.2)
|
21
|
-
rspec-expectations (2.14.5)
|
22
|
-
diff-lcs (>= 1.1.3, < 2.0)
|
23
|
-
|
24
|
-
PLATFORMS
|
25
|
-
ruby
|
26
|
-
|
27
|
-
DEPENDENCIES
|
28
|
-
cucumber (~> 1.3.10)
|
29
|
-
rspec-expectations (~> 2.14.4)
|
30
|
-
test-queue!
|
31
|
-
|
32
|
-
BUNDLED WITH
|
33
|
-
1.13.1
|
data/Gemfile-cucumber2-4
DELETED
data/Gemfile-cucumber2-4.lock
DELETED
@@ -1,37 +0,0 @@
|
|
1
|
-
PATH
|
2
|
-
remote: .
|
3
|
-
specs:
|
4
|
-
test-queue (0.5.0)
|
5
|
-
|
6
|
-
GEM
|
7
|
-
remote: https://rubygems.org/
|
8
|
-
specs:
|
9
|
-
builder (3.2.2)
|
10
|
-
cucumber (2.4.0)
|
11
|
-
builder (>= 2.1.2)
|
12
|
-
cucumber-core (~> 1.5.0)
|
13
|
-
cucumber-wire (~> 0.0.1)
|
14
|
-
diff-lcs (>= 1.1.3)
|
15
|
-
gherkin (~> 4.0)
|
16
|
-
multi_json (>= 1.7.5, < 2.0)
|
17
|
-
multi_test (>= 0.1.2)
|
18
|
-
cucumber-core (1.5.0)
|
19
|
-
gherkin (~> 4.0)
|
20
|
-
cucumber-wire (0.0.1)
|
21
|
-
diff-lcs (1.2.5)
|
22
|
-
gherkin (4.0.0)
|
23
|
-
multi_json (1.12.1)
|
24
|
-
multi_test (0.1.2)
|
25
|
-
rspec-expectations (2.14.4)
|
26
|
-
diff-lcs (>= 1.1.3, < 2.0)
|
27
|
-
|
28
|
-
PLATFORMS
|
29
|
-
ruby
|
30
|
-
|
31
|
-
DEPENDENCIES
|
32
|
-
cucumber (= 2.4.0)
|
33
|
-
rspec-expectations (= 2.14.4)
|
34
|
-
test-queue!
|
35
|
-
|
36
|
-
BUNDLED WITH
|
37
|
-
1.13.1
|
data/Gemfile-minitest4
DELETED
data/Gemfile-minitest4.lock
DELETED
data/Gemfile-minitest5
DELETED
data/Gemfile-minitest5.lock
DELETED
data/Gemfile-rspec2-1
DELETED
data/Gemfile-rspec2-1.lock
DELETED
@@ -1,27 +0,0 @@
|
|
1
|
-
PATH
|
2
|
-
remote: .
|
3
|
-
specs:
|
4
|
-
test-queue (0.5.0)
|
5
|
-
|
6
|
-
GEM
|
7
|
-
remote: https://rubygems.org/
|
8
|
-
specs:
|
9
|
-
diff-lcs (1.2.5)
|
10
|
-
rspec (2.13.0)
|
11
|
-
rspec-core (~> 2.13.0)
|
12
|
-
rspec-expectations (~> 2.13.0)
|
13
|
-
rspec-mocks (~> 2.13.0)
|
14
|
-
rspec-core (2.13.1)
|
15
|
-
rspec-expectations (2.13.0)
|
16
|
-
diff-lcs (>= 1.1.3, < 2.0)
|
17
|
-
rspec-mocks (2.13.1)
|
18
|
-
|
19
|
-
PLATFORMS
|
20
|
-
ruby
|
21
|
-
|
22
|
-
DEPENDENCIES
|
23
|
-
rspec (= 2.13.0)
|
24
|
-
test-queue!
|
25
|
-
|
26
|
-
BUNDLED WITH
|
27
|
-
1.13.1
|
data/Gemfile-rspec3-0
DELETED
data/Gemfile-rspec3-0.lock
DELETED
@@ -1,31 +0,0 @@
|
|
1
|
-
PATH
|
2
|
-
remote: .
|
3
|
-
specs:
|
4
|
-
test-queue (0.5.0)
|
5
|
-
|
6
|
-
GEM
|
7
|
-
remote: https://rubygems.org/
|
8
|
-
specs:
|
9
|
-
diff-lcs (1.2.5)
|
10
|
-
rspec (3.0.0)
|
11
|
-
rspec-core (~> 3.0.0)
|
12
|
-
rspec-expectations (~> 3.0.0)
|
13
|
-
rspec-mocks (~> 3.0.0)
|
14
|
-
rspec-core (3.0.4)
|
15
|
-
rspec-support (~> 3.0.0)
|
16
|
-
rspec-expectations (3.0.4)
|
17
|
-
diff-lcs (>= 1.2.0, < 2.0)
|
18
|
-
rspec-support (~> 3.0.0)
|
19
|
-
rspec-mocks (3.0.4)
|
20
|
-
rspec-support (~> 3.0.0)
|
21
|
-
rspec-support (3.0.4)
|
22
|
-
|
23
|
-
PLATFORMS
|
24
|
-
ruby
|
25
|
-
|
26
|
-
DEPENDENCIES
|
27
|
-
rspec (~> 3.0.0)
|
28
|
-
test-queue!
|
29
|
-
|
30
|
-
BUNDLED WITH
|
31
|
-
1.13.1
|
data/Gemfile-rspec3-1
DELETED
data/Gemfile-rspec3-1.lock
DELETED
@@ -1,31 +0,0 @@
|
|
1
|
-
PATH
|
2
|
-
remote: .
|
3
|
-
specs:
|
4
|
-
test-queue (0.5.0)
|
5
|
-
|
6
|
-
GEM
|
7
|
-
remote: https://rubygems.org/
|
8
|
-
specs:
|
9
|
-
diff-lcs (1.2.5)
|
10
|
-
rspec (3.1.0)
|
11
|
-
rspec-core (~> 3.1.0)
|
12
|
-
rspec-expectations (~> 3.1.0)
|
13
|
-
rspec-mocks (~> 3.1.0)
|
14
|
-
rspec-core (3.1.7)
|
15
|
-
rspec-support (~> 3.1.0)
|
16
|
-
rspec-expectations (3.1.2)
|
17
|
-
diff-lcs (>= 1.2.0, < 2.0)
|
18
|
-
rspec-support (~> 3.1.0)
|
19
|
-
rspec-mocks (3.1.3)
|
20
|
-
rspec-support (~> 3.1.0)
|
21
|
-
rspec-support (3.1.2)
|
22
|
-
|
23
|
-
PLATFORMS
|
24
|
-
ruby
|
25
|
-
|
26
|
-
DEPENDENCIES
|
27
|
-
rspec (~> 3.1.0)
|
28
|
-
test-queue!
|
29
|
-
|
30
|
-
BUNDLED WITH
|
31
|
-
1.13.1
|
data/Gemfile-rspec3-2
DELETED