soda 1.3.5 → 1.3.6

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.
@@ -1052,8 +1052,8 @@ def GenHtmlReport2(data, reportfile, create_links = false)
1052
1052
  end
1053
1053
 
1054
1054
  test_totals = summary_totals['Total Test Count']
1055
- test_totals += summary_totals['Test Skip Count']
1056
- test_totals += summary_totals['Test Blocked Count']
1055
+ # test_totals += summary_totals['Test Skip Count']
1056
+ # test_totals += summary_totals['Test Blocked Count']
1057
1057
 
1058
1058
  total_failures = 0
1059
1059
  total_failures += summary_totals['Test Failure Count']
@@ -1061,9 +1061,13 @@ def GenHtmlReport2(data, reportfile, create_links = false)
1061
1061
  total_failures += summary_totals['Test Assert Failures']
1062
1062
  total_failures += summary_totals['Test JavaScript Error Count']
1063
1063
 
1064
+ total_ran = summary_totals['Total Test Count']
1065
+ total_ran -= summary_totals['Test Blocked Count']
1066
+
1067
+ # "\t<td class=\"td_footer_run\">#{summary_totals['Total Test Count']}"+
1064
1068
  sub_totals = "<tr id=\"totals\">\n"+
1065
1069
  "\t<td class=\"td_header_master\">Totals:</td>\n"+
1066
- "\t<td class=\"td_footer_run\">#{summary_totals['Total Test Count']}"+
1070
+ "\t<td class=\"td_footer_run\">#{total_ran}"+
1067
1071
  "/#{test_totals}</td>\n"+
1068
1072
  "\t<td class=\"td_footer_passed\">#{summary_totals['Test Pass Count']}"+
1069
1073
  "</td>\n"+
data/lib/sodainfo.rb CHANGED
@@ -1,4 +1,4 @@
1
1
  require 'Soda'
2
2
 
3
- SODA_GEM_VERSION = "1.3.5"
3
+ SODA_GEM_VERSION = "1.3.6"
4
4
 
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: soda
3
3
  version: !ruby/object:Gem::Version
4
- hash: 17
4
+ hash: 23
5
5
  prerelease:
6
6
  segments:
7
7
  - 1
8
8
  - 3
9
- - 5
10
- version: 1.3.5
9
+ - 6
10
+ version: 1.3.6
11
11
  platform: ruby
12
12
  authors:
13
13
  - Trampus Richmond
@@ -15,8 +15,7 @@ autorequire:
15
15
  bindir: bin
16
16
  cert_chain: []
17
17
 
18
- date: 2011-03-31 00:00:00 -07:00
19
- default_executable:
18
+ date: 2011-04-12 00:00:00 Z
20
19
  dependencies:
21
20
  - !ruby/object:Gem::Dependency
22
21
  name: firewatir
@@ -82,7 +81,6 @@ files:
82
81
  - lib/fields/SodaField.rb
83
82
  - lib/fields/RadioField.rb
84
83
  - lib/fields/CheckBoxField.rb
85
- has_rdoc: true
86
84
  homepage: http://www.github.com/sugarcrm/SODA
87
85
  licenses: []
88
86
 
@@ -112,7 +110,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
112
110
  requirements: []
113
111
 
114
112
  rubyforge_project: Soda
115
- rubygems_version: 1.5.2
113
+ rubygems_version: 1.7.2
116
114
  signing_key:
117
115
  specification_version: 3
118
116
  summary: SODA is an XML based testing framework leveraging Watir.