code_metrics 0.0.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (53) hide show
  1. data/MIT-LICENSE +20 -0
  2. data/README.rdoc +3 -0
  3. data/Rakefile +33 -0
  4. data/bin/code_metrics +22 -0
  5. data/bin/code_metrics-profile +15 -0
  6. data/lib/code_metrics.rb +10 -0
  7. data/lib/code_metrics/profiler.rb +96 -0
  8. data/lib/code_metrics/railtie.rb +11 -0
  9. data/lib/code_metrics/statistics.rb +106 -0
  10. data/lib/code_metrics/statistics_calculator.rb +81 -0
  11. data/lib/code_metrics/stats_directories.rb +28 -0
  12. data/lib/code_metrics/version.rb +3 -0
  13. data/lib/tasks/statistics.rake +14 -0
  14. data/test/active_support_testing_isolation.rb +136 -0
  15. data/test/code_metrics_test.rb +7 -0
  16. data/test/dummy/README.rdoc +28 -0
  17. data/test/dummy/Rakefile +6 -0
  18. data/test/dummy/app/assets/javascripts/application.js +13 -0
  19. data/test/dummy/app/assets/stylesheets/application.css +13 -0
  20. data/test/dummy/app/controllers/application_controller.rb +5 -0
  21. data/test/dummy/app/helpers/application_helper.rb +2 -0
  22. data/test/dummy/app/views/layouts/application.html.erb +14 -0
  23. data/test/dummy/bin/bundle +3 -0
  24. data/test/dummy/bin/rails +4 -0
  25. data/test/dummy/bin/rake +4 -0
  26. data/test/dummy/config.ru +4 -0
  27. data/test/dummy/config/application.rb +24 -0
  28. data/test/dummy/config/boot.rb +5 -0
  29. data/test/dummy/config/database.yml +25 -0
  30. data/test/dummy/config/environment.rb +5 -0
  31. data/test/dummy/config/environments/development.rb +29 -0
  32. data/test/dummy/config/environments/production.rb +80 -0
  33. data/test/dummy/config/environments/test.rb +36 -0
  34. data/test/dummy/config/initializers/backtrace_silencers.rb +7 -0
  35. data/test/dummy/config/initializers/filter_parameter_logging.rb +4 -0
  36. data/test/dummy/config/initializers/inflections.rb +16 -0
  37. data/test/dummy/config/initializers/mime_types.rb +5 -0
  38. data/test/dummy/config/initializers/secret_token.rb +12 -0
  39. data/test/dummy/config/initializers/session_store.rb +3 -0
  40. data/test/dummy/config/initializers/wrap_parameters.rb +14 -0
  41. data/test/dummy/config/locales/en.yml +23 -0
  42. data/test/dummy/config/routes.rb +56 -0
  43. data/test/dummy/db/test.sqlite3 +0 -0
  44. data/test/dummy/log/test.log +309 -0
  45. data/test/dummy/public/404.html +58 -0
  46. data/test/dummy/public/422.html +58 -0
  47. data/test/dummy/public/500.html +57 -0
  48. data/test/dummy/public/favicon.ico +0 -0
  49. data/test/isolation_abstract_unit.rb +287 -0
  50. data/test/rake_test.rb +15 -0
  51. data/test/statistics_calculator_test.rb +288 -0
  52. data/test/test_helper.rb +15 -0
  53. metadata +177 -0
