tabular-text 0.0.2 → 0.1.0

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.
Files changed (72) hide show
  1. checksums.yaml +5 -5
  2. data/lib/tabular-text/handler.rb +2 -2
  3. data/lib/tabular-text/version.rb +1 -1
  4. data/test/dummy/{README.rdoc → README.md} +1 -5
  5. data/test/dummy/Rakefile +2 -2
  6. data/test/dummy/app/assets/config/manifest.js +2 -0
  7. data/test/dummy/app/assets/stylesheets/application.css +7 -5
  8. data/test/dummy/app/channels/application_cable/channel.rb +4 -0
  9. data/test/dummy/app/channels/application_cable/connection.rb +4 -0
  10. data/test/dummy/app/controllers/application_controller.rb +0 -3
  11. data/test/dummy/app/javascript/channels/consumer.js +6 -0
  12. data/test/dummy/app/javascript/channels/index.js +5 -0
  13. data/test/dummy/app/javascript/packs/application.js +17 -0
  14. data/test/dummy/app/jobs/application_job.rb +7 -0
  15. data/test/dummy/app/mailers/application_mailer.rb +4 -0
  16. data/test/dummy/app/models/application_record.rb +3 -0
  17. data/test/dummy/app/views/layouts/application.html.erb +10 -9
  18. data/test/dummy/app/views/layouts/mailer.html.erb +13 -0
  19. data/test/dummy/app/views/layouts/mailer.text.erb +1 -0
  20. data/test/dummy/bin/rails +1 -1
  21. data/test/dummy/bin/setup +36 -0
  22. data/test/dummy/bin/yarn +11 -0
  23. data/test/dummy/config.ru +2 -1
  24. data/test/dummy/config/application.rb +9 -16
  25. data/test/dummy/config/boot.rb +2 -4
  26. data/test/dummy/config/cable.yml +10 -0
  27. data/test/dummy/config/credentials.yml.enc +1 -0
  28. data/test/dummy/config/database.yml +25 -0
  29. data/test/dummy/config/environment.rb +2 -2
  30. data/test/dummy/config/environments/development.rb +40 -4
  31. data/test/dummy/config/environments/production.rb +64 -32
  32. data/test/dummy/config/environments/test.rb +22 -9
  33. data/test/dummy/config/initializers/application_controller_renderer.rb +8 -0
  34. data/test/dummy/config/initializers/assets.rb +14 -0
  35. data/test/dummy/config/initializers/content_security_policy.rb +30 -0
  36. data/test/dummy/config/initializers/cookies_serializer.rb +5 -0
  37. data/test/dummy/config/initializers/mime_types.rb +0 -1
  38. data/test/dummy/config/initializers/wrap_parameters.rb +2 -2
  39. data/test/dummy/config/locales/en.yml +11 -1
  40. data/test/dummy/config/master.key +1 -0
  41. data/test/dummy/config/puma.rb +38 -0
  42. data/test/dummy/config/routes.rb +1 -55
  43. data/test/dummy/config/spring.rb +6 -0
  44. data/test/dummy/config/storage.yml +34 -0
  45. data/test/dummy/db/seeds.rb +3 -3
  46. data/test/dummy/db/test.sqlite3 +0 -0
  47. data/test/dummy/log/test.log +1066 -202
  48. data/test/dummy/package.json +11 -0
  49. data/test/dummy/public/404.html +24 -15
  50. data/test/dummy/public/422.html +24 -15
  51. data/test/dummy/public/500.html +23 -14
  52. data/test/dummy/public/apple-touch-icon-precomposed.png +0 -0
  53. data/test/dummy/public/apple-touch-icon.png +0 -0
  54. data/test/dummy/public/robots.txt +1 -5
  55. data/test/dummy/test/application_system_test_case.rb +5 -0
  56. data/test/dummy/test/channels/application_cable/connection_test.rb +11 -0
  57. data/test/dummy/test/test_helper.rb +4 -6
  58. data/test/dummy/tmp/development_secret.txt +1 -0
  59. data/test/integration/navigation_test.rb +6 -6
  60. data/test/test_helper.rb +2 -1
  61. metadata +104 -66
  62. data/test/dummy/Gemfile +0 -45
  63. data/test/dummy/Gemfile.lock +0 -119
  64. data/test/dummy/app/assets/javascripts/application.js +0 -16
  65. data/test/dummy/app/views/home/index.txt.tab +0 -3
  66. data/test/dummy/bin/bundle +0 -3
  67. data/test/dummy/config/initializers/secret_token.rb +0 -12
  68. data/test/dummy/config/initializers/session_store.rb +0 -3
  69. data/test/dummy/db/development.sqlite3 +0 -0
  70. data/test/dummy/db/schema.rb +0 -16
  71. data/test/dummy/log/development.log +0 -3
  72. data/test/dummy/script/rails +0 -6
@@ -1,24 +1,29 @@
1
- Dummy::Application.configure do
1
+ # The test environment is used exclusively to run your application's
2
+ # test suite. You never need to work with it otherwise. Remember that
3
+ # your test database is "scratch space" for the test suite and is wiped
4
+ # and recreated between test runs. Don't rely on the data there!
5
+
6
+ Rails.application.configure do
2
7
  # Settings specified here will take precedence over those in config/application.rb.
3
8
 
4
- # The test environment is used exclusively to run your application's
5
- # test suite. You never need to work with it otherwise. Remember that
6
- # your test database is "scratch space" for the test suite and is wiped
7
- # and recreated between test runs. Don't rely on the data there!
8
- config.cache_classes = true
9
+ config.cache_classes = false
10
+ config.action_view.cache_template_loading = true
9
11
 
10
12
  # Do not eager load code on boot. This avoids loading your whole application
11
13
  # just for the purpose of running a single test. If you are using a tool that
12
14
  # preloads Rails for running tests, you may have to set it to true.
13
15
  config.eager_load = false
14
16
 
15
- # Configure static asset server for tests with Cache-Control for performance.
16
- config.serve_static_assets = true
17
- config.static_cache_control = "public, max-age=3600"
17
+ # Configure public file server for tests with Cache-Control for performance.
18
+ config.public_file_server.enabled = true
19
+ config.public_file_server.headers = {
20
+ 'Cache-Control' => "public, max-age=#{1.hour.to_i}"
21
+ }
18
22
 
19
23
  # Show full error reports and disable caching.
20
24
  config.consider_all_requests_local = true
21
25
  config.action_controller.perform_caching = false
26
+ config.cache_store = :null_store
22
27
 
23
28
  # Raise exceptions instead of rendering exception templates.
24
29
  config.action_dispatch.show_exceptions = false
@@ -26,6 +31,11 @@ Dummy::Application.configure do
26
31
  # Disable request forgery protection in test environment.
27
32
  config.action_controller.allow_forgery_protection = false
28
33
 
34
+ # Store uploaded files on the local file system in a temporary directory.
35
+ config.active_storage.service = :test
36
+
37
+ config.action_mailer.perform_caching = false
38
+
29
39
  # Tell Action Mailer not to deliver emails to the real world.
30
40
  # The :test delivery method accumulates sent emails in the
31
41
  # ActionMailer::Base.deliveries array.
@@ -33,4 +43,7 @@ Dummy::Application.configure do
33
43
 
34
44
  # Print deprecation notices to the stderr.
35
45
  config.active_support.deprecation = :stderr
46
+
47
+ # Raises error for missing translations.
48
+ # config.action_view.raise_on_missing_translations = true
36
49
  end
@@ -0,0 +1,8 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ # ActiveSupport::Reloader.to_prepare do
4
+ # ApplicationController.renderer.defaults.merge!(
5
+ # http_host: 'example.org',
6
+ # https: false
7
+ # )
8
+ # end
@@ -0,0 +1,14 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ # Version of your assets, change this if you want to expire all your assets.
4
+ Rails.application.config.assets.version = '1.0'
5
+
6
+ # Add additional assets to the asset load path.
7
+ # Rails.application.config.assets.paths << Emoji.images_path
8
+ # Add Yarn node_modules folder to the asset load path.
9
+ Rails.application.config.assets.paths << Rails.root.join('node_modules')
10
+
11
+ # Precompile additional assets.
12
+ # application.js, application.css, and all non-JS/CSS in the app/assets
13
+ # folder are already added.
14
+ # Rails.application.config.assets.precompile += %w( admin.js admin.css )
@@ -0,0 +1,30 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ # Define an application-wide content security policy
4
+ # For further information see the following documentation
5
+ # https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Content-Security-Policy
6
+
7
+ # Rails.application.config.content_security_policy do |policy|
8
+ # policy.default_src :self, :https
9
+ # policy.font_src :self, :https, :data
10
+ # policy.img_src :self, :https, :data
11
+ # policy.object_src :none
12
+ # policy.script_src :self, :https
13
+ # policy.style_src :self, :https
14
+ # # If you are using webpack-dev-server then specify webpack-dev-server host
15
+ # policy.connect_src :self, :https, "http://localhost:3035", "ws://localhost:3035" if Rails.env.development?
16
+
17
+ # # Specify URI for violation reports
18
+ # # policy.report_uri "/csp-violation-report-endpoint"
19
+ # end
20
+
21
+ # If you are using UJS then enable automatic nonce generation
22
+ # Rails.application.config.content_security_policy_nonce_generator = -> request { SecureRandom.base64(16) }
23
+
24
+ # Set the nonce only to specific directives
25
+ # Rails.application.config.content_security_policy_nonce_directives = %w(script-src)
26
+
27
+ # Report CSP violations to a specified URI
28
+ # For further information see the following documentation:
29
+ # https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Content-Security-Policy-Report-Only
30
+ # Rails.application.config.content_security_policy_report_only = true
@@ -0,0 +1,5 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ # Specify a serializer for the signed and encrypted cookie jars.
4
+ # Valid options are :json, :marshal, and :hybrid.
5
+ Rails.application.config.action_dispatch.cookies_serializer = :json
@@ -2,4 +2,3 @@
2
2
 
3
3
  # Add new mime types for use in respond_to blocks:
4
4
  # Mime::Type.register "text/richtext", :rtf
5
- # Mime::Type.register_alias "text/html", :iphone
@@ -5,10 +5,10 @@
5
5
 
6
6
  # Enable parameter wrapping for JSON. You can disable this by setting :format to an empty array.
7
7
  ActiveSupport.on_load(:action_controller) do
8
- wrap_parameters format: [:json] if respond_to?(:wrap_parameters)
8
+ wrap_parameters format: [:json]
9
9
  end
10
10
 
11
11
  # To enable root element in JSON for ActiveRecord objects.
12
12
  # ActiveSupport.on_load(:active_record) do
13
- # self.include_root_in_json = true
13
+ # self.include_root_in_json = true
14
14
  # end
@@ -16,8 +16,18 @@
16
16
  #
17
17
  # This would use the information in config/locales/es.yml.
18
18
  #
19
+ # The following keys must be escaped otherwise they will not be retrieved by
20
+ # the default I18n backend:
21
+ #
22
+ # true, false, on, off, yes, no
23
+ #
24
+ # Instead, surround them with single quotes.
25
+ #
26
+ # en:
27
+ # 'true': 'foo'
28
+ #
19
29
  # To learn more, please read the Rails Internationalization guide
