inferno_core 0.3.8 → 0.3.9

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: 669dde4b0ad34993f363e538ed2d7eae59d4211f0b988a7e6306231fd54d74c0
4
- data.tar.gz: 5149b96b6931d27a41cd0c3b0a5665024b297c6d8e612e574582cb630ef29867
3
+ metadata.gz: 9b1fdfa108a1efc7ef07ca853de7b877d4f7f3062881c8461c7db5e7ed4cecf0
4
+ data.tar.gz: 848ee45d91553dcaa56fd4240037b4b9e642557238c0ca9c8b6ce90f082fe589
5
5
  SHA512:
6
- metadata.gz: d5a839c224c59795ab5f79fdd18de124ba6eae8d2cdf60c1afeae4f7bf091ac1a0321ff97e7939753de1d05441df1152929e3d3ba2e743d9777ea39fc0603806
7
- data.tar.gz: 602ac59a4417b6751d3e661d15ac55f4d7ac2f2ee171b9ac284637b3d4693f36ae85f09fbd63011fa570609dd1c8f54c7ee5c35fa28f1c909185bec2b28f0234
6
+ metadata.gz: 33eafbcddeb83e41b324e50570584e07b321cb44ac1f90621bd562d2f2d023902b3705b1495753aba2cc89dab675d93a33a9bab359ce8aefcd9ebe54582b3b81
7
+ data.tar.gz: 999fa58453aaf2b95d2fd19dc720e97ef77b858fcf1e2e2b70ca1657d7c9eb71bc056938c31b83f8232b515048c93b56af10b9beae4e1a23a833531381b16e4a
@@ -11,6 +11,7 @@ module Inferno
11
11
  field :input_instructions
12
12
  field :version
13
13
  field :links
14
+ field :suite_summary
14
15
 
15
16
  field :test_count do |suite, options|
16
17
  suite.test_count(options[:suite_options])
@@ -99,6 +99,12 @@ module Inferno
99
99
 
100
100
  @links = links
101
101
  end
102
+
103
+ def suite_summary(suite_summary = nil)
104
+ return @suite_summary if suite_summary.nil?
105
+
106
+ @suite_summary = format_markdown(suite_summary)
107
+ end
102
108
  end
103
109
  end
104
110
  end