@@ -0,0 +1,7 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ # You can add backtrace silencers for libraries that you're using but don't wish to see in your backtraces.
4
+ # Rails.backtrace_cleaner.add_silencer { |line| line =~ /my_noisy_library/ }
5
+
6
+ # You can also remove all the silencers if you're trying to debug a problem that might stem from framework code.
7
+ # Rails.backtrace_cleaner.remove_silencers!
@@ -0,0 +1,4 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ # Configure sensitive parameters which will be filtered from the log file.
4
+ Rails.application.config.filter_parameters += [:password]
@@ -0,0 +1,16 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ # Add new inflection rules using the following format. Inflections
4
+ # are locale specific, and you may define rules for as many different
5
+ # locales as you wish. All of these examples are active by default:
6
+ # ActiveSupport::Inflector.inflections(:en) do |inflect|
7
+ # inflect.plural /^(ox)$/i, '\1en'
8
+ # inflect.singular /^(ox)en/i, '\1'
9
+ # inflect.irregular 'person', 'people'
10
+ # inflect.uncountable %w( fish sheep )
11
+ # end
12
+
13
+ # These inflection rules are supported but not enabled by default:
14
+ # ActiveSupport::Inflector.inflections(:en) do |inflect|
15
+ # inflect.acronym 'RESTful'
16
+ # end
@@ -0,0 +1,5 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ # Add new mime types for use in respond_to blocks:
4
+ # Mime::Type.register "text/richtext", :rtf
5
+ # Mime::Type.register_alias "text/html", :iphone
@@ -0,0 +1,12 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ # Your secret key is used for verifying the integrity of signed cookies.
4
+ # If you change this key, all old signed cookies will become invalid!
5
+
6
+ # Make sure the secret is at least 30 characters and all random,
7
+ # no regular words or you'll be exposed to dictionary attacks.
8
+ # You can use `rake secret` to generate a secure secret key.
9
+
10
+ # Make sure your secret_key_base is kept private
11
+ # if you're sharing your code publicly.
12
+ Dummy::Application.config.secret_key_base = '9fdc3a1284df702c605e44ab9a95ca71420a08606fb84166f4629e315a02ef058577509e922166c84f1660b795ece60468e34df76c37f85fa42bf18408a7ebf8'
@@ -0,0 +1,3 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ Dummy::Application.config.session_store :cookie_store, key: '_dummy_session'
@@ -0,0 +1,14 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ # This file contains settings for ActionController::ParamsWrapper which
4
+ # is enabled by default.
5
+
6
+ # Enable parameter wrapping for JSON. You can disable this by setting :format to an empty array.
7
+ ActiveSupport.on_load(:action_controller) do
8
+ wrap_parameters format: [:json] if respond_to?(:wrap_parameters)
9
+ end
10
+
11
+ # To enable root element in JSON for ActiveRecord objects.
12
+ # ActiveSupport.on_load(:active_record) do
13
+ # self.include_root_in_json = true
14
+ # end
@@ -0,0 +1,23 @@
1
+ # Files in the config/locales directory are used for internationalization
2
+ # and are automatically loaded by Rails. If you want to use locales other
3
+ # than English, add the necessary files in this directory.
4
+ #
5
+ # To use the locales, use `I18n.t`:
6
+ #
7
+ # I18n.t 'hello'
8
+ #
9
+ # In views, this is aliased to just `t`:
10
+ #
11
+ # <%= t('hello') %>
12
+ #
13
+ # To use a different locale, set it with `I18n.locale`:
14
+ #
15
+ # I18n.locale = :es
16
+ #
17
+ # This would use the information in config/locales/es.yml.
18
+ #
19
+ # To learn more, please read the Rails Internationalization guide
20
+ # available at http://guides.rubyonrails.org/i18n.html.
21
+
22
+ en:
23
+ hello: "Hello world"
@@ -0,0 +1,56 @@
1
+ Dummy::Application.routes.draw do
2
+ # The priority is based upon order of creation: first created -> highest priority.
3
+ # See how all your routes lay out with "rake routes".
4
+
5
+ # You can have the root of your site routed with "root"
6
+ # root 'welcome#index'
7
+
8
+ # Example of regular route:
9
+ # get 'products/:id' => 'catalog#view'
10
+
11
+ # Example of named route that can be invoked with purchase_url(id: product.id)
12
+ # get 'products/:id/purchase' => 'catalog#purchase', as: :purchase
13
+
14
+ # Example resource route (maps HTTP verbs to controller actions automatically):
15
+ # resources :products
16
+
17
+ # Example resource route with options:
18
+ # resources :products do
19
+ # member do
20
+ # get 'short'
21
+ # post 'toggle'
22
+ # end
23
+ #
24
+ # collection do
25
+ # get 'sold'
26
+ # end
27
+ # end
28
+
29
+ # Example resource route with sub-resources:
30
+ # resources :products do
31
+ # resources :comments, :sales
32
+ # resource :seller
33
+ # end
34
+
35
+ # Example resource route with more complex sub-resources:
36
+ # resources :products do
37
+ # resources :comments
38
+ # resources :sales do
39
+ # get 'recent', on: :collection
40
+ # end
41
+ # end
42
+
43
+ # Example resource route with concerns:
44
+ # concern :toggleable do
45
+ # post 'toggle'
46
+ # end
47
+ # resources :posts, concerns: :toggleable
48
+ # resources :photos, concerns: :toggleable
49
+
50
+ # Example resource route within a namespace:
51
+ # namespace :admin do
52
+ # # Directs /admin/products/* to Admin::ProductsController
53
+ # # (app/controllers/admin/products_controller.rb)
54
+ # resources :products
55
+ # end
56
+ end
File without changes
@@ -0,0 +1,309 @@
1
+ -----------------------------------------------------------------------
2
+ CodeStatisticsCalculatorTest: test_add_statistics_to_another_using_#add
3
+ -----------------------------------------------------------------------
4
+ --------------------------------------------------------------
5
+ CodeStatisticsCalculatorTest: test_calculate_CoffeeScript_LOCs
6
+ --------------------------------------------------------------
7
+ ----------------------------------------------------
8
+ CodeStatisticsCalculatorTest: test_calculate_JS_LOCs
9
+ ----------------------------------------------------
10
+ ------------------------------------------------------
11
+ CodeStatisticsCalculatorTest: test_calculate_Ruby_LOCs
12
+ ------------------------------------------------------
13
+ ---------------------------------------------------------------------------
14
+ CodeStatisticsCalculatorTest: test_calculate_number_of_CoffeeScript_classes
15
+ ---------------------------------------------------------------------------
16
+ ---------------------------------------------------------------------------
17
+ CodeStatisticsCalculatorTest: test_calculate_number_of_CoffeeScript_methods
18
+ ---------------------------------------------------------------------------
19
+ -----------------------------------------------------------------
20
+ CodeStatisticsCalculatorTest: test_calculate_number_of_JS_methods
21
+ -----------------------------------------------------------------
22
+ -------------------------------------------------------------------
23
+ CodeStatisticsCalculatorTest: test_calculate_number_of_Ruby_classes
24
+ -------------------------------------------------------------------
25
+ -------------------------------------------------------------------
26
+ CodeStatisticsCalculatorTest: test_calculate_number_of_Ruby_methods
27
+ -------------------------------------------------------------------
28
+ -------------------------------------------------------------------------------
29
+ CodeStatisticsCalculatorTest: test_calculate_statistics_using_#add_by_file_path
30
+ -------------------------------------------------------------------------------
31
+ -------------------------------------------------------------
32
+ CodeStatisticsCalculatorTest: test_skip_CoffeeScript_comments
33
+ -------------------------------------------------------------
34
+ ---------------------------------------------------
35
+ CodeStatisticsCalculatorTest: test_skip_JS_comments
36
+ ---------------------------------------------------
37
+ -----------------------------------------------------
38
+ CodeStatisticsCalculatorTest: test_skip_Ruby_comments
39
+ -----------------------------------------------------
40
+ ------------------------------
41
+ CodeStatisticsTest: test_truth
42
+ ------------------------------
43
+ -----------------------------------------------------------------------
44
+ CodeStatisticsCalculatorTest: test_add_statistics_to_another_using_#add
45
+ -----------------------------------------------------------------------
46
+ --------------------------------------------------------------
47
+ CodeStatisticsCalculatorTest: test_calculate_CoffeeScript_LOCs
48
+ --------------------------------------------------------------
49
+ ----------------------------------------------------
50
+ CodeStatisticsCalculatorTest: test_calculate_JS_LOCs
51
+ ----------------------------------------------------
52
+ ------------------------------------------------------
53
+ CodeStatisticsCalculatorTest: test_calculate_Ruby_LOCs
54
+ ------------------------------------------------------
55
+ ---------------------------------------------------------------------------
56
+ CodeStatisticsCalculatorTest: test_calculate_number_of_CoffeeScript_classes
57
+ ---------------------------------------------------------------------------
58
+ ---------------------------------------------------------------------------
59
+ CodeStatisticsCalculatorTest: test_calculate_number_of_CoffeeScript_methods
60
+ ---------------------------------------------------------------------------
61
+ -----------------------------------------------------------------
62
+ CodeStatisticsCalculatorTest: test_calculate_number_of_JS_methods
63
+ -----------------------------------------------------------------
64
+ -------------------------------------------------------------------
65
+ CodeStatisticsCalculatorTest: test_calculate_number_of_Ruby_classes
66
+ -------------------------------------------------------------------
67
+ -------------------------------------------------------------------
68
+ CodeStatisticsCalculatorTest: test_calculate_number_of_Ruby_methods
69
+ -------------------------------------------------------------------
70
+ -------------------------------------------------------------------------------
71
+ CodeStatisticsCalculatorTest: test_calculate_statistics_using_#add_by_file_path
72
+ -------------------------------------------------------------------------------
73
+ -------------------------------------------------------------
74
+ CodeStatisticsCalculatorTest: test_skip_CoffeeScript_comments
75
+ -------------------------------------------------------------
76
+ ---------------------------------------------------
77
+ CodeStatisticsCalculatorTest: test_skip_JS_comments
78
+ ---------------------------------------------------
79
+ -----------------------------------------------------
80
+ CodeStatisticsCalculatorTest: test_skip_Ruby_comments
81
+ -----------------------------------------------------
82
+ ------------------------------
83
+ CodeStatisticsTest: test_truth
84
+ ------------------------------
85
+  (0.3ms) begin transaction
86
+ -------------------------------------------------------------------------
87
+ CodeStatisticsCalculatorTest: test_accumulate_statistics_using_#add_by_io
88
+ -------------------------------------------------------------------------
89
+  (0.0ms) rollback transaction
90
+  (0.0ms) begin transaction
91
+ -----------------------------------------------------------------------
92
+ CodeStatisticsCalculatorTest: test_add_statistics_to_another_using_#add
93
+ -----------------------------------------------------------------------
94
+  (0.0ms) rollback transaction
95
+  (0.0ms) begin transaction
96
+ --------------------------------------------------------------
97
+ CodeStatisticsCalculatorTest: test_calculate_CoffeeScript_LOCs
98
+ --------------------------------------------------------------
99
+  (0.0ms) rollback transaction
100
+  (0.0ms) begin transaction
101
+ ----------------------------------------------------
102
+ CodeStatisticsCalculatorTest: test_calculate_JS_LOCs
103
+ ----------------------------------------------------
104
+  (0.0ms) rollback transaction
105
+  (0.0ms) begin transaction
106
+ ------------------------------------------------------
107
+ CodeStatisticsCalculatorTest: test_calculate_Ruby_LOCs
108
+ ------------------------------------------------------
109
+  (0.0ms) rollback transaction
110
+  (0.0ms) begin transaction
111
+ ---------------------------------------------------------------------------
112
+ CodeStatisticsCalculatorTest: test_calculate_number_of_CoffeeScript_classes
113
+ ---------------------------------------------------------------------------
114
+  (0.0ms) rollback transaction
115
+  (0.0ms) begin transaction
116
+ ---------------------------------------------------------------------------
117
+ CodeStatisticsCalculatorTest: test_calculate_number_of_CoffeeScript_methods
118
+ ---------------------------------------------------------------------------
119
+  (0.0ms) rollback transaction
120
+  (0.0ms) begin transaction
121
+ -----------------------------------------------------------------
122
+ CodeStatisticsCalculatorTest: test_calculate_number_of_JS_methods
123
+ -----------------------------------------------------------------
124
+  (0.0ms) rollback transaction
125
+  (0.0ms) begin transaction
126
+ -------------------------------------------------------------------
127
+ CodeStatisticsCalculatorTest: test_calculate_number_of_Ruby_classes
128
+ -------------------------------------------------------------------
129
+  (0.0ms) rollback transaction
130
+  (0.0ms) begin transaction
131
+ -------------------------------------------------------------------
132
+ CodeStatisticsCalculatorTest: test_calculate_number_of_Ruby_methods
133
+ -------------------------------------------------------------------
134
+  (0.0ms) rollback transaction
135
+  (0.0ms) begin transaction
136
+ -------------------------------------------------------------------------------
137
+ CodeStatisticsCalculatorTest: test_calculate_statistics_using_#add_by_file_path
138
+ -------------------------------------------------------------------------------
139
+  (0.0ms) rollback transaction
140
+  (0.0ms) begin transaction
141
+ -------------------------------------------------------------
142
+ CodeStatisticsCalculatorTest: test_skip_CoffeeScript_comments
143
+ -------------------------------------------------------------
144
+  (0.0ms) rollback transaction
145
+  (0.0ms) begin transaction
146
+ ---------------------------------------------------
147
+ CodeStatisticsCalculatorTest: test_skip_JS_comments
148
+ ---------------------------------------------------
149
+  (0.0ms) rollback transaction
150
+  (0.0ms) begin transaction
151
+ -----------------------------------------------------
152
+ CodeStatisticsCalculatorTest: test_skip_Ruby_comments
153
+ -----------------------------------------------------
154
+  (0.0ms) rollback transaction
155
+  (0.0ms) begin transaction
156
+ ------------------------------
157
+ CodeStatisticsTest: test_truth
158
+ ------------------------------
159
+  (0.0ms) rollback transaction
160
+  (0.3ms) begin transaction
161
+ -------------------------------------------------------------------------
162
+ CodeStatisticsCalculatorTest: test_accumulate_statistics_using_#add_by_io
163
+ -------------------------------------------------------------------------
164
+  (0.0ms) rollback transaction
165
+  (0.0ms) begin transaction
166
+ -----------------------------------------------------------------------
167
+ CodeStatisticsCalculatorTest: test_add_statistics_to_another_using_#add
168
+ -----------------------------------------------------------------------
169
+  (0.0ms) rollback transaction
170
+  (0.0ms) begin transaction
171
+ --------------------------------------------------------------
172
+ CodeStatisticsCalculatorTest: test_calculate_CoffeeScript_LOCs
173
+ --------------------------------------------------------------
174
+  (0.0ms) rollback transaction
175
+  (0.0ms) begin transaction
176
+ ----------------------------------------------------
177
+ CodeStatisticsCalculatorTest: test_calculate_JS_LOCs
178
+ ----------------------------------------------------
179
+  (0.0ms) rollback transaction
180
+  (0.0ms) begin transaction
181
+ ------------------------------------------------------
182
+ CodeStatisticsCalculatorTest: test_calculate_Ruby_LOCs
183
+ ------------------------------------------------------
184
+  (0.0ms) rollback transaction
185
+  (0.0ms) begin transaction
186
+ ---------------------------------------------------------------------------
187
+ CodeStatisticsCalculatorTest: test_calculate_number_of_CoffeeScript_classes
188
+ ---------------------------------------------------------------------------
189
+  (0.0ms) rollback transaction
190
+  (0.0ms) begin transaction
191
+ ---------------------------------------------------------------------------
192
+ CodeStatisticsCalculatorTest: test_calculate_number_of_CoffeeScript_methods
193
+ ---------------------------------------------------------------------------
194
+  (0.0ms) rollback transaction
195
+  (0.0ms) begin transaction
196
+ -----------------------------------------------------------------
197
+ CodeStatisticsCalculatorTest: test_calculate_number_of_JS_methods
198
+ -----------------------------------------------------------------
199
+  (0.0ms) rollback transaction
200
+  (0.0ms) begin transaction
201
+ -------------------------------------------------------------------
202
+ CodeStatisticsCalculatorTest: test_calculate_number_of_Ruby_classes
203
+ -------------------------------------------------------------------
204
+  (0.0ms) rollback transaction
205
+  (0.0ms) begin transaction
206
+ -------------------------------------------------------------------
207
+ CodeStatisticsCalculatorTest: test_calculate_number_of_Ruby_methods
208
+ -------------------------------------------------------------------
209
+  (0.0ms) rollback transaction
210
+  (0.0ms) begin transaction
211
+ -------------------------------------------------------------------------------
212
+ CodeStatisticsCalculatorTest: test_calculate_statistics_using_#add_by_file_path
213
+ -------------------------------------------------------------------------------
214
+  (0.0ms) rollback transaction
215
+  (0.0ms) begin transaction
216
+ -------------------------------------------------------------
217
+ CodeStatisticsCalculatorTest: test_skip_CoffeeScript_comments
218
+ -------------------------------------------------------------
219
+  (0.0ms) rollback transaction
220
+  (0.0ms) begin transaction
221
+ ---------------------------------------------------
222
+ CodeStatisticsCalculatorTest: test_skip_JS_comments
223
+ ---------------------------------------------------
224
+  (0.0ms) rollback transaction
225
+  (0.0ms) begin transaction
226
+ -----------------------------------------------------
227
+ CodeStatisticsCalculatorTest: test_skip_Ruby_comments
228
+ -----------------------------------------------------
229
+  (0.0ms) rollback transaction
230
+  (0.0ms) begin transaction
231
+ ------------------------------
232
+ CodeStatisticsTest: test_truth
233
+ ------------------------------
234
+  (0.0ms) rollback transaction
235
+  (0.3ms) begin transaction
236
+ -------------------------------------------------------------------------
237
+ CodeStatisticsCalculatorTest: test_accumulate_statistics_using_#add_by_io
238
+ -------------------------------------------------------------------------
239
+  (0.0ms) rollback transaction
240
+  (0.0ms) begin transaction
241
+ -----------------------------------------------------------------------
242
+ CodeStatisticsCalculatorTest: test_add_statistics_to_another_using_#add
243
+ -----------------------------------------------------------------------
244
+  (0.0ms) rollback transaction
245
+  (0.0ms) begin transaction
246
+ --------------------------------------------------------------
247
+ CodeStatisticsCalculatorTest: test_calculate_CoffeeScript_LOCs
248
+ --------------------------------------------------------------
249
+  (0.0ms) rollback transaction
250
+  (0.0ms) begin transaction
251
+ ----------------------------------------------------
252
+ CodeStatisticsCalculatorTest: test_calculate_JS_LOCs
253
+ ----------------------------------------------------
254
+  (0.0ms) rollback transaction
255
+  (0.0ms) begin transaction
256
+ ------------------------------------------------------
257
+ CodeStatisticsCalculatorTest: test_calculate_Ruby_LOCs
258
+ ------------------------------------------------------
259
+  (0.0ms) rollback transaction
260
+  (0.0ms) begin transaction
261
+ ---------------------------------------------------------------------------
262
+ CodeStatisticsCalculatorTest: test_calculate_number_of_CoffeeScript_classes
263
+ ---------------------------------------------------------------------------
264
+  (0.0ms) rollback transaction
265
+  (0.0ms) begin transaction
266
+ ---------------------------------------------------------------------------
267
+ CodeStatisticsCalculatorTest: test_calculate_number_of_CoffeeScript_methods
268
+ ---------------------------------------------------------------------------
269
+  (0.0ms) rollback transaction
270
+  (0.0ms) begin transaction
271
+ -----------------------------------------------------------------
272
+ CodeStatisticsCalculatorTest: test_calculate_number_of_JS_methods
273
+ -----------------------------------------------------------------
274
+  (0.0ms) rollback transaction
275
+  (0.0ms) begin transaction
276
+ -------------------------------------------------------------------
277
+ CodeStatisticsCalculatorTest: test_calculate_number_of_Ruby_classes
278
+ -------------------------------------------------------------------
279
+  (0.0ms) rollback transaction
280
+  (0.0ms) begin transaction
281
+ -------------------------------------------------------------------
282
+ CodeStatisticsCalculatorTest: test_calculate_number_of_Ruby_methods
283
+ -------------------------------------------------------------------
284
+  (0.0ms) rollback transaction
285
+  (0.0ms) begin transaction
286
+ -------------------------------------------------------------------------------
287
+ CodeStatisticsCalculatorTest: test_calculate_statistics_using_#add_by_file_path
288
+ -------------------------------------------------------------------------------
289
+  (0.0ms) rollback transaction
290
+  (0.0ms) begin transaction
291
+ -------------------------------------------------------------
292
+ CodeStatisticsCalculatorTest: test_skip_CoffeeScript_comments
293
+ -------------------------------------------------------------
294
+  (0.0ms) rollback transaction
295
+  (0.0ms) begin transaction
296
+ ---------------------------------------------------
297
+ CodeStatisticsCalculatorTest: test_skip_JS_comments
298
+ ---------------------------------------------------
299
+  (0.0ms) rollback transaction
300
+  (0.0ms) begin transaction
301
+ -----------------------------------------------------
302
+ CodeStatisticsCalculatorTest: test_skip_Ruby_comments
303
+ -----------------------------------------------------
304
+  (0.0ms) rollback transaction
305
+  (0.0ms) begin transaction
306
+ ------------------------------
307
+ CodeStatisticsTest: test_truth
308
+ ------------------------------
309
+  (0.0ms) rollback transaction