20
- # available at http://guides.rubyonrails.org/i18n.html.
30
+ # available at https://guides.rubyonrails.org/i18n.html.
21
31
 
22
32
  en:
23
33
  hello: "Hello world"
@@ -0,0 +1 @@
1
+ 0b1172ab5ad4d6689d6080a870bce0c4
@@ -0,0 +1,38 @@
1
+ # Puma can serve each request in a thread from an internal thread pool.
2
+ # The `threads` method setting takes two numbers: a minimum and maximum.
3
+ # Any libraries that use thread pools should be configured to match
4
+ # the maximum value specified for Puma. Default is set to 5 threads for minimum
5
+ # and maximum; this matches the default thread size of Active Record.
6
+ #
7
+ max_threads_count = ENV.fetch("RAILS_MAX_THREADS") { 5 }
8
+ min_threads_count = ENV.fetch("RAILS_MIN_THREADS") { max_threads_count }
9
+ threads min_threads_count, max_threads_count
10
+
11
+ # Specifies the `port` that Puma will listen on to receive requests; default is 3000.
12
+ #
13
+ port ENV.fetch("PORT") { 3000 }
14
+
15
+ # Specifies the `environment` that Puma will run in.
16
+ #
17
+ environment ENV.fetch("RAILS_ENV") { "development" }
18
+
19
+ # Specifies the `pidfile` that Puma will use.
20
+ pidfile ENV.fetch("PIDFILE") { "tmp/pids/server.pid" }
21
+
22
+ # Specifies the number of `workers` to boot in clustered mode.
23
+ # Workers are forked web server processes. If using threads and workers together
24
+ # the concurrency of the application would be max `threads` * `workers`.
25
+ # Workers do not work on JRuby or Windows (both of which do not support
26
+ # processes).
27
+ #
28
+ # workers ENV.fetch("WEB_CONCURRENCY") { 2 }
29
+
30
+ # Use the `preload_app!` method when specifying a `workers` number.
31
+ # This directive tells Puma to first boot the application and load code
32
+ # before forking the application. This takes advantage of Copy On Write
33
+ # process behavior so workers use less memory.
34
+ #
35
+ # preload_app!
36
+
37
+ # Allow puma to be restarted by `rails restart` command.
38
+ plugin :tmp_restart
@@ -1,57 +1,3 @@
1
- Dummy::Application.routes.draw do
1
+ Rails.application.routes.draw do
2
2
  root to: 'home#index'
3
- # The priority is based upon order of creation: first created -> highest priority.
4
- # See how all your routes lay out with "rake routes".
5
-
6
- # You can have the root of your site routed with "root"
7
- # root 'welcome#index'
8
-
9
- # Example of regular route:
10
- # get 'products/:id' => 'catalog#view'
11
-
12
- # Example of named route that can be invoked with purchase_url(id: product.id)
13
- # get 'products/:id/purchase' => 'catalog#purchase', as: :purchase
14
-
15
- # Example resource route (maps HTTP verbs to controller actions automatically):
16
- # resources :products
17
-
18
- # Example resource route with options:
19
- # resources :products do
20
- # member do
21
- # get 'short'
22
- # post 'toggle'
23
- # end
24
- #
25
- # collection do
26
- # get 'sold'
27
- # end
28
- # end
29
-
30
- # Example resource route with sub-resources:
31
- # resources :products do
32
- # resources :comments, :sales
33
- # resource :seller
34
- # end
35
-
36
- # Example resource route with more complex sub-resources:
37
- # resources :products do
38
- # resources :comments
39
- # resources :sales do
40
- # get 'recent', on: :collection
41
- # end
42
- # end
43
-
44
- # Example resource route with concerns:
45
- # concern :toggleable do
46
- # post 'toggle'
47
- # end
48
- # resources :posts, concerns: :toggleable
49
- # resources :photos, concerns: :toggleable
50
-
51
- # Example resource route within a namespace:
52
- # namespace :admin do
53
- # # Directs /admin/products/* to Admin::ProductsController
54
- # # (app/controllers/admin/products_controller.rb)
55
- # resources :products
56
- # end
57
3
  end
@@ -0,0 +1,6 @@
1
+ Spring.watch(
2
+ ".ruby-version",
3
+ ".rbenv-vars",
4
+ "tmp/restart.txt",
5
+ "tmp/caching-dev.txt"
6
+ )
@@ -0,0 +1,34 @@
1
+ test:
2
+ service: Disk
3
+ root: <%= Rails.root.join("tmp/storage") %>
4
+
5
+ local:
6
+ service: Disk
7
+ root: <%= Rails.root.join("storage") %>
8
+
9
+ # Use rails credentials:edit to set the AWS secrets (as aws:access_key_id|secret_access_key)
10
+ # amazon:
11
+ # service: S3
12
+ # access_key_id: <%= Rails.application.credentials.dig(:aws, :access_key_id) %>
13
+ # secret_access_key: <%= Rails.application.credentials.dig(:aws, :secret_access_key) %>
14
+ # region: us-east-1
15
+ # bucket: your_own_bucket
16
+
17
+ # Remember not to checkin your GCS keyfile to a repository
18
+ # google:
19
+ # service: GCS
20
+ # project: your_project
21
+ # credentials: <%= Rails.root.join("path/to/gcs.keyfile") %>
22
+ # bucket: your_own_bucket
23
+
24
+ # Use rails credentials:edit to set the Azure Storage secret (as azure_storage:storage_access_key)
25
+ # microsoft:
26
+ # service: AzureStorage
27
+ # storage_account_name: your_account_name
28
+ # storage_access_key: <%= Rails.application.credentials.dig(:azure_storage, :storage_access_key) %>
29
+ # container: your_container_name
30
+
31
+ # mirror:
32
+ # service: Mirror
33
+ # primary: local
34
+ # mirrors: [ amazon, google, microsoft ]
@@ -1,7 +1,7 @@
1
1
  # This file should contain all the record creation needed to seed the database with its default values.
2
- # The data can then be loaded with the rake db:seed (or created alongside the db with db:setup).
2
+ # The data can then be loaded with the rails db:seed command (or created alongside the database with db:setup).
3
3
  #
4
4
  # Examples:
5
5
  #
