swiftrail 0.1.14 → 0.1.15
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/Gemfile.lock +2 -2
- data/bin/swiftrail +7 -0
- data/lib/swiftrail/testrail/assembler.rb +7 -3
- data/lib/swiftrail/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: ce74cbe5cf0af3a239494dfbc4d4f0fa8f82a4df31598f9732510755a94c322a
|
4
|
+
data.tar.gz: ed251407be9593fe7aed6252da8a8e7e1678aec2321c3716df6e8a861b067dfb
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 1133e97add2c292ebef9d2ee4f650f4a2ec83bc91dbb35926d2baa12ea8a79ba6acc2d739e096b4d376adec36f7b60793db56ea1ef08c4d0b54192681f71266a
|
7
|
+
data.tar.gz: 93a6570d8e0e27a3b61f790d449f198c3e574c327b28d6766cf1c77743809d6bdea231cfdf9ad1a09b452053054c559f7b90082aaa56a8aaf3675ea5467cf847
|
data/Gemfile.lock
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
PATH
|
2
2
|
remote: .
|
3
3
|
specs:
|
4
|
-
swiftrail (0.1.
|
4
|
+
swiftrail (0.1.15)
|
5
5
|
nokogiri (>= 1.10.4)
|
6
6
|
thor (~> 0.20)
|
7
7
|
|
@@ -10,7 +10,7 @@ GEM
|
|
10
10
|
specs:
|
11
11
|
diff-lcs (1.3)
|
12
12
|
mini_portile2 (2.4.0)
|
13
|
-
nokogiri (1.10.
|
13
|
+
nokogiri (1.10.5)
|
14
14
|
mini_portile2 (~> 2.4.0)
|
15
15
|
rake (10.5.0)
|
16
16
|
rspec (3.8.0)
|
data/bin/swiftrail
CHANGED
@@ -39,12 +39,16 @@ module Swiftrail
|
|
39
39
|
|
40
40
|
def swift_test_for(junit_test_case)
|
41
41
|
tests = swift_tests.select do |test|
|
42
|
+
test.bundle
|
42
43
|
test.class_name == junit_test_case.class_name &&
|
43
44
|
test.test_name == junit_test_case.test_name
|
44
45
|
end
|
45
|
-
|
46
|
-
|
47
|
-
|
46
|
+
if tests.count > 1
|
47
|
+
STDERR.puts(Error::Ambiguity.new(junit_test_case, tests))
|
48
|
+
nil
|
49
|
+
else
|
50
|
+
tests.first
|
51
|
+
end
|
48
52
|
end
|
49
53
|
end
|
50
54
|
end
|
data/lib/swiftrail/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: swiftrail
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.15
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Slavko Krucaj
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2019-
|
11
|
+
date: 2019-11-07 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: nokogiri
|