minitest-failure-reporter 0.1.0 → 0.1.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 6e1e7d1744ab09ea7c43e7b0917a86033a1221e2ba2363219fe5c40477db3e8f
4
- data.tar.gz: fd4abe0fb346cbfbce80efbfa990f1c30b7904fa8747cc4bd7a7e089adc9cd28
3
+ metadata.gz: acefcaa710245448c11d9aa415903f6d7e81fdb1943185c8afcc48872e3c966d
4
+ data.tar.gz: 274533ba2aa610937cbf795d1a36c656f3225ec0105b9cb47fd53edbdb04068a
5
5
  SHA512:
6
- metadata.gz: c192329a14482959975d601c100107abcbfcaf2ef2f7198c29647368f640007d06cacfba82dd68970a610ab942526a84119df671f44a0e9659ade149e0a4abc4
7
- data.tar.gz: 7a0ad5c78445975a264899f0a0ac00fa2a734b586a40187d9f26345d63ec0139a92767cfa24edc889afe3c75e99d188924a6f37243ef6ab6b5355e697062b3fa
6
+ metadata.gz: 99f879e026fc3d42b8d9fc15b4a8ea1cca3155f0af3fac69f7b02d05381b4ed124c742f2419933cde45479f26e9d06ed0d78edad76193d39b2c450671a7b029f
7
+ data.tar.gz: a9080fef459202f391e50572da515daba5361c2000fcf08d44737d9fe848f73c29259417cdb4923f402be36a9290697c3d67d94259106635ce14370edbc2d181
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- minitest-failure-reporter (0.1.0)
4
+ minitest-failure-reporter (0.1.1)
5
5
  minitest (~> 5.0)
6
6
 
7
7
  GEM
@@ -16,7 +16,7 @@ PLATFORMS
16
16
 
17
17
  DEPENDENCIES
18
18
  bundler (~> 2.1)
19
- byebug
19
+ byebug (~> 11.1)
20
20
  minitest-failure-reporter!
21
21
  rake (~> 12.3)
22
22
 
data/README.md CHANGED
@@ -6,9 +6,9 @@ The format of the file looks as follows:
6
6
 
7
7
  ```ruby
8
8
  [{
9
- test_file: String,
9
+ test_file_path: String,
10
10
  test_line: Int,
11
- test_and_module_name: String,
11
+ test_id: String,
12
12
  test_name: String,
13
13
  test_suite: String,
14
14
  error_class: String,
@@ -1,5 +1,5 @@
1
1
  module Minitest
2
2
  module FailureReporter
3
- VERSION = "0.1.0"
3
+ VERSION = "0.1.1"
4
4
  end
5
5
  end
@@ -29,9 +29,9 @@ module Minitest
29
29
  def format(test)
30
30
  test_file, test_line = test.source_location
31
31
  {
32
- test_file: test_file,
32
+ test_file_path: test_file,
33
33
  test_line: test_line,
34
- test_and_module_name: "#{test.klass}##{test.name}",
34
+ test_id: "#{test.klass}##{test.name}",
35
35
  test_name: test.name,
36
36
  test_suite: test.klass,
37
37
  error_class: test.failure.exception.class.name,
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: minitest-failure-reporter
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.1.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Frederik Dudzik
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2020-07-21 00:00:00.000000000 Z
11
+ date: 2020-07-23 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: minitest