6
- # cities = City.create([{ name: 'Chicago' }, { name: 'Copenhagen' }])
7
- # Mayor.create(name: 'Emanuel', city: cities.first)
6
+ # movies = Movie.create([{ name: 'Star Wars' }, { name: 'Lord of the Rings' }])
7
+ # Character.create(name: 'Luke', movie: movies.first)
Binary file
@@ -1,343 +1,1207 @@
1
-  (0.3ms) begin transaction
2
-
3
-
4
- Started GET "/?format=text" for 127.0.0.1 at 2013-08-28 16:00:46 -0400
1
+  (2.0ms) SELECT sqlite_version(*)
2
+  (0.1ms) begin transaction
3
+ ------------------------------------------------------------------------
4
+ TabularTextFieldTest: test_nil_with_length_pads_with_spaces_to_the_right
5
+ ------------------------------------------------------------------------
6
+  (0.1ms) rollback transaction
7
+  (0.1ms) begin transaction
8
+ ------------------------------------------------
9
+ TabularTextFieldTest: test_date_returns_YYYYMMDD
10
+ ------------------------------------------------
11
+  (0.0ms) rollback transaction
12
+  (0.0ms) begin transaction
13
+ ------------------------------------------------
14
+ TabularTextFieldTest: test_time_returns_YYYYMMDD
15
+ ------------------------------------------------
16
+  (0.0ms) rollback transaction
17
+  (0.0ms) begin transaction
18
+ ---------------------------------------------------------------
19
+ TabularTextFieldTest: test_number_without_length_returns_number
20
+ ---------------------------------------------------------------
21
+  (0.0ms) rollback transaction
22
+  (0.0ms) begin transaction
23
+ ---------------------------------------------------------------
24
+ TabularTextFieldTest: test_string_without_length_returns_string
25
+ ---------------------------------------------------------------
26
+  (0.1ms) rollback transaction
27
+  (0.0ms) begin transaction
28
+ -----------------------------------
29
+ TabularTextFieldTest: test_is_ascii
30
+ -----------------------------------
31
+  (0.0ms) rollback transaction
32
+  (0.0ms) begin transaction
33
+ -------------------------------------------------------------
34
+ TabularTextFieldTest: test_string_too_big_for_length_gets_cut
35
+ -------------------------------------------------------------
36
+  (0.0ms) rollback transaction
37
+  (0.0ms) begin transaction
38
+ -------------------------------------------------------------------------
39
+ TabularTextFieldTest: test_number_with_length_pads_with_zeros_to_the_left
40
+ -------------------------------------------------------------------------
41
+  (0.0ms) rollback transaction
42
+  (0.1ms) begin transaction
43
+ ---------------------------------------------------------------------------
44
+ TabularTextFieldTest: test_string_with_length_pads_with_spaces_to_the_right
45
+ ---------------------------------------------------------------------------
46
+  (0.0ms) rollback transaction
47
+  (0.0ms) begin transaction
48
+ -------------------------------------------------------
49
+ TabularTextFieldTest: test_special_chars_get_normalized
50
+ -------------------------------------------------------
51
+  (0.0ms) rollback transaction
52
+  (0.0ms) begin transaction
53
+ ------------------------------------------
54
+ NavigationTest: test_renders_as_attachment
55
+ ------------------------------------------
56
+  (0.0ms) rollback transaction
57
+  (0.1ms) begin transaction
58
+ ------------------------------------------
59
+ NavigationTest: test_renders_as_text/plain
60
+ ------------------------------------------
61
+  (0.0ms) rollback transaction
62
+  (0.1ms) begin transaction
63
+ ------------------------------------------
64
+ NavigationTest: test_renders_using_tabular
65
+ ------------------------------------------
66
+  (0.0ms) rollback transaction
67
+  (0.1ms) begin transaction
68
+ --------------------------------------
69
+ TabularTextLineTest: test_joins_fields
70
+ --------------------------------------
71
+  (0.0ms) rollback transaction
72
+  (0.0ms) begin transaction
73
+ ---------------------------------------------------------
74
+ TabularTextLineTest: test_creates_with_content_and_length
75
+ ---------------------------------------------------------
76
+  (0.0ms) rollback transaction
77
+  (0.0ms) begin transaction
78
+ ---------------------------------------------------
79
+ TabularTextBuilderTest: test_joins_lines_with_CR+LF
80
+ ---------------------------------------------------
81
+  (0.0ms) rollback transaction
82
+  (0.0ms) begin transaction
83
+ ------------------------------------------
84
+ TabularTextBuilderTest: test_returns_ascii
85
+ ------------------------------------------
86
+  (0.0ms) rollback transaction
87
+  (1.9ms) SELECT sqlite_version(*)
88
+  (1.9ms) SELECT sqlite_version(*)
89
+  (0.1ms) begin transaction
90
+ ---------------------------------------------------------
91
+ TabularTextLineTest: test_creates_with_content_and_length
92
+ ---------------------------------------------------------
93
+  (0.1ms) rollback transaction
94
+  (0.0ms) begin transaction
95
+ --------------------------------------
96
+ TabularTextLineTest: test_joins_fields
97
+ --------------------------------------
98
+  (0.0ms) rollback transaction
99
+  (0.0ms) begin transaction
100
+ ---------------------------------------------------
101
+ TabularTextBuilderTest: test_joins_lines_with_CR+LF
102
+ ---------------------------------------------------
103
+  (0.0ms) rollback transaction
104
+  (0.0ms) begin transaction
105
+ ------------------------------------------
106
+ TabularTextBuilderTest: test_returns_ascii
107
+ ------------------------------------------
108
+  (0.1ms) rollback transaction
109
+  (0.0ms) begin transaction
110
+ ------------------------------------------------
111
+ TabularTextFieldTest: test_time_returns_YYYYMMDD
112
+ ------------------------------------------------
113
+  (0.0ms) rollback transaction
114
+  (0.0ms) begin transaction
115
+ -------------------------------------------------------------------------
116
+ TabularTextFieldTest: test_number_with_length_pads_with_zeros_to_the_left
117
+ -------------------------------------------------------------------------
118
+  (0.0ms) rollback transaction
119
+  (0.0ms) begin transaction
120
+ -----------------------------------
121
+ TabularTextFieldTest: test_is_ascii
122
+ -----------------------------------
123
+  (0.0ms) rollback transaction
124
+  (0.0ms) begin transaction
125
+ ---------------------------------------------------------------
126
+ TabularTextFieldTest: test_number_without_length_returns_number
127
+ ---------------------------------------------------------------
128
+  (0.0ms) rollback transaction
129
+  (0.0ms) begin transaction
130
+ ---------------------------------------------------------------------------
131
+ TabularTextFieldTest: test_string_with_length_pads_with_spaces_to_the_right
132
+ ---------------------------------------------------------------------------
133
+  (0.0ms) rollback transaction
134
+  (0.0ms) begin transaction
135
+ -------------------------------------------------------
136
+ TabularTextFieldTest: test_special_chars_get_normalized
137
+ -------------------------------------------------------
138
+  (0.0ms) rollback transaction
139
+  (0.0ms) begin transaction
140
+ ------------------------------------------------
141
+ TabularTextFieldTest: test_date_returns_YYYYMMDD
142
+ ------------------------------------------------
143
+  (0.0ms) rollback transaction
144
+  (0.0ms) begin transaction
145
+ ---------------------------------------------------------------
146
+ TabularTextFieldTest: test_string_without_length_returns_string
147
+ ---------------------------------------------------------------
148
+  (0.0ms) rollback transaction
149
+  (0.0ms) begin transaction
150
+ -------------------------------------------------------------
151
+ TabularTextFieldTest: test_string_too_big_for_length_gets_cut
152
+ -------------------------------------------------------------
153
+  (0.0ms) rollback transaction
154
+  (0.0ms) begin transaction
155
+ ------------------------------------------------------------------------
156
+ TabularTextFieldTest: test_nil_with_length_pads_with_spaces_to_the_right
157
+ ------------------------------------------------------------------------
158
+  (0.0ms) rollback transaction
159
+  (0.1ms) begin transaction
160
+ ------------------------------------------
161
+ NavigationTest: test_renders_as_text/plain
162
+ ------------------------------------------
163
+  (0.1ms) rollback transaction
164
+  (0.1ms) begin transaction
165
+ ------------------------------------------
166
+ NavigationTest: test_renders_using_tabular
167
+ ------------------------------------------
168
+  (0.0ms) rollback transaction
169
+  (0.1ms) begin transaction
170
+ ------------------------------------------
171
+ NavigationTest: test_renders_as_attachment
172
+ ------------------------------------------
173
+  (0.1ms) rollback transaction
174
+  (0.8ms) SELECT sqlite_version(*)
175
+  (0.0ms) begin transaction
176
+ ------------------------------------------
177
+ NavigationTest: test_renders_as_text/plain
178
+ ------------------------------------------
179
+  (0.0ms) rollback transaction
180
+  (0.0ms) begin transaction
181
+ ------------------------------------------
182
+ NavigationTest: test_renders_using_tabular
183
+ ------------------------------------------
184
+  (0.0ms) rollback transaction
185
+  (0.1ms) begin transaction
186
+ ------------------------------------------
187
+ NavigationTest: test_renders_as_attachment
188
+ ------------------------------------------
189
+  (0.0ms) rollback transaction
190
+  (0.0ms) begin transaction
191
+ ---------------------------------------------------
192
+ TabularTextBuilderTest: test_joins_lines_with_CR+LF
193
+ ---------------------------------------------------
194
+  (0.1ms) rollback transaction
195
+  (0.0ms) begin transaction
196
+ ------------------------------------------
197
+ TabularTextBuilderTest: test_returns_ascii
198
+ ------------------------------------------
199
+  (0.0ms) rollback transaction
200
+  (0.0ms) begin transaction
201
+ ---------------------------------------------------------
202
+ TabularTextLineTest: test_creates_with_content_and_length
203
+ ---------------------------------------------------------
204
+  (0.0ms) rollback transaction
205
+  (0.1ms) begin transaction
206
+ --------------------------------------
207
+ TabularTextLineTest: test_joins_fields
208
+ --------------------------------------
209
+  (0.0ms) rollback transaction
210
+  (0.0ms) begin transaction
211
+ ---------------------------------------------------------------
212
+ TabularTextFieldTest: test_number_without_length_returns_number
213
+ ---------------------------------------------------------------
214
+  (0.0ms) rollback transaction
215
+  (0.0ms) begin transaction
216
+ -------------------------------------------------------
217
+ TabularTextFieldTest: test_special_chars_get_normalized
218
+ -------------------------------------------------------
219
+  (0.0ms) rollback transaction
220
+  (0.0ms) begin transaction
221
+ -----------------------------------
222
+ TabularTextFieldTest: test_is_ascii
223
+ -----------------------------------
224
+  (0.0ms) rollback transaction
225
+  (0.0ms) begin transaction
226
+ -------------------------------------------------------------------------
227
+ TabularTextFieldTest: test_number_with_length_pads_with_zeros_to_the_left
228
+ -------------------------------------------------------------------------
229
+  (0.0ms) rollback transaction
230
+  (0.0ms) begin transaction
231
+ ---------------------------------------------------------------
232
+ TabularTextFieldTest: test_string_without_length_returns_string
233
+ ---------------------------------------------------------------
234
+  (0.0ms) rollback transaction
235
+  (0.0ms) begin transaction
236
+ ------------------------------------------------------------------------
237
+ TabularTextFieldTest: test_nil_with_length_pads_with_spaces_to_the_right
238
+ ------------------------------------------------------------------------
239
+  (0.0ms) rollback transaction
240
+  (0.0ms) begin transaction
241
+ ------------------------------------------------
242
+ TabularTextFieldTest: test_date_returns_YYYYMMDD
243
+ ------------------------------------------------
244
+  (0.0ms) rollback transaction
245
+  (0.0ms) begin transaction
246
+ ---------------------------------------------------------------------------
247
+ TabularTextFieldTest: test_string_with_length_pads_with_spaces_to_the_right
248
+ ---------------------------------------------------------------------------
249
+  (0.0ms) rollback transaction
250
+  (0.0ms) begin transaction
251
+ ------------------------------------------------
252
+ TabularTextFieldTest: test_time_returns_YYYYMMDD
253
+ ------------------------------------------------
254
+  (0.0ms) rollback transaction
255
+  (0.0ms) begin transaction
256
+ -------------------------------------------------------------
257
+ TabularTextFieldTest: test_string_too_big_for_length_gets_cut
258
+ -------------------------------------------------------------
259
+  (0.0ms) rollback transaction
260
+  (0.8ms) SELECT sqlite_version(*)
261
+  (0.0ms) begin transaction
262
+ ---------------------------------------------------
263
+ TabularTextBuilderTest: test_joins_lines_with_CR+LF
264
+ ---------------------------------------------------
265
+  (0.0ms) rollback transaction
266
+  (0.0ms) begin transaction
267
+ ------------------------------------------
268
+ TabularTextBuilderTest: test_returns_ascii
269
+ ------------------------------------------
270
+  (0.0ms) rollback transaction
271
+  (0.1ms) begin transaction
272
+ ------------------------------------------
273
+ NavigationTest: test_renders_as_text/plain
274
+ ------------------------------------------
275
+ Started GET "/" for 127.0.0.1 at 2020-12-06 23:53:55 -0300
276
+  (0.0ms) rollback transaction
277
+  (0.0ms) begin transaction
278
+ ------------------------------------------
279
+ NavigationTest: test_renders_as_attachment
280
+ ------------------------------------------
281
+ Started GET "/" for 127.0.0.1 at 2020-12-06 23:53:55 -0300
282
+  (0.0ms) rollback transaction
283
+  (0.1ms) begin transaction
284
+ ------------------------------------------
285
+ NavigationTest: test_renders_using_tabular
286
+ ------------------------------------------
287
+ Started GET "/" for 127.0.0.1 at 2020-12-06 23:53:55 -0300
288
+  (0.0ms) rollback transaction
289
+  (0.0ms) begin transaction
290
+ ------------------------------------------------
291
+ TabularTextFieldTest: test_date_returns_YYYYMMDD
292
+ ------------------------------------------------
293
+  (0.0ms) rollback transaction
294
+  (0.0ms) begin transaction
295
+ -----------------------------------
296
+ TabularTextFieldTest: test_is_ascii
297
+ -----------------------------------
298
+  (0.0ms) rollback transaction
299
+  (0.0ms) begin transaction
300
+ -------------------------------------------------------
301
+ TabularTextFieldTest: test_special_chars_get_normalized
302
+ -------------------------------------------------------
303
+  (0.0ms) rollback transaction
304
+  (0.0ms) begin transaction
305
+ -------------------------------------------------------------------------
306
+ TabularTextFieldTest: test_number_with_length_pads_with_zeros_to_the_left
307
+ -------------------------------------------------------------------------
308
+  (0.0ms) rollback transaction
309
+  (0.0ms) begin transaction
310
+ ------------------------------------------------------------------------
311
+ TabularTextFieldTest: test_nil_with_length_pads_with_spaces_to_the_right
312
+ ------------------------------------------------------------------------
313
+  (0.0ms) rollback transaction
314
+  (0.0ms) begin transaction
315
+ ---------------------------------------------------------------
316
+ TabularTextFieldTest: test_number_without_length_returns_number
317
+ ---------------------------------------------------------------
318
+  (0.0ms) rollback transaction
319
+  (0.0ms) begin transaction
320
+ ------------------------------------------------
321
+ TabularTextFieldTest: test_time_returns_YYYYMMDD
322
+ ------------------------------------------------
323
+  (0.0ms) rollback transaction
324
+  (0.0ms) begin transaction
325
+ -------------------------------------------------------------
326
+ TabularTextFieldTest: test_string_too_big_for_length_gets_cut
327
+ -------------------------------------------------------------
328
+  (0.0ms) rollback transaction
329
+  (0.0ms) begin transaction
330
+ ---------------------------------------------------------------------------
331
+ TabularTextFieldTest: test_string_with_length_pads_with_spaces_to_the_right
332
+ ---------------------------------------------------------------------------
333
+  (0.0ms) rollback transaction
334
+  (0.0ms) begin transaction
335
+ ---------------------------------------------------------------
336
+ TabularTextFieldTest: test_string_without_length_returns_string
337
+ ---------------------------------------------------------------
338
+  (0.0ms) rollback transaction
339
+  (0.0ms) begin transaction
340
+ --------------------------------------
341
+ TabularTextLineTest: test_joins_fields
342
+ --------------------------------------
343
+  (0.0ms) rollback transaction
344
+  (0.0ms) begin transaction
345
+ ---------------------------------------------------------
346
+ TabularTextLineTest: test_creates_with_content_and_length
347
+ ---------------------------------------------------------
348
+  (0.0ms) rollback transaction
349
+  (2.3ms) SELECT sqlite_version(*)
350
+  (0.0ms) begin transaction
351
+ ---------------------------------------------------------
352
+ TabularTextLineTest: test_creates_with_content_and_length
353
+ ---------------------------------------------------------
354
+  (0.1ms) rollback transaction
355
+  (0.0ms) begin transaction
356
+ --------------------------------------
357
+ TabularTextLineTest: test_joins_fields
358
+ --------------------------------------
359
+  (0.0ms) rollback transaction
360
+  (0.0ms) begin transaction
361
+ ------------------------------------------------------------------------
362
+ TabularTextFieldTest: test_nil_with_length_pads_with_spaces_to_the_right
363
+ ------------------------------------------------------------------------
364
+  (0.0ms) rollback transaction
365
+  (0.0ms) begin transaction
366
+ ---------------------------------------------------------------
367
+ TabularTextFieldTest: test_number_without_length_returns_number
368
+ ---------------------------------------------------------------
369
+  (0.0ms) rollback transaction
370
+  (0.0ms) begin transaction
371
+ -------------------------------------------------------
372
+ TabularTextFieldTest: test_special_chars_get_normalized
373
+ -------------------------------------------------------
374
+  (0.0ms) rollback transaction
375
+  (0.0ms) begin transaction
376
+ ---------------------------------------------------------------------------
377
+ TabularTextFieldTest: test_string_with_length_pads_with_spaces_to_the_right
378
+ ---------------------------------------------------------------------------
379
+  (0.0ms) rollback transaction
380
+  (0.0ms) begin transaction
381
+ ------------------------------------------------
382
+ TabularTextFieldTest: test_time_returns_YYYYMMDD
383
+ ------------------------------------------------
384
+  (0.0ms) rollback transaction
385
+  (0.0ms) begin transaction
386
+ -------------------------------------------------------------------------
387
+ TabularTextFieldTest: test_number_with_length_pads_with_zeros_to_the_left
388
+ -------------------------------------------------------------------------
389
+  (0.0ms) rollback transaction
390
+  (0.0ms) begin transaction
391
+ ------------------------------------------------
392
+ TabularTextFieldTest: test_date_returns_YYYYMMDD
393
+ ------------------------------------------------
394
+  (0.0ms) rollback transaction
395
+  (0.0ms) begin transaction
396
+ -------------------------------------------------------------
397
+ TabularTextFieldTest: test_string_too_big_for_length_gets_cut
398
+ -------------------------------------------------------------
399
+  (0.0ms) rollback transaction
400
+  (0.0ms) begin transaction
401
+ ---------------------------------------------------------------
402
+ TabularTextFieldTest: test_string_without_length_returns_string
403
+ ---------------------------------------------------------------
404
+  (0.0ms) rollback transaction
405
+  (0.0ms) begin transaction
406
+ -----------------------------------
407
+ TabularTextFieldTest: test_is_ascii
408
+ -----------------------------------
409
+  (0.0ms) rollback transaction
410
+  (0.0ms) begin transaction
411
+ ---------------------------------------------------
412
+ TabularTextBuilderTest: test_joins_lines_with_CR+LF
413
+ ---------------------------------------------------
414
+  (0.4ms) rollback transaction
415
+  (0.3ms) begin transaction
416
+ ------------------------------------------
417
+ TabularTextBuilderTest: test_returns_ascii
418
+ ------------------------------------------
419
+  (0.1ms) rollback transaction
420
+  (0.0ms) begin transaction
421
+ ------------------------------------------
422
+ NavigationTest: test_renders_as_attachment
423
+ ------------------------------------------
424
+ Started GET "/" for 127.0.0.1 at 2020-12-07 23:38:34 -0300
425
+  (0.0ms) rollback transaction
426
+  (0.0ms) begin transaction
427
+ ------------------------------------------
428
+ NavigationTest: test_renders_as_text/plain
429
+ ------------------------------------------
430
+ Started GET "/" for 127.0.0.1 at 2020-12-07 23:38:34 -0300
431
+  (0.1ms) rollback transaction
432
+  (0.0ms) begin transaction
433
+ ------------------------------------------
434
+ NavigationTest: test_renders_using_tabular
435
+ ------------------------------------------
436
+ Started GET "/" for 127.0.0.1 at 2020-12-07 23:38:34 -0300
437
+  (0.0ms) rollback transaction
438
+  (0.8ms) SELECT sqlite_version(*)
439
+  (0.0ms) begin transaction
440
+ ---------------------------------------------------------
441
+ TabularTextLineTest: test_creates_with_content_and_length
442
+ ---------------------------------------------------------
443
+  (0.1ms) rollback transaction
444
+  (0.0ms) begin transaction
445
+ --------------------------------------
446
+ TabularTextLineTest: test_joins_fields
447
+ --------------------------------------
448
+  (0.0ms) rollback transaction
449
+  (0.0ms) begin transaction
450
+ ---------------------------------------------------------------
451
+ TabularTextFieldTest: test_string_without_length_returns_string
452
+ ---------------------------------------------------------------
453
+  (0.0ms) rollback transaction
454
+  (0.0ms) begin transaction
455
+ ------------------------------------------------
456
+ TabularTextFieldTest: test_time_returns_YYYYMMDD
457
+ ------------------------------------------------
458
+  (0.0ms) rollback transaction
459
+  (0.0ms) begin transaction
460
+ ------------------------------------------------
461
+ TabularTextFieldTest: test_date_returns_YYYYMMDD
462
+ ------------------------------------------------
463
+  (0.0ms) rollback transaction
464
+  (0.0ms) begin transaction
465
+ -------------------------------------------------------------
466
+ TabularTextFieldTest: test_string_too_big_for_length_gets_cut
467
+ -------------------------------------------------------------
468
+  (0.0ms) rollback transaction
469
+  (0.0ms) begin transaction
470
+ ---------------------------------------------------------------
471
+ TabularTextFieldTest: test_number_without_length_returns_number
472
+ ---------------------------------------------------------------
473
+  (0.0ms) rollback transaction
474
+  (0.0ms) begin transaction
475
+ -----------------------------------
476
+ TabularTextFieldTest: test_is_ascii
477
+ -----------------------------------
478
+  (0.0ms) rollback transaction
479
+  (0.0ms) begin transaction
480
+ ---------------------------------------------------------------------------
481
+ TabularTextFieldTest: test_string_with_length_pads_with_spaces_to_the_right
482
+ ---------------------------------------------------------------------------
483
+  (0.0ms) rollback transaction
484
+  (0.0ms) begin transaction
485
+ -------------------------------------------------------------------------
486
+ TabularTextFieldTest: test_number_with_length_pads_with_zeros_to_the_left
487
+ -------------------------------------------------------------------------
488
+  (0.0ms) rollback transaction
489
+  (0.0ms) begin transaction
490
+ -------------------------------------------------------
491
+ TabularTextFieldTest: test_special_chars_get_normalized
492
+ -------------------------------------------------------
493
+  (0.0ms) rollback transaction
494
+  (0.0ms) begin transaction
495
+ ------------------------------------------------------------------------
496
+ TabularTextFieldTest: test_nil_with_length_pads_with_spaces_to_the_right
497
+ ------------------------------------------------------------------------
498
+  (0.0ms) rollback transaction
499
+  (0.0ms) begin transaction
500
+ ---------------------------------------------------
501
+ TabularTextBuilderTest: test_joins_lines_with_CR+LF
502
+ ---------------------------------------------------
503
+  (0.0ms) rollback transaction
504
+  (0.0ms) begin transaction
505
+ ------------------------------------------
506
+ TabularTextBuilderTest: test_returns_ascii
507
+ ------------------------------------------
508
+  (0.0ms) rollback transaction
509
+  (0.0ms) begin transaction
510
+ ------------------------------------------
511
+ NavigationTest: test_renders_as_attachment
512
+ ------------------------------------------
513
+ Started GET "/?format=text" for 127.0.0.1 at 2020-12-07 23:43:25 -0300
514
+ Processing by HomeController#index as TEXT
515
+ Rendering home/index.text.tab
516
+ Rendered home/index.text.tab (Duration: 1.3ms | Allocations: 246)
517
+ Rendering text template
518
+ Rendered text template (Duration: 0.0ms | Allocations: 1)
519
+ Sent data tabular.txt (1.2ms)
520
+ Completed 200 OK in 12ms (Views: 11.3ms | ActiveRecord: 0.0ms | Allocations: 1962)
521
+  (0.1ms) rollback transaction
522
+  (0.1ms) begin transaction
523
+ ------------------------------------------
524
+ NavigationTest: test_renders_as_text/plain
525
+ ------------------------------------------
526
+ Started GET "/?format=text" for 127.0.0.1 at 2020-12-07 23:43:25 -0300
527
+ Processing by HomeController#index as TEXT
528
+ Rendering home/index.text.tab
529
+ Rendered home/index.text.tab (Duration: 0.0ms | Allocations: 26)
530
+ Rendering text template
531
+ Rendered text template (Duration: 0.0ms | Allocations: 1)
532
+ Sent data tabular.txt (0.2ms)
533
+ Completed 200 OK in 1ms (Views: 0.5ms | ActiveRecord: 0.0ms | Allocations: 410)
534
+  (0.0ms) rollback transaction
535
+  (0.0ms) begin transaction
536
+ ------------------------------------------
537
+ NavigationTest: test_renders_using_tabular
538
+ ------------------------------------------
539
+ Started GET "/?format=text" for 127.0.0.1 at 2020-12-07 23:43:25 -0300
540
+ Processing by HomeController#index as TEXT
541
+ Rendering home/index.text.tab
542
+ Rendered home/index.text.tab (Duration: 0.1ms | Allocations: 26)
543
+ Rendering text template
544
+ Rendered text template (Duration: 0.0ms | Allocations: 1)
545
+ Sent data tabular.txt (0.2ms)
546
+ Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms | Allocations: 412)
547
+  (0.0ms) rollback transaction
548
+  (0.8ms) SELECT sqlite_version(*)
549
+  (0.0ms) begin transaction
550
+ ------------------------------------------
551
+ NavigationTest: test_renders_as_attachment
552
+ ------------------------------------------
553
+ Started GET "/?format=text" for 127.0.0.1 at 2020-12-07 23:47:15 -0300
5
554
  Processing by HomeController#index as TEXT
6
- Rendered home/index.text.tab (87.4ms)
7
- Rendered text template (0.0ms)
8
- Sent data tabular.txt (1.5ms)
9
- Completed 200 OK in 96ms (Views: 95.4ms | ActiveRecord: 0.0ms)
10
-  (0.1ms) rollback transaction
11
-  (0.1ms) begin transaction
12
-
13
-
14
- Started GET "/?format=text" for 127.0.0.1 at 2013-08-28 16:00:46 -0400
555
+ Rendering home/index.text.tab
556
+ Rendered home/index.text.tab (Duration: 24.0ms | Allocations: 53145)
557
+ Rendering text template
558
+ Rendered text template (Duration: 0.0ms | Allocations: 1)
559
+ Sent data tabular.txt (0.8ms)
560
+ Completed 200 OK in 28ms (Views: 28.2ms | ActiveRecord: 0.0ms | Allocations: 54862)
561
+  (0.0ms) rollback transaction
562
+  (0.1ms) begin transaction
563
+ ------------------------------------------
564
+ NavigationTest: test_renders_as_text/plain
565
+ ------------------------------------------
566
+ Started GET "/?format=text" for 127.0.0.1 at 2020-12-07 23:47:16 -0300
15
567
  Processing by HomeController#index as TEXT
16
- Rendered home/index.text.tab (0.1ms)
17
- Rendered text template (0.0ms)
568
+ Rendering home/index.text.tab
569
+ Rendered home/index.text.tab (Duration: 0.1ms | Allocations: 26)
570
+ Rendering text template
571
+ Rendered text template (Duration: 0.0ms | Allocations: 1)
18
572
  Sent data tabular.txt (0.2ms)
19
- Completed 200 OK in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
20
-  (0.1ms) rollback transaction
21
-  (0.0ms) begin transaction
22
-
23
-
24
- Started GET "/?format=text" for 127.0.0.1 at 2013-08-28 16:00:46 -0400
573
+ Completed 200 OK in 1ms (Views: 0.5ms | ActiveRecord: 0.0ms | Allocations: 411)
574
+  (0.1ms) rollback transaction
575
+  (0.0ms) begin transaction
576
+ ------------------------------------------
577
+ NavigationTest: test_renders_using_tabular
578
+ ------------------------------------------
579
+ Started GET "/?format=text" for 127.0.0.1 at 2020-12-07 23:47:16 -0300
25
580
  Processing by HomeController#index as TEXT
26
- Rendered home/index.text.tab (0.1ms)
27
- Rendered text template (0.0ms)
581
+ Rendering home/index.text.tab
582
+ Rendered home/index.text.tab (Duration: 0.0ms | Allocations: 26)
583
+ Rendering text template
584
+ Rendered text template (Duration: 0.0ms | Allocations: 1)
28
585
  Sent data tabular.txt (0.3ms)
29
- Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.0ms)
30
-  (0.1ms) rollback transaction
31
-  (0.1ms) begin transaction
32
-  (0.0ms) rollback transaction
33
-  (0.0ms) begin transaction
34
-  (0.0ms) rollback transaction
35
-  (0.0ms) begin transaction
36
-  (0.0ms) rollback transaction
37
-  (0.0ms) begin transaction
38
-  (0.0ms) rollback transaction
39
-  (0.0ms) begin transaction
40
-  (0.0ms) rollback transaction
41
-  (0.0ms) begin transaction
42
-  (0.0ms) rollback transaction
43
-  (0.0ms) begin transaction
44
-  (0.0ms) rollback transaction
45
-  (0.0ms) begin transaction
46
-  (0.0ms) rollback transaction
47
-  (0.0ms) begin transaction
48
-  (0.0ms) rollback transaction
49
-  (0.0ms) begin transaction
50
-  (0.0ms) rollback transaction
51
-  (0.0ms) begin transaction
52
-  (0.0ms) rollback transaction
53
-  (0.0ms) begin transaction
54
-  (0.0ms) rollback transaction
55
-  (0.0ms) begin transaction
56
-  (0.0ms) rollback transaction
57
-  (0.0ms) begin transaction
58
-  (0.0ms) rollback transaction
59
-  (2.9ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
60
-  (0.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
61
-  (0.1ms) SELECT version FROM "schema_migrations"
62
-  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
63
- ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
586
+ Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms | Allocations: 412)
587
+  (0.0ms) rollback transaction
588
+  (0.0ms) begin transaction
64
589
  ---------------------------------------------------------
65
590
  TabularTextLineTest: test_creates_with_content_and_length
66
591
  ---------------------------------------------------------
592
+  (0.0ms) rollback transaction
593
+  (0.0ms) begin transaction
67
594
  --------------------------------------
68
595
  TabularTextLineTest: test_joins_fields
69
596
  --------------------------------------
597
+  (0.0ms) rollback transaction
598
+  (0.0ms) begin transaction
599
+ ---------------------------------------------------
600
+ TabularTextBuilderTest: test_joins_lines_with_CR+LF
601
+ ---------------------------------------------------
602
+  (0.0ms) rollback transaction
603
+  (0.0ms) begin transaction
604
+ ------------------------------------------
605
+ TabularTextBuilderTest: test_returns_ascii
606
+ ------------------------------------------
607
+  (0.0ms) rollback transaction
608
+  (0.1ms) begin transaction
609
+ ---------------------------------------------------------------
610
+ TabularTextFieldTest: test_number_without_length_returns_number
611
+ ---------------------------------------------------------------
612
+  (0.0ms) rollback transaction
613
+  (0.0ms) begin transaction
614
+ -----------------------------------
615
+ TabularTextFieldTest: test_is_ascii
616
+ -----------------------------------
617
+  (0.0ms) rollback transaction
618
+  (0.0ms) begin transaction
619
+ -------------------------------------------------------
620
+ TabularTextFieldTest: test_special_chars_get_normalized
621
+ -------------------------------------------------------
622
+  (0.0ms) rollback transaction
623
+  (0.0ms) begin transaction
624
+ -------------------------------------------------------------------------
625
+ TabularTextFieldTest: test_number_with_length_pads_with_zeros_to_the_left
626
+ -------------------------------------------------------------------------
627
+  (0.0ms) rollback transaction
628
+  (0.0ms) begin transaction
629
+ ------------------------------------------------
630
+ TabularTextFieldTest: test_date_returns_YYYYMMDD
631
+ ------------------------------------------------
632
+  (0.0ms) rollback transaction
633
+  (0.0ms) begin transaction
634
+ ------------------------------------------------
635
+ TabularTextFieldTest: test_time_returns_YYYYMMDD
636
+ ------------------------------------------------
637
+  (0.0ms) rollback transaction
638
+  (0.0ms) begin transaction
639
+ -------------------------------------------------------------
640
+ TabularTextFieldTest: test_string_too_big_for_length_gets_cut
641
+ -------------------------------------------------------------
642
+  (0.0ms) rollback transaction
643
+  (0.0ms) begin transaction
644
+ ---------------------------------------------------------------------------
645
+ TabularTextFieldTest: test_string_with_length_pads_with_spaces_to_the_right
646
+ ---------------------------------------------------------------------------
647
+  (0.0ms) rollback transaction
648
+  (0.0ms) begin transaction
649
+ ------------------------------------------------------------------------
650
+ TabularTextFieldTest: test_nil_with_length_pads_with_spaces_to_the_right
651
+ ------------------------------------------------------------------------
652
+  (0.0ms) rollback transaction
653
+  (0.0ms) begin transaction
654
+ ---------------------------------------------------------------
655
+ TabularTextFieldTest: test_string_without_length_returns_string
656
+ ---------------------------------------------------------------
657
+  (0.0ms) rollback transaction
658
+  (1.1ms) SELECT sqlite_version(*)
659
+  (0.1ms) begin transaction
70
660
  ------------------------------------------
71
- NavigationTest: test_renders_as_attachment
661
+ NavigationTest: test_renders_as_text/plain
72
662
  ------------------------------------------
73
- Started GET "/?format=text" for 127.0.0.1 at 2013-08-28 18:30:10 -0400
663
+ Started GET "/?format=text" for 127.0.0.1 at 2020-12-07 23:47:34 -0300
74
664
  Processing by HomeController#index as TEXT
75
- Rendered home/index.text.tab (83.4ms)
76
- Rendered text template (0.0ms)
77
- Sent data tabular.txt (3.4ms)
78
- Completed 200 OK in 93ms (Views: 92.6ms)
665
+ Rendering home/index.text.tab
666
+ Rendered home/index.text.tab (Duration: 32.3ms | Allocations: 53145)
667
+ Rendering text template
668
+ Rendered text template (Duration: 0.0ms | Allocations: 1)
669
+ Sent data tabular.txt (1.0ms)
670
+ Completed 200 OK in 39ms (Views: 38.4ms | ActiveRecord: 0.0ms | Allocations: 54862)
671
+  (0.0ms) rollback transaction
672
+  (0.0ms) begin transaction
79
673
  ------------------------------------------
80
- NavigationTest: test_renders_as_text/plain
674
+ NavigationTest: test_renders_using_tabular
81
675
  ------------------------------------------
82
- Started GET "/?format=text" for 127.0.0.1 at 2013-08-28 18:30:10 -0400
676
+ Started GET "/?format=text" for 127.0.0.1 at 2020-12-07 23:47:34 -0300
83
677
  Processing by HomeController#index as TEXT
84
- Rendered home/index.text.tab (0.1ms)
85
- Rendered text template (0.0ms)
678
+ Rendering home/index.text.tab
679
+ Rendered home/index.text.tab (Duration: 0.1ms | Allocations: 26)
680
+ Rendering text template
681
+ Rendered text template (Duration: 0.0ms | Allocations: 1)
86
682
  Sent data tabular.txt (0.2ms)
87
- Completed 200 OK in 1ms (Views: 0.8ms)
683
+ Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms | Allocations: 411)
684
+  (0.0ms) rollback transaction
685
+  (0.0ms) begin transaction
88
686
  ------------------------------------------
89
- NavigationTest: test_renders_using_tabular
687
+ NavigationTest: test_renders_as_attachment
90
688
  ------------------------------------------
91
- Started GET "/?format=text" for 127.0.0.1 at 2013-08-28 18:30:10 -0400
689
+ Started GET "/?format=text" for 127.0.0.1 at 2020-12-07 23:47:34 -0300
92
690
  Processing by HomeController#index as TEXT
93
- Rendered home/index.text.tab (0.1ms)
94
- Rendered text template (0.0ms)
691
+ Rendering home/index.text.tab
692
+ Rendered home/index.text.tab (Duration: 0.1ms | Allocations: 26)
693
+ Rendering text template
694
+ Rendered text template (Duration: 0.0ms | Allocations: 1)
95
695
  Sent data tabular.txt (0.2ms)
96
- Completed 200 OK in 1ms (Views: 0.6ms)
696
+ Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms | Allocations: 410)
697
+  (0.1ms) rollback transaction
698
+  (0.0ms) begin transaction
699
+ ---------------------------------------------------------
700
+ TabularTextLineTest: test_creates_with_content_and_length
701
+ ---------------------------------------------------------
702
+  (0.0ms) rollback transaction
703
+  (0.0ms) begin transaction
704
+ --------------------------------------
705
+ TabularTextLineTest: test_joins_fields
706
+ --------------------------------------
707
+  (0.0ms) rollback transaction
708
+  (0.0ms) begin transaction
97
709
  ---------------------------------------------------
98
710
  TabularTextBuilderTest: test_joins_lines_with_CR+LF
99
711
  ---------------------------------------------------
712
+  (0.0ms) rollback transaction
713
+  (0.0ms) begin transaction
100
714
  ------------------------------------------
101
715
  TabularTextBuilderTest: test_returns_ascii
102
716
  ------------------------------------------
717
+  (0.0ms) rollback transaction
718
+  (0.0ms) begin transaction
719
+ ------------------------------------------------------------------------
720
+ TabularTextFieldTest: test_nil_with_length_pads_with_spaces_to_the_right
721
+ ------------------------------------------------------------------------
722
+  (0.0ms) rollback transaction
723
+  (0.0ms) begin transaction
724
+ -------------------------------------------------------
725
+ TabularTextFieldTest: test_special_chars_get_normalized
726
+ -------------------------------------------------------
727
+  (0.0ms) rollback transaction
728
+  (0.0ms) begin transaction
103
729
  ------------------------------------------------
104
730
  TabularTextFieldTest: test_date_returns_YYYYMMDD
105
731
  ------------------------------------------------
732
+  (0.0ms) rollback transaction
733
+  (0.0ms) begin transaction
106
734
  -----------------------------------
107
735
  TabularTextFieldTest: test_is_ascii
108
736
  -----------------------------------
109
- ------------------------------------------------------------------------
110
- TabularTextFieldTest: test_nil_with_length_pads_with_spaces_to_the_right
111
- ------------------------------------------------------------------------
737
+  (0.0ms) rollback transaction
738
+  (0.0ms) begin transaction
739
+ ------------------------------------------------
740
+ TabularTextFieldTest: test_time_returns_YYYYMMDD
741
+ ------------------------------------------------
742
+  (0.0ms) rollback transaction
743
+  (0.0ms) begin transaction
112
744
  -------------------------------------------------------------------------
113
745
  TabularTextFieldTest: test_number_with_length_pads_with_zeros_to_the_left
114
746
  -------------------------------------------------------------------------
747
+  (0.0ms) rollback transaction
748
+  (0.0ms) begin transaction
115
749
  ---------------------------------------------------------------
116
750
  TabularTextFieldTest: test_number_without_length_returns_number
117
751
  ---------------------------------------------------------------
118
- -------------------------------------------------------
119
- TabularTextFieldTest: test_special_chars_get_normalized
120
- -------------------------------------------------------
121
- -------------------------------------------------------------
122
- TabularTextFieldTest: test_string_too_big_for_length_gets_cut
123
- -------------------------------------------------------------
752
+  (0.0ms) rollback transaction
753
+  (0.0ms) begin transaction
754
+ ---------------------------------------------------------------
755
+ TabularTextFieldTest: test_string_without_length_returns_string
756
+ ---------------------------------------------------------------
757
+  (0.0ms) rollback transaction
758
+  (0.0ms) begin transaction
124
759
  ---------------------------------------------------------------------------
125
760
  TabularTextFieldTest: test_string_with_length_pads_with_spaces_to_the_right
126
761
  ---------------------------------------------------------------------------
762
+  (0.0ms) rollback transaction
763
+  (0.0ms) begin transaction
764
+ -------------------------------------------------------------
765
+ TabularTextFieldTest: test_string_too_big_for_length_gets_cut
766
+ -------------------------------------------------------------
767
+  (0.0ms) rollback transaction
768
+  (1.2ms) SELECT sqlite_version(*)
769
+  (0.0ms) begin transaction
770
+ ------------------------------------------
771
+ TabularTextBuilderTest: test_returns_ascii
772
+ ------------------------------------------
773
+  (0.0ms) rollback transaction
774
+  (0.0ms) begin transaction
775
+ ---------------------------------------------------
776
+ TabularTextBuilderTest: test_joins_lines_with_CR+LF
777
+ ---------------------------------------------------
778
+  (0.0ms) rollback transaction
779
+  (0.0ms) begin transaction
780
+ ---------------------------------------------------------------
781
+ TabularTextFieldTest: test_number_without_length_returns_number
782
+ ---------------------------------------------------------------
783
+  (0.0ms) rollback transaction
784
+  (0.0ms) begin transaction
127
785
  ---------------------------------------------------------------
128
786
  TabularTextFieldTest: test_string_without_length_returns_string
129
787
  ---------------------------------------------------------------
788
+  (0.0ms) rollback transaction
789
+  (0.0ms) begin transaction
790
+ -------------------------------------------------------------------------
791
+ TabularTextFieldTest: test_number_with_length_pads_with_zeros_to_the_left
792
+ -------------------------------------------------------------------------
793
+  (0.0ms) rollback transaction
794
+  (0.0ms) begin transaction
795
+ ---------------------------------------------------------------------------
796
+ TabularTextFieldTest: test_string_with_length_pads_with_spaces_to_the_right
797
+ ---------------------------------------------------------------------------
798
+  (0.0ms) rollback transaction
799
+  (0.0ms) begin transaction
800
+ -----------------------------------
801
+ TabularTextFieldTest: test_is_ascii
802
+ -----------------------------------
803
+  (0.0ms) rollback transaction
804
+  (0.0ms) begin transaction
805
+ -------------------------------------------------------
806
+ TabularTextFieldTest: test_special_chars_get_normalized
807
+ -------------------------------------------------------
808
+  (0.0ms) rollback transaction
809
+  (0.0ms) begin transaction
130
810
  ------------------------------------------------
131
811
  TabularTextFieldTest: test_time_returns_YYYYMMDD
132
812
  ------------------------------------------------
133
- ---------------------------------------------------------
134
- TabularTextLineTest: test_creates_with_content_and_length
135
- ---------------------------------------------------------
136
- --------------------------------------
137
- TabularTextLineTest: test_joins_fields
138
- --------------------------------------
813
+  (0.0ms) rollback transaction
814
+  (0.0ms) begin transaction
815
+ ------------------------------------------------------------------------
816
+ TabularTextFieldTest: test_nil_with_length_pads_with_spaces_to_the_right
817
+ ------------------------------------------------------------------------
818
+  (0.0ms) rollback transaction
819
+  (0.0ms) begin transaction
820
+ -------------------------------------------------------------
821
+ TabularTextFieldTest: test_string_too_big_for_length_gets_cut
822
+ -------------------------------------------------------------
823
+  (0.0ms) rollback transaction
824
+  (0.0ms) begin transaction
825
+ ------------------------------------------------
826
+ TabularTextFieldTest: test_date_returns_YYYYMMDD
827
+ ------------------------------------------------
828
+  (0.0ms) rollback transaction
829
+  (0.0ms) begin transaction
139
830
  ------------------------------------------
140
831
  NavigationTest: test_renders_as_attachment
141
832
  ------------------------------------------
142
- Started GET "/?format=text" for 127.0.0.1 at 2013-08-29 00:15:37 -0400
833
+ Started GET "/?format=text" for 127.0.0.1 at 2020-12-07 23:47:53 -0300
143
834
  Processing by HomeController#index as TEXT
144
- Rendered home/index.text.tab (92.1ms)
145
- Rendered text template (0.0ms)
146
- Sent data tabular.txt (1.6ms)
147
- Completed 200 OK in 100ms (Views: 99.8ms)
835
+ Rendering home/index.text.tab
836
+ Rendered home/index.text.tab (Duration: 0.7ms | Allocations: 246)
837
+ Rendering text template
838
+ Rendered text template (Duration: 0.0ms | Allocations: 1)
839
+ Sent data tabular.txt (0.7ms)
840
+ Completed 200 OK in 5ms (Views: 5.1ms | ActiveRecord: 0.0ms | Allocations: 1962)
841
+  (0.1ms) rollback transaction
842
+  (0.1ms) begin transaction
148
843
  ------------------------------------------
149
- NavigationTest: test_renders_as_text/plain
844
+ NavigationTest: test_renders_using_tabular
150
845
  ------------------------------------------
151
- Started GET "/?format=text" for 127.0.0.1 at 2013-08-29 00:15:37 -0400
846
+ Started GET "/?format=text" for 127.0.0.1 at 2020-12-07 23:47:53 -0300
152
847
  Processing by HomeController#index as TEXT
153
- Rendered home/index.text.tab (0.2ms)
154
- Rendered text template (0.0ms)
848
+ Rendering home/index.text.tab
849
+ Rendered home/index.text.tab (Duration: 0.1ms | Allocations: 26)
850
+ Rendering text template
851
+ Rendered text template (Duration: 0.0ms | Allocations: 1)
155
852
  Sent data tabular.txt (0.3ms)
156
- Completed 200 OK in 1ms (Views: 0.9ms)
853
+ Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.0ms | Allocations: 410)
854
+  (0.0ms) rollback transaction
855
+  (0.0ms) begin transaction
157
856
  ------------------------------------------
158
- NavigationTest: test_renders_using_tabular
857
+ NavigationTest: test_renders_as_text/plain
159
858
  ------------------------------------------
160
- Started GET "/?format=text" for 127.0.0.1 at 2013-08-29 00:15:37 -0400
859
+ Started GET "/?format=text" for 127.0.0.1 at 2020-12-07 23:47:53 -0300
161
860
  Processing by HomeController#index as TEXT
162
- Rendered home/index.text.tab (0.1ms)
163
- Rendered text template (0.0ms)
861
+ Rendering home/index.text.tab
862
+ Rendered home/index.text.tab (Duration: 0.0ms | Allocations: 26)
863
+ Rendering text template
864
+ Rendered text template (Duration: 0.0ms | Allocations: 1)
164
865
  Sent data tabular.txt (0.2ms)
165
- Completed 200 OK in 1ms (Views: 0.6ms)
166
- ---------------------------------------------------
167
- TabularTextBuilderTest: test_joins_lines_with_CR+LF
168
- ---------------------------------------------------
169
- ------------------------------------------
170
- TabularTextBuilderTest: test_returns_ascii
171
- ------------------------------------------
866
+ Completed 200 OK in 1ms (Views: 0.4ms | ActiveRecord: 0.0ms | Allocations: 410)
867
+  (0.0ms) rollback transaction
868
+  (0.0ms) begin transaction
869
+ ---------------------------------------------------------
870
+ TabularTextLineTest: test_creates_with_content_and_length
871
+ ---------------------------------------------------------
872
+  (0.0ms) rollback transaction
873
+  (0.0ms) begin transaction
874
+ --------------------------------------
875
+ TabularTextLineTest: test_joins_fields
876
+ --------------------------------------
877
+  (0.0ms) rollback transaction
878
+  (0.8ms) SELECT sqlite_version(*)
879
+  (0.0ms) begin transaction
880
+ -------------------------------------------------------------------------
881
+ TabularTextFieldTest: test_number_with_length_pads_with_zeros_to_the_left
882
+ -------------------------------------------------------------------------
883
+  (0.0ms) rollback transaction
884
+  (0.0ms) begin transaction
885
+ ---------------------------------------------------------------
886
+ TabularTextFieldTest: test_string_without_length_returns_string
887
+ ---------------------------------------------------------------
888
+  (0.0ms) rollback transaction
889
+  (0.0ms) begin transaction
172
890
  ------------------------------------------------
173
891
  TabularTextFieldTest: test_date_returns_YYYYMMDD
174
892
  ------------------------------------------------
893
+  (0.0ms) rollback transaction
894
+  (0.0ms) begin transaction
895
+ -------------------------------------------------------------
896
+ TabularTextFieldTest: test_string_too_big_for_length_gets_cut
897
+ -------------------------------------------------------------
898
+  (0.0ms) rollback transaction
899
+  (0.0ms) begin transaction
175
900
  -----------------------------------
176
901
  TabularTextFieldTest: test_is_ascii
177
902
  -----------------------------------
903
+  (0.0ms) rollback transaction
904
+  (0.0ms) begin transaction
178
905
  ------------------------------------------------------------------------
179
906
  TabularTextFieldTest: test_nil_with_length_pads_with_spaces_to_the_right
180
907
  ------------------------------------------------------------------------
181
- -------------------------------------------------------------------------
182
- TabularTextFieldTest: test_number_with_length_pads_with_zeros_to_the_left
183
- -------------------------------------------------------------------------
908
+  (0.0ms) rollback transaction
909
+  (0.0ms) begin transaction
184
910
  ---------------------------------------------------------------
185
911
  TabularTextFieldTest: test_number_without_length_returns_number
186
912
  ---------------------------------------------------------------
913
+  (0.0ms) rollback transaction
914
+  (0.0ms) begin transaction
915
+ ------------------------------------------------
916
+ TabularTextFieldTest: test_time_returns_YYYYMMDD
917
+ ------------------------------------------------
918
+  (0.0ms) rollback transaction
919
+  (0.0ms) begin transaction
187
920
  -------------------------------------------------------
188
921
  TabularTextFieldTest: test_special_chars_get_normalized
189
922
  -------------------------------------------------------
190
- -------------------------------------------------------------
191
- TabularTextFieldTest: test_string_too_big_for_length_gets_cut
192
- -------------------------------------------------------------
923
+  (0.0ms) rollback transaction
924
+  (0.0ms) begin transaction
193
925
  ---------------------------------------------------------------------------
194
926
  TabularTextFieldTest: test_string_with_length_pads_with_spaces_to_the_right
195
927
  ---------------------------------------------------------------------------
196
- ---------------------------------------------------------------
197
- TabularTextFieldTest: test_string_without_length_returns_string
198
- ---------------------------------------------------------------
199
- ------------------------------------------------
200
- TabularTextFieldTest: test_time_returns_YYYYMMDD
201
- ------------------------------------------------
202
- ---------------------------------------------------------
203
- TabularTextLineTest: test_creates_with_content_and_length
204
- ---------------------------------------------------------
928
+  (0.0ms) rollback transaction
929
+  (0.0ms) begin transaction
205
930
  --------------------------------------
206
931
  TabularTextLineTest: test_joins_fields
207
932
  --------------------------------------
933
+  (0.0ms) rollback transaction
934
+  (0.0ms) begin transaction
935
+ ---------------------------------------------------------
936
+ TabularTextLineTest: test_creates_with_content_and_length
937
+ ---------------------------------------------------------
938
+  (0.0ms) rollback transaction
939
+  (0.0ms) begin transaction
208
940
  ------------------------------------------
209
- NavigationTest: test_renders_as_attachment
941
+ NavigationTest: test_renders_using_tabular
210
942
  ------------------------------------------
211
- Started GET "/?format=text" for 127.0.0.1 at 2013-08-29 00:16:27 -0400
943
+ Started GET "/?format=text" for 127.0.0.1 at 2020-12-07 23:48:57 -0300
212
944
  Processing by HomeController#index as TEXT
213
- Rendered home/index.text.tab (94.2ms)
214
- Completed 500 Internal Server Error in 99ms
945
+ Rendering home/index.text.tab
946
+ Rendered home/index.text.tab (Duration: 0.6ms | Allocations: 246)
947
+ Rendering text template
948
+ Rendered text template (Duration: 0.0ms | Allocations: 1)
949
+ Sent data tabular.txt (0.6ms)
950
+ Completed 200 OK in 5ms (Views: 4.5ms | ActiveRecord: 0.0ms | Allocations: 1962)
951
+  (0.0ms) rollback transaction
952
+  (0.0ms) begin transaction
215
953
  ------------------------------------------
216
- NavigationTest: test_renders_as_text/plain
954
+ NavigationTest: test_renders_as_attachment
217
955
  ------------------------------------------
218
- Started GET "/?format=text" for 127.0.0.1 at 2013-08-29 00:16:27 -0400
956
+ Started GET "/?format=text" for 127.0.0.1 at 2020-12-07 23:48:57 -0300
219
957
  Processing by HomeController#index as TEXT
220
- Rendered home/index.text.tab (122.1ms)
221
- Rendered text template (0.0ms)
222
- Sent data tabular.txt (1.1ms)
223
- Completed 200 OK in 124ms (Views: 123.7ms)
958
+ Rendering home/index.text.tab
959
+ Rendered home/index.text.tab (Duration: 0.0ms | Allocations: 26)
960
+ Rendering text template
961
+ Rendered text template (Duration: 0.0ms | Allocations: 1)
962
+ Sent data tabular.txt (0.2ms)
963
+ Completed 200 OK in 1ms (Views: 0.4ms | ActiveRecord: 0.0ms | Allocations: 410)
964
+  (0.0ms) rollback transaction
965
+  (0.0ms) begin transaction
224
966
  ------------------------------------------
225
- NavigationTest: test_renders_using_tabular
967
+ NavigationTest: test_renders_as_text/plain
226
968
  ------------------------------------------
227
- Started GET "/?format=text" for 127.0.0.1 at 2013-08-29 00:16:27 -0400
969
+ Started GET "/?format=text" for 127.0.0.1 at 2020-12-07 23:48:57 -0300
228
970
  Processing by HomeController#index as TEXT
229
- Rendered home/index.text.tab (0.2ms)
230
- Rendered text template (0.0ms)
231
- Sent data tabular.txt (0.2ms)
232
- Completed 200 OK in 1ms (Views: 0.8ms)
971
+ Rendering home/index.text.tab
972
+ Rendered home/index.text.tab (Duration: 0.0ms | Allocations: 26)
973
+ Rendering text template
974
+ Rendered text template (Duration: 0.0ms | Allocations: 1)
975
+ Sent data tabular.txt (0.1ms)
976
+ Completed 200 OK in 0ms (Views: 0.3ms | ActiveRecord: 0.0ms | Allocations: 410)
977
+  (0.0ms) rollback transaction
978
+  (0.0ms) begin transaction
233
979
  ---------------------------------------------------
234
980
  TabularTextBuilderTest: test_joins_lines_with_CR+LF
235
981
  ---------------------------------------------------
982
+  (0.0ms) rollback transaction
983
+  (0.0ms) begin transaction
236
984
  ------------------------------------------
237
985
  TabularTextBuilderTest: test_returns_ascii
238
986
  ------------------------------------------
239
- ------------------------------------------------
240
- TabularTextFieldTest: test_date_returns_YYYYMMDD
241
- ------------------------------------------------
242
- -----------------------------------
243
- TabularTextFieldTest: test_is_ascii
244
- -----------------------------------
245
- ------------------------------------------------------------------------
246
- TabularTextFieldTest: test_nil_with_length_pads_with_spaces_to_the_right
247
- ------------------------------------------------------------------------
248
- -------------------------------------------------------------------------
249
- TabularTextFieldTest: test_number_with_length_pads_with_zeros_to_the_left
250
- -------------------------------------------------------------------------
251
- ---------------------------------------------------------------
252
- TabularTextFieldTest: test_number_without_length_returns_number
253
- ---------------------------------------------------------------
254
- -------------------------------------------------------
255
- TabularTextFieldTest: test_special_chars_get_normalized
256
- -------------------------------------------------------
257
- -------------------------------------------------------------
258
- TabularTextFieldTest: test_string_too_big_for_length_gets_cut
259
- -------------------------------------------------------------
260
- ---------------------------------------------------------------------------
261
- TabularTextFieldTest: test_string_with_length_pads_with_spaces_to_the_right
262
- ---------------------------------------------------------------------------
263
- ---------------------------------------------------------------
264
- TabularTextFieldTest: test_string_without_length_returns_string
265
- ---------------------------------------------------------------
266
- ------------------------------------------------
267
- TabularTextFieldTest: test_time_returns_YYYYMMDD
268
- ------------------------------------------------
987
+  (0.0ms) rollback transaction
988
+  (0.9ms) SELECT sqlite_version(*)
989
+  (0.1ms) begin transaction
990
+ ------------------------------------------
991
+ TabularTextBuilderTest: test_returns_ascii
992
+ ------------------------------------------
993
+  (0.0ms) rollback transaction
994
+  (0.0ms) begin transaction
995
+ ---------------------------------------------------
996
+ TabularTextBuilderTest: test_joins_lines_with_CR+LF
997
+ ---------------------------------------------------
998
+  (0.0ms) rollback transaction
999
+  (0.0ms) begin transaction
269
1000
  ---------------------------------------------------------
270
1001
  TabularTextLineTest: test_creates_with_content_and_length
271
1002
  ---------------------------------------------------------
1003
+  (0.0ms) rollback transaction
1004
+  (0.0ms) begin transaction
272
1005
  --------------------------------------
273
1006
  TabularTextLineTest: test_joins_fields
274
1007
  --------------------------------------
1008
+  (0.0ms) rollback transaction
1009
+  (0.0ms) begin transaction
275
1010
  ------------------------------------------
276
- NavigationTest: test_renders_as_attachment
1011
+ NavigationTest: test_renders_using_tabular
277
1012
  ------------------------------------------
278
- Started GET "/?format=text" for 127.0.0.1 at 2013-08-29 00:16:59 -0400
1013
+ Started GET "/?format=text" for 127.0.0.1 at 2020-12-07 23:49:32 -0300
279
1014
  Processing by HomeController#index as TEXT
280
- Rendered home/index.text.tab (84.8ms)
281
- Rendered text template (0.0ms)
282
- Sent data tabular.txt (1.1ms)
283
- Completed 200 OK in 91ms (Views: 90.3ms)
1015
+ Rendering home/index.text.tab
1016
+ Rendered home/index.text.tab (Duration: 0.6ms | Allocations: 246)
1017
+ Rendering text template
1018
+ Rendered text template (Duration: 0.0ms | Allocations: 1)
1019
+ Sent data tabular.txt (0.6ms)
1020
+ Completed 200 OK in 5ms (Views: 4.5ms | ActiveRecord: 0.0ms | Allocations: 1962)
1021
+  (0.0ms) rollback transaction
1022
+  (0.0ms) begin transaction
284
1023
  ------------------------------------------
285
1024
  NavigationTest: test_renders_as_text/plain
286
1025
  ------------------------------------------
287
- Started GET "/?format=text" for 127.0.0.1 at 2013-08-29 00:16:59 -0400
1026
+ Started GET "/?format=text" for 127.0.0.1 at 2020-12-07 23:49:32 -0300
288
1027
  Processing by HomeController#index as TEXT
289
- Rendered home/index.text.tab (0.2ms)
290
- Rendered text template (0.0ms)
1028
+ Rendering home/index.text.tab
1029
+ Rendered home/index.text.tab (Duration: 0.0ms | Allocations: 26)
1030
+ Rendering text template
1031
+ Rendered text template (Duration: 0.0ms | Allocations: 1)
291
1032
  Sent data tabular.txt (0.2ms)
292
- Completed 200 OK in 1ms (Views: 0.9ms)
1033
+ Completed 200 OK in 1ms (Views: 0.4ms | ActiveRecord: 0.0ms | Allocations: 410)
1034
+  (0.0ms) rollback transaction
1035
+  (0.0ms) begin transaction
293
1036
  ------------------------------------------
294
- NavigationTest: test_renders_using_tabular
1037
+ NavigationTest: test_renders_as_attachment
295
1038
  ------------------------------------------
296
- Started GET "/?format=text" for 127.0.0.1 at 2013-08-29 00:16:59 -0400
1039
+ Started GET "/?format=text" for 127.0.0.1 at 2020-12-07 23:49:32 -0300
297
1040
  Processing by HomeController#index as TEXT
298
- Rendered home/index.text.tab (0.1ms)
299
- Rendered text template (0.0ms)
1041
+ Rendering home/index.text.tab
1042
+ Rendered home/index.text.tab (Duration: 0.0ms | Allocations: 26)
1043
+ Rendering text template
1044
+ Rendered text template (Duration: 0.0ms | Allocations: 1)
300
1045
  Sent data tabular.txt (0.2ms)
301
- Completed 200 OK in 1ms (Views: 0.6ms)
302
- ---------------------------------------------------
303
- TabularTextBuilderTest: test_joins_lines_with_CR+LF
304
- ---------------------------------------------------
305
- ------------------------------------------
306
- TabularTextBuilderTest: test_returns_ascii
307
- ------------------------------------------
1046
+ Completed 200 OK in 1ms (Views: 0.4ms | ActiveRecord: 0.0ms | Allocations: 410)
1047
+  (0.0ms) rollback transaction
1048
+  (0.1ms) begin transaction
1049
+ ------------------------------------------------
1050
+ TabularTextFieldTest: test_time_returns_YYYYMMDD
1051
+ ------------------------------------------------
1052
+  (0.0ms) rollback transaction
1053
+  (0.0ms) begin transaction
1054
+ ---------------------------------------------------------------
1055
+ TabularTextFieldTest: test_string_without_length_returns_string
1056
+ ---------------------------------------------------------------
1057
+  (0.0ms) rollback transaction
1058
+  (0.0ms) begin transaction
1059
+ ---------------------------------------------------------------------------
1060
+ TabularTextFieldTest: test_string_with_length_pads_with_spaces_to_the_right
1061
+ ---------------------------------------------------------------------------
1062
+  (0.0ms) rollback transaction
1063
+  (0.0ms) begin transaction
1064
+ ---------------------------------------------------------------
1065
+ TabularTextFieldTest: test_number_without_length_returns_number
1066
+ ---------------------------------------------------------------
1067
+  (0.1ms) rollback transaction
1068
+  (0.1ms) begin transaction
1069
+ -------------------------------------------------------
1070
+ TabularTextFieldTest: test_special_chars_get_normalized
1071
+ -------------------------------------------------------
1072
+  (0.0ms) rollback transaction
1073
+  (0.0ms) begin transaction
308
1074
  ------------------------------------------------
309
1075
  TabularTextFieldTest: test_date_returns_YYYYMMDD
310
1076
  ------------------------------------------------
311
- -----------------------------------
312
- TabularTextFieldTest: test_is_ascii
313
- -----------------------------------
1077
+  (0.0ms) rollback transaction
1078
+  (0.0ms) begin transaction
314
1079
  ------------------------------------------------------------------------
315
1080
  TabularTextFieldTest: test_nil_with_length_pads_with_spaces_to_the_right
316
1081
  ------------------------------------------------------------------------
1082
+  (0.0ms) rollback transaction
1083
+  (0.0ms) begin transaction
1084
+ -----------------------------------
1085
+ TabularTextFieldTest: test_is_ascii
1086
+ -----------------------------------
1087
+  (0.0ms) rollback transaction
1088
+  (0.0ms) begin transaction
1089
+ -------------------------------------------------------------
1090
+ TabularTextFieldTest: test_string_too_big_for_length_gets_cut
1091
+ -------------------------------------------------------------
1092
+  (0.0ms) rollback transaction
1093
+  (0.0ms) begin transaction
317
1094
  -------------------------------------------------------------------------
318
1095
  TabularTextFieldTest: test_number_with_length_pads_with_zeros_to_the_left
319
1096
  -------------------------------------------------------------------------
320
- ---------------------------------------------------------------
321
- TabularTextFieldTest: test_number_without_length_returns_number
322
- ---------------------------------------------------------------
1097
+  (0.0ms) rollback transaction
1098
+  (1.4ms) SELECT sqlite_version(*)
1099
+  (0.0ms) begin transaction
1100
+ ------------------------------------------
1101
+ NavigationTest: test_renders_as_text/plain
1102
+ ------------------------------------------
1103
+ Started GET "/?format=text" for 127.0.0.1 at 2020-12-08 00:21:14 -0300
1104
+ Processing by HomeController#index as TEXT
1105
+ Rendering home/index.text.tab
1106
+ Rendered home/index.text.tab (Duration: 33.1ms | Allocations: 53145)
1107
+ Rendering text template
1108
+ Rendered text template (Duration: 0.0ms | Allocations: 1)
1109
+ Sent data tabular.txt (1.1ms)
1110
+ Completed 200 OK in 41ms (Views: 40.6ms | ActiveRecord: 0.0ms | Allocations: 54862)
1111
+  (0.0ms) rollback transaction
1112
+  (0.0ms) begin transaction
1113
+ ------------------------------------------
1114
+ NavigationTest: test_renders_using_tabular
1115
+ ------------------------------------------
1116
+ Started GET "/?format=text" for 127.0.0.1 at 2020-12-08 00:21:14 -0300
1117
+ Processing by HomeController#index as TEXT
1118
+ Rendering home/index.text.tab
1119
+ Rendered home/index.text.tab (Duration: 0.1ms | Allocations: 26)
1120
+ Rendering text template
1121
+ Rendered text template (Duration: 0.0ms | Allocations: 1)
1122
+ Sent data tabular.txt (0.2ms)
1123
+ Completed 200 OK in 1ms (Views: 0.5ms | ActiveRecord: 0.0ms | Allocations: 411)
1124
+  (0.0ms) rollback transaction
1125
+  (0.0ms) begin transaction
1126
+ ------------------------------------------
1127
+ NavigationTest: test_renders_as_attachment
1128
+ ------------------------------------------
1129
+ Started GET "/?format=text" for 127.0.0.1 at 2020-12-08 00:21:14 -0300
1130
+ Processing by HomeController#index as TEXT
1131
+ Rendering home/index.text.tab
1132
+ Rendered home/index.text.tab (Duration: 0.0ms | Allocations: 26)
1133
+ Rendering text template
1134
+ Rendered text template (Duration: 0.0ms | Allocations: 1)
1135
+ Sent data tabular.txt (0.2ms)
1136
+ Completed 200 OK in 1ms (Views: 0.4ms | ActiveRecord: 0.0ms | Allocations: 410)
1137
+  (0.0ms) rollback transaction
1138
+  (0.0ms) begin transaction
1139
+ ---------------------------------------------------------------------------
1140
+ TabularTextFieldTest: test_string_with_length_pads_with_spaces_to_the_right
1141
+ ---------------------------------------------------------------------------
1142
+  (0.0ms) rollback transaction
1143
+  (0.2ms) begin transaction
323
1144
  -------------------------------------------------------
324
1145
  TabularTextFieldTest: test_special_chars_get_normalized
325
1146
  -------------------------------------------------------
1147
+  (0.0ms) rollback transaction
1148
+  (0.0ms) begin transaction
1149
+ ---------------------------------------------------------------
1150
+ TabularTextFieldTest: test_number_without_length_returns_number
1151
+ ---------------------------------------------------------------
1152
+  (0.0ms) rollback transaction
1153
+  (0.0ms) begin transaction
326
1154
  -------------------------------------------------------------
327
1155
  TabularTextFieldTest: test_string_too_big_for_length_gets_cut
328
1156
  -------------------------------------------------------------
329
- ---------------------------------------------------------------------------
330
- TabularTextFieldTest: test_string_with_length_pads_with_spaces_to_the_right
331
- ---------------------------------------------------------------------------
1157
+  (0.0ms) rollback transaction
1158
+  (0.0ms) begin transaction
1159
+ -------------------------------------------------------------------------
1160
+ TabularTextFieldTest: test_number_with_length_pads_with_zeros_to_the_left
1161
+ -------------------------------------------------------------------------
1162
+  (0.0ms) rollback transaction
1163
+  (0.0ms) begin transaction
1164
+ -----------------------------------
1165
+ TabularTextFieldTest: test_is_ascii
1166
+ -----------------------------------
1167
+  (0.0ms) rollback transaction
1168
+  (0.0ms) begin transaction
1169
+ ------------------------------------------------
1170
+ TabularTextFieldTest: test_time_returns_YYYYMMDD
1171
+ ------------------------------------------------
1172
+  (0.0ms) rollback transaction
1173
+  (0.0ms) begin transaction
1174
+ ------------------------------------------------------------------------
1175
+ TabularTextFieldTest: test_nil_with_length_pads_with_spaces_to_the_right
1176
+ ------------------------------------------------------------------------
1177
+  (0.0ms) rollback transaction
1178
+  (0.0ms) begin transaction
332
1179
  ---------------------------------------------------------------
333
1180
  TabularTextFieldTest: test_string_without_length_returns_string
334
1181
  ---------------------------------------------------------------
1182
+  (0.0ms) rollback transaction
1183
+  (0.0ms) begin transaction
335
1184
  ------------------------------------------------
336
- TabularTextFieldTest: test_time_returns_YYYYMMDD
1185
+ TabularTextFieldTest: test_date_returns_YYYYMMDD
337
1186
  ------------------------------------------------
1187
+  (0.0ms) rollback transaction
1188
+  (0.0ms) begin transaction
1189
+ ---------------------------------------------------
1190
+ TabularTextBuilderTest: test_joins_lines_with_CR+LF
1191
+ ---------------------------------------------------
1192
+  (0.0ms) rollback transaction
1193
+  (0.0ms) begin transaction
1194
+ ------------------------------------------
1195
+ TabularTextBuilderTest: test_returns_ascii
1196
+ ------------------------------------------
1197
+  (0.0ms) rollback transaction
1198
+  (0.0ms) begin transaction
338
1199
  ---------------------------------------------------------
339
1200
  TabularTextLineTest: test_creates_with_content_and_length
340
1201
  ---------------------------------------------------------
1202
+  (0.0ms) rollback transaction
1203
+  (0.0ms) begin transaction
341
1204
  --------------------------------------
342
1205
  TabularTextLineTest: test_joins_fields
343
1206
  --------------------------------------
1207
+  (0.0ms) rollback transaction