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.
- checksums.yaml +5 -5
- data/lib/tabular-text/handler.rb +2 -2
- data/lib/tabular-text/version.rb +1 -1
- data/test/dummy/{README.rdoc → README.md} +1 -5
- data/test/dummy/Rakefile +2 -2
- data/test/dummy/app/assets/config/manifest.js +2 -0
- data/test/dummy/app/assets/stylesheets/application.css +7 -5
- data/test/dummy/app/channels/application_cable/channel.rb +4 -0
- data/test/dummy/app/channels/application_cable/connection.rb +4 -0
- data/test/dummy/app/controllers/application_controller.rb +0 -3
- data/test/dummy/app/javascript/channels/consumer.js +6 -0
- data/test/dummy/app/javascript/channels/index.js +5 -0
- data/test/dummy/app/javascript/packs/application.js +17 -0
- data/test/dummy/app/jobs/application_job.rb +7 -0
- data/test/dummy/app/mailers/application_mailer.rb +4 -0
- data/test/dummy/app/models/application_record.rb +3 -0
- data/test/dummy/app/views/layouts/application.html.erb +10 -9
- data/test/dummy/app/views/layouts/mailer.html.erb +13 -0
- data/test/dummy/app/views/layouts/mailer.text.erb +1 -0
- data/test/dummy/bin/rails +1 -1
- data/test/dummy/bin/setup +36 -0
- data/test/dummy/bin/yarn +11 -0
- data/test/dummy/config.ru +2 -1
- data/test/dummy/config/application.rb +9 -16
- data/test/dummy/config/boot.rb +2 -4
- data/test/dummy/config/cable.yml +10 -0
- data/test/dummy/config/credentials.yml.enc +1 -0
- data/test/dummy/config/database.yml +25 -0
- data/test/dummy/config/environment.rb +2 -2
- data/test/dummy/config/environments/development.rb +40 -4
- data/test/dummy/config/environments/production.rb +64 -32
- data/test/dummy/config/environments/test.rb +22 -9
- data/test/dummy/config/initializers/application_controller_renderer.rb +8 -0
- data/test/dummy/config/initializers/assets.rb +14 -0
- data/test/dummy/config/initializers/content_security_policy.rb +30 -0
- data/test/dummy/config/initializers/cookies_serializer.rb +5 -0
- data/test/dummy/config/initializers/mime_types.rb +0 -1
- data/test/dummy/config/initializers/wrap_parameters.rb +2 -2
- data/test/dummy/config/locales/en.yml +11 -1
- data/test/dummy/config/master.key +1 -0
- data/test/dummy/config/puma.rb +38 -0
- data/test/dummy/config/routes.rb +1 -55
- data/test/dummy/config/spring.rb +6 -0
- data/test/dummy/config/storage.yml +34 -0
- data/test/dummy/db/seeds.rb +3 -3
- data/test/dummy/db/test.sqlite3 +0 -0
- data/test/dummy/log/test.log +1066 -202
- data/test/dummy/package.json +11 -0
- data/test/dummy/public/404.html +24 -15
- data/test/dummy/public/422.html +24 -15
- data/test/dummy/public/500.html +23 -14
- data/test/dummy/public/apple-touch-icon-precomposed.png +0 -0
- data/test/dummy/public/apple-touch-icon.png +0 -0
- data/test/dummy/public/robots.txt +1 -5
- data/test/dummy/test/application_system_test_case.rb +5 -0
- data/test/dummy/test/channels/application_cable/connection_test.rb +11 -0
- data/test/dummy/test/test_helper.rb +4 -6
- data/test/dummy/tmp/development_secret.txt +1 -0
- data/test/integration/navigation_test.rb +6 -6
- data/test/test_helper.rb +2 -1
- metadata +104 -66
- data/test/dummy/Gemfile +0 -45
- data/test/dummy/Gemfile.lock +0 -119
- data/test/dummy/app/assets/javascripts/application.js +0 -16
- data/test/dummy/app/views/home/index.txt.tab +0 -3
- data/test/dummy/bin/bundle +0 -3
- data/test/dummy/config/initializers/secret_token.rb +0 -12
- data/test/dummy/config/initializers/session_store.rb +0 -3
- data/test/dummy/db/development.sqlite3 +0 -0
- data/test/dummy/db/schema.rb +0 -16
- data/test/dummy/log/development.log +0 -3
- data/test/dummy/script/rails +0 -6
@@ -1,24 +1,29 @@
|
|
1
|
-
|
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
|
-
|
5
|
-
|
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
|
16
|
-
config.
|
17
|
-
config.
|
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,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
|
@@ -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]
|
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
|
-
#
|
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
|
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
|
data/test/dummy/config/routes.rb
CHANGED
@@ -1,57 +1,3 @@
|
|
1
|
-
|
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,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 ]
|
data/test/dummy/db/seeds.rb
CHANGED
@@ -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
|
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
|
-
#
|
7
|
-
#
|
6
|
+
# movies = Movie.create([{ name: 'Star Wars' }, { name: 'Lord of the Rings' }])
|
7
|
+
# Character.create(name: 'Luke', movie: movies.first)
|
data/test/dummy/db/test.sqlite3
CHANGED
Binary file
|
data/test/dummy/log/test.log
CHANGED
@@ -1,343 +1,1207 @@
|
|
1
|
-
[1m[
|
2
|
-
|
3
|
-
|
4
|
-
|
1
|
+
[1m[35m (2.0ms)[0m [1m[34mSELECT sqlite_version(*)[0m
|
2
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
3
|
+
------------------------------------------------------------------------
|
4
|
+
TabularTextFieldTest: test_nil_with_length_pads_with_spaces_to_the_right
|
5
|
+
------------------------------------------------------------------------
|
6
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
7
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
8
|
+
------------------------------------------------
|
9
|
+
TabularTextFieldTest: test_date_returns_YYYYMMDD
|
10
|
+
------------------------------------------------
|
11
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
12
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
13
|
+
------------------------------------------------
|
14
|
+
TabularTextFieldTest: test_time_returns_YYYYMMDD
|
15
|
+
------------------------------------------------
|
16
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
17
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
18
|
+
---------------------------------------------------------------
|
19
|
+
TabularTextFieldTest: test_number_without_length_returns_number
|
20
|
+
---------------------------------------------------------------
|
21
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
22
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
23
|
+
---------------------------------------------------------------
|
24
|
+
TabularTextFieldTest: test_string_without_length_returns_string
|
25
|
+
---------------------------------------------------------------
|
26
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
27
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
28
|
+
-----------------------------------
|
29
|
+
TabularTextFieldTest: test_is_ascii
|
30
|
+
-----------------------------------
|
31
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
32
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
33
|
+
-------------------------------------------------------------
|
34
|
+
TabularTextFieldTest: test_string_too_big_for_length_gets_cut
|
35
|
+
-------------------------------------------------------------
|
36
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
37
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
38
|
+
-------------------------------------------------------------------------
|
39
|
+
TabularTextFieldTest: test_number_with_length_pads_with_zeros_to_the_left
|
40
|
+
-------------------------------------------------------------------------
|
41
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
42
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
43
|
+
---------------------------------------------------------------------------
|
44
|
+
TabularTextFieldTest: test_string_with_length_pads_with_spaces_to_the_right
|
45
|
+
---------------------------------------------------------------------------
|
46
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
47
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
48
|
+
-------------------------------------------------------
|
49
|
+
TabularTextFieldTest: test_special_chars_get_normalized
|
50
|
+
-------------------------------------------------------
|
51
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
52
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
53
|
+
------------------------------------------
|
54
|
+
NavigationTest: test_renders_as_attachment
|
55
|
+
------------------------------------------
|
56
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
57
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
58
|
+
------------------------------------------
|
59
|
+
NavigationTest: test_renders_as_text/plain
|
60
|
+
------------------------------------------
|
61
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
62
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
63
|
+
------------------------------------------
|
64
|
+
NavigationTest: test_renders_using_tabular
|
65
|
+
------------------------------------------
|
66
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
67
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
68
|
+
--------------------------------------
|
69
|
+
TabularTextLineTest: test_joins_fields
|
70
|
+
--------------------------------------
|
71
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
72
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
73
|
+
---------------------------------------------------------
|
74
|
+
TabularTextLineTest: test_creates_with_content_and_length
|
75
|
+
---------------------------------------------------------
|
76
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
77
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
78
|
+
---------------------------------------------------
|
79
|
+
TabularTextBuilderTest: test_joins_lines_with_CR+LF
|
80
|
+
---------------------------------------------------
|
81
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
82
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
83
|
+
------------------------------------------
|
84
|
+
TabularTextBuilderTest: test_returns_ascii
|
85
|
+
------------------------------------------
|
86
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
87
|
+
[1m[35m (1.9ms)[0m [1m[34mSELECT sqlite_version(*)[0m
|
88
|
+
[1m[35m (1.9ms)[0m [1m[34mSELECT sqlite_version(*)[0m
|
89
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
90
|
+
---------------------------------------------------------
|
91
|
+
TabularTextLineTest: test_creates_with_content_and_length
|
92
|
+
---------------------------------------------------------
|
93
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
94
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
95
|
+
--------------------------------------
|
96
|
+
TabularTextLineTest: test_joins_fields
|
97
|
+
--------------------------------------
|
98
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
99
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
100
|
+
---------------------------------------------------
|
101
|
+
TabularTextBuilderTest: test_joins_lines_with_CR+LF
|
102
|
+
---------------------------------------------------
|
103
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
104
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
105
|
+
------------------------------------------
|
106
|
+
TabularTextBuilderTest: test_returns_ascii
|
107
|
+
------------------------------------------
|
108
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
109
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
110
|
+
------------------------------------------------
|
111
|
+
TabularTextFieldTest: test_time_returns_YYYYMMDD
|
112
|
+
------------------------------------------------
|
113
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
114
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
115
|
+
-------------------------------------------------------------------------
|
116
|
+
TabularTextFieldTest: test_number_with_length_pads_with_zeros_to_the_left
|
117
|
+
-------------------------------------------------------------------------
|
118
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
119
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
120
|
+
-----------------------------------
|
121
|
+
TabularTextFieldTest: test_is_ascii
|
122
|
+
-----------------------------------
|
123
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
124
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
125
|
+
---------------------------------------------------------------
|
126
|
+
TabularTextFieldTest: test_number_without_length_returns_number
|
127
|
+
---------------------------------------------------------------
|
128
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
129
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
130
|
+
---------------------------------------------------------------------------
|
131
|
+
TabularTextFieldTest: test_string_with_length_pads_with_spaces_to_the_right
|
132
|
+
---------------------------------------------------------------------------
|
133
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
134
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
135
|
+
-------------------------------------------------------
|
136
|
+
TabularTextFieldTest: test_special_chars_get_normalized
|
137
|
+
-------------------------------------------------------
|
138
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
139
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
140
|
+
------------------------------------------------
|
141
|
+
TabularTextFieldTest: test_date_returns_YYYYMMDD
|
142
|
+
------------------------------------------------
|
143
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
144
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
145
|
+
---------------------------------------------------------------
|
146
|
+
TabularTextFieldTest: test_string_without_length_returns_string
|
147
|
+
---------------------------------------------------------------
|
148
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
149
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
150
|
+
-------------------------------------------------------------
|
151
|
+
TabularTextFieldTest: test_string_too_big_for_length_gets_cut
|
152
|
+
-------------------------------------------------------------
|
153
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
154
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
155
|
+
------------------------------------------------------------------------
|
156
|
+
TabularTextFieldTest: test_nil_with_length_pads_with_spaces_to_the_right
|
157
|
+
------------------------------------------------------------------------
|
158
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
159
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
160
|
+
------------------------------------------
|
161
|
+
NavigationTest: test_renders_as_text/plain
|
162
|
+
------------------------------------------
|
163
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
164
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
165
|
+
------------------------------------------
|
166
|
+
NavigationTest: test_renders_using_tabular
|
167
|
+
------------------------------------------
|
168
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
169
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
170
|
+
------------------------------------------
|
171
|
+
NavigationTest: test_renders_as_attachment
|
172
|
+
------------------------------------------
|
173
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
174
|
+
[1m[35m (0.8ms)[0m [1m[34mSELECT sqlite_version(*)[0m
|
175
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
176
|
+
------------------------------------------
|
177
|
+
NavigationTest: test_renders_as_text/plain
|
178
|
+
------------------------------------------
|
179
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
180
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
181
|
+
------------------------------------------
|
182
|
+
NavigationTest: test_renders_using_tabular
|
183
|
+
------------------------------------------
|
184
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
185
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
186
|
+
------------------------------------------
|
187
|
+
NavigationTest: test_renders_as_attachment
|
188
|
+
------------------------------------------
|
189
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
190
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
191
|
+
---------------------------------------------------
|
192
|
+
TabularTextBuilderTest: test_joins_lines_with_CR+LF
|
193
|
+
---------------------------------------------------
|
194
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
195
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
196
|
+
------------------------------------------
|
197
|
+
TabularTextBuilderTest: test_returns_ascii
|
198
|
+
------------------------------------------
|
199
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
200
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
201
|
+
---------------------------------------------------------
|
202
|
+
TabularTextLineTest: test_creates_with_content_and_length
|
203
|
+
---------------------------------------------------------
|
204
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
205
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
206
|
+
--------------------------------------
|
207
|
+
TabularTextLineTest: test_joins_fields
|
208
|
+
--------------------------------------
|
209
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
210
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
211
|
+
---------------------------------------------------------------
|
212
|
+
TabularTextFieldTest: test_number_without_length_returns_number
|
213
|
+
---------------------------------------------------------------
|
214
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
215
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
216
|
+
-------------------------------------------------------
|
217
|
+
TabularTextFieldTest: test_special_chars_get_normalized
|
218
|
+
-------------------------------------------------------
|
219
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
220
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
221
|
+
-----------------------------------
|
222
|
+
TabularTextFieldTest: test_is_ascii
|
223
|
+
-----------------------------------
|
224
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
225
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
226
|
+
-------------------------------------------------------------------------
|
227
|
+
TabularTextFieldTest: test_number_with_length_pads_with_zeros_to_the_left
|
228
|
+
-------------------------------------------------------------------------
|
229
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
230
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
231
|
+
---------------------------------------------------------------
|
232
|
+
TabularTextFieldTest: test_string_without_length_returns_string
|
233
|
+
---------------------------------------------------------------
|
234
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
235
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
236
|
+
------------------------------------------------------------------------
|
237
|
+
TabularTextFieldTest: test_nil_with_length_pads_with_spaces_to_the_right
|
238
|
+
------------------------------------------------------------------------
|
239
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
240
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
241
|
+
------------------------------------------------
|
242
|
+
TabularTextFieldTest: test_date_returns_YYYYMMDD
|
243
|
+
------------------------------------------------
|
244
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
245
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
246
|
+
---------------------------------------------------------------------------
|
247
|
+
TabularTextFieldTest: test_string_with_length_pads_with_spaces_to_the_right
|
248
|
+
---------------------------------------------------------------------------
|
249
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
250
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
251
|
+
------------------------------------------------
|
252
|
+
TabularTextFieldTest: test_time_returns_YYYYMMDD
|
253
|
+
------------------------------------------------
|
254
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
255
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
256
|
+
-------------------------------------------------------------
|
257
|
+
TabularTextFieldTest: test_string_too_big_for_length_gets_cut
|
258
|
+
-------------------------------------------------------------
|
259
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
260
|
+
[1m[35m (0.8ms)[0m [1m[34mSELECT sqlite_version(*)[0m
|
261
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
262
|
+
---------------------------------------------------
|
263
|
+
TabularTextBuilderTest: test_joins_lines_with_CR+LF
|
264
|
+
---------------------------------------------------
|
265
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
266
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
267
|
+
------------------------------------------
|
268
|
+
TabularTextBuilderTest: test_returns_ascii
|
269
|
+
------------------------------------------
|
270
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
271
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
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
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
277
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
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
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
283
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
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
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
289
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
290
|
+
------------------------------------------------
|
291
|
+
TabularTextFieldTest: test_date_returns_YYYYMMDD
|
292
|
+
------------------------------------------------
|
293
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
294
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
295
|
+
-----------------------------------
|
296
|
+
TabularTextFieldTest: test_is_ascii
|
297
|
+
-----------------------------------
|
298
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
299
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
300
|
+
-------------------------------------------------------
|
301
|
+
TabularTextFieldTest: test_special_chars_get_normalized
|
302
|
+
-------------------------------------------------------
|
303
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
304
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
305
|
+
-------------------------------------------------------------------------
|
306
|
+
TabularTextFieldTest: test_number_with_length_pads_with_zeros_to_the_left
|
307
|
+
-------------------------------------------------------------------------
|
308
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
309
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
310
|
+
------------------------------------------------------------------------
|
311
|
+
TabularTextFieldTest: test_nil_with_length_pads_with_spaces_to_the_right
|
312
|
+
------------------------------------------------------------------------
|
313
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
314
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
315
|
+
---------------------------------------------------------------
|
316
|
+
TabularTextFieldTest: test_number_without_length_returns_number
|
317
|
+
---------------------------------------------------------------
|
318
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
319
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
320
|
+
------------------------------------------------
|
321
|
+
TabularTextFieldTest: test_time_returns_YYYYMMDD
|
322
|
+
------------------------------------------------
|
323
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
324
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
325
|
+
-------------------------------------------------------------
|
326
|
+
TabularTextFieldTest: test_string_too_big_for_length_gets_cut
|
327
|
+
-------------------------------------------------------------
|
328
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
329
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
330
|
+
---------------------------------------------------------------------------
|
331
|
+
TabularTextFieldTest: test_string_with_length_pads_with_spaces_to_the_right
|
332
|
+
---------------------------------------------------------------------------
|
333
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
334
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
335
|
+
---------------------------------------------------------------
|
336
|
+
TabularTextFieldTest: test_string_without_length_returns_string
|
337
|
+
---------------------------------------------------------------
|
338
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
339
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
340
|
+
--------------------------------------
|
341
|
+
TabularTextLineTest: test_joins_fields
|
342
|
+
--------------------------------------
|
343
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
344
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
345
|
+
---------------------------------------------------------
|
346
|
+
TabularTextLineTest: test_creates_with_content_and_length
|
347
|
+
---------------------------------------------------------
|
348
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
349
|
+
[1m[35m (2.3ms)[0m [1m[34mSELECT sqlite_version(*)[0m
|
350
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
351
|
+
---------------------------------------------------------
|
352
|
+
TabularTextLineTest: test_creates_with_content_and_length
|
353
|
+
---------------------------------------------------------
|
354
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
355
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
356
|
+
--------------------------------------
|
357
|
+
TabularTextLineTest: test_joins_fields
|
358
|
+
--------------------------------------
|
359
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
360
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
361
|
+
------------------------------------------------------------------------
|
362
|
+
TabularTextFieldTest: test_nil_with_length_pads_with_spaces_to_the_right
|
363
|
+
------------------------------------------------------------------------
|
364
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
365
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
366
|
+
---------------------------------------------------------------
|
367
|
+
TabularTextFieldTest: test_number_without_length_returns_number
|
368
|
+
---------------------------------------------------------------
|
369
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
370
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
371
|
+
-------------------------------------------------------
|
372
|
+
TabularTextFieldTest: test_special_chars_get_normalized
|
373
|
+
-------------------------------------------------------
|
374
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
375
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
376
|
+
---------------------------------------------------------------------------
|
377
|
+
TabularTextFieldTest: test_string_with_length_pads_with_spaces_to_the_right
|
378
|
+
---------------------------------------------------------------------------
|
379
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
380
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
381
|
+
------------------------------------------------
|
382
|
+
TabularTextFieldTest: test_time_returns_YYYYMMDD
|
383
|
+
------------------------------------------------
|
384
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
385
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
386
|
+
-------------------------------------------------------------------------
|
387
|
+
TabularTextFieldTest: test_number_with_length_pads_with_zeros_to_the_left
|
388
|
+
-------------------------------------------------------------------------
|
389
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
390
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
391
|
+
------------------------------------------------
|
392
|
+
TabularTextFieldTest: test_date_returns_YYYYMMDD
|
393
|
+
------------------------------------------------
|
394
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
395
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
396
|
+
-------------------------------------------------------------
|
397
|
+
TabularTextFieldTest: test_string_too_big_for_length_gets_cut
|
398
|
+
-------------------------------------------------------------
|
399
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
400
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
401
|
+
---------------------------------------------------------------
|
402
|
+
TabularTextFieldTest: test_string_without_length_returns_string
|
403
|
+
---------------------------------------------------------------
|
404
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
405
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
406
|
+
-----------------------------------
|
407
|
+
TabularTextFieldTest: test_is_ascii
|
408
|
+
-----------------------------------
|
409
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
410
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
411
|
+
---------------------------------------------------
|
412
|
+
TabularTextBuilderTest: test_joins_lines_with_CR+LF
|
413
|
+
---------------------------------------------------
|
414
|
+
[1m[35m (0.4ms)[0m [1m[31mrollback transaction[0m
|
415
|
+
[1m[35m (0.3ms)[0m [1m[36mbegin transaction[0m
|
416
|
+
------------------------------------------
|
417
|
+
TabularTextBuilderTest: test_returns_ascii
|
418
|
+
------------------------------------------
|
419
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
420
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
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
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
426
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
432
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
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
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
438
|
+
[1m[35m (0.8ms)[0m [1m[34mSELECT sqlite_version(*)[0m
|
439
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
440
|
+
---------------------------------------------------------
|
441
|
+
TabularTextLineTest: test_creates_with_content_and_length
|
442
|
+
---------------------------------------------------------
|
443
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
444
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
445
|
+
--------------------------------------
|
446
|
+
TabularTextLineTest: test_joins_fields
|
447
|
+
--------------------------------------
|
448
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
449
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
450
|
+
---------------------------------------------------------------
|
451
|
+
TabularTextFieldTest: test_string_without_length_returns_string
|
452
|
+
---------------------------------------------------------------
|
453
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
454
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
455
|
+
------------------------------------------------
|
456
|
+
TabularTextFieldTest: test_time_returns_YYYYMMDD
|
457
|
+
------------------------------------------------
|
458
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
459
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
460
|
+
------------------------------------------------
|
461
|
+
TabularTextFieldTest: test_date_returns_YYYYMMDD
|
462
|
+
------------------------------------------------
|
463
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
464
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
465
|
+
-------------------------------------------------------------
|
466
|
+
TabularTextFieldTest: test_string_too_big_for_length_gets_cut
|
467
|
+
-------------------------------------------------------------
|
468
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
469
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
470
|
+
---------------------------------------------------------------
|
471
|
+
TabularTextFieldTest: test_number_without_length_returns_number
|
472
|
+
---------------------------------------------------------------
|
473
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
474
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
475
|
+
-----------------------------------
|
476
|
+
TabularTextFieldTest: test_is_ascii
|
477
|
+
-----------------------------------
|
478
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
479
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
480
|
+
---------------------------------------------------------------------------
|
481
|
+
TabularTextFieldTest: test_string_with_length_pads_with_spaces_to_the_right
|
482
|
+
---------------------------------------------------------------------------
|
483
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
484
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
485
|
+
-------------------------------------------------------------------------
|
486
|
+
TabularTextFieldTest: test_number_with_length_pads_with_zeros_to_the_left
|
487
|
+
-------------------------------------------------------------------------
|
488
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
489
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
490
|
+
-------------------------------------------------------
|
491
|
+
TabularTextFieldTest: test_special_chars_get_normalized
|
492
|
+
-------------------------------------------------------
|
493
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
494
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
495
|
+
------------------------------------------------------------------------
|
496
|
+
TabularTextFieldTest: test_nil_with_length_pads_with_spaces_to_the_right
|
497
|
+
------------------------------------------------------------------------
|
498
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
499
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
500
|
+
---------------------------------------------------
|
501
|
+
TabularTextBuilderTest: test_joins_lines_with_CR+LF
|
502
|
+
---------------------------------------------------
|
503
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
504
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
505
|
+
------------------------------------------
|
506
|
+
TabularTextBuilderTest: test_returns_ascii
|
507
|
+
------------------------------------------
|
508
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
509
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
522
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
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
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
535
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
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
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
548
|
+
[1m[35m (0.8ms)[0m [1m[34mSELECT sqlite_version(*)[0m
|
549
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
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
|
-
|
7
|
-
Rendered text
|
8
|
-
|
9
|
-
|
10
|
-
|
11
|
-
|
12
|
-
|
13
|
-
|
14
|
-
|
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
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
562
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
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
|
-
|
17
|
-
Rendered text
|
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.
|
20
|
-
[1m[35m (0.1ms)[0m
|
21
|
-
[1m[
|
22
|
-
|
23
|
-
|
24
|
-
|
573
|
+
Completed 200 OK in 1ms (Views: 0.5ms | ActiveRecord: 0.0ms | Allocations: 411)
|
574
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
575
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
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
|
-
|
27
|
-
Rendered text
|
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.
|
30
|
-
[1m[35m (0.
|
31
|
-
[1m[
|
32
|
-
[1m[35m (0.0ms)[0m rollback transaction
|
33
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
34
|
-
[1m[35m (0.0ms)[0m rollback transaction
|
35
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
36
|
-
[1m[35m (0.0ms)[0m rollback transaction
|
37
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
38
|
-
[1m[35m (0.0ms)[0m rollback transaction
|
39
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
40
|
-
[1m[35m (0.0ms)[0m rollback transaction
|
41
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
42
|
-
[1m[35m (0.0ms)[0m rollback transaction
|
43
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
44
|
-
[1m[35m (0.0ms)[0m rollback transaction
|
45
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
46
|
-
[1m[35m (0.0ms)[0m rollback transaction
|
47
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
48
|
-
[1m[35m (0.0ms)[0m rollback transaction
|
49
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
50
|
-
[1m[35m (0.0ms)[0m rollback transaction
|
51
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
52
|
-
[1m[35m (0.0ms)[0m rollback transaction
|
53
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
54
|
-
[1m[35m (0.0ms)[0m rollback transaction
|
55
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
56
|
-
[1m[35m (0.0ms)[0m rollback transaction
|
57
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
58
|
-
[1m[35m (0.0ms)[0m rollback transaction
|
59
|
-
[1m[36m (2.9ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) [0m
|
60
|
-
[1m[35m (0.9ms)[0m CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
|
61
|
-
[1m[36m (0.1ms)[0m [1mSELECT version FROM "schema_migrations"[0m
|
62
|
-
[1m[35m (0.8ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('0')
|
63
|
-
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
586
|
+
Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms | Allocations: 412)
|
587
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
588
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
64
589
|
---------------------------------------------------------
|
65
590
|
TabularTextLineTest: test_creates_with_content_and_length
|
66
591
|
---------------------------------------------------------
|
592
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
593
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
67
594
|
--------------------------------------
|
68
595
|
TabularTextLineTest: test_joins_fields
|
69
596
|
--------------------------------------
|
597
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
598
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
599
|
+
---------------------------------------------------
|
600
|
+
TabularTextBuilderTest: test_joins_lines_with_CR+LF
|
601
|
+
---------------------------------------------------
|
602
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
603
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
604
|
+
------------------------------------------
|
605
|
+
TabularTextBuilderTest: test_returns_ascii
|
606
|
+
------------------------------------------
|
607
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
608
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
609
|
+
---------------------------------------------------------------
|
610
|
+
TabularTextFieldTest: test_number_without_length_returns_number
|
611
|
+
---------------------------------------------------------------
|
612
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
613
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
614
|
+
-----------------------------------
|
615
|
+
TabularTextFieldTest: test_is_ascii
|
616
|
+
-----------------------------------
|
617
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
618
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
619
|
+
-------------------------------------------------------
|
620
|
+
TabularTextFieldTest: test_special_chars_get_normalized
|
621
|
+
-------------------------------------------------------
|
622
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
623
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
624
|
+
-------------------------------------------------------------------------
|
625
|
+
TabularTextFieldTest: test_number_with_length_pads_with_zeros_to_the_left
|
626
|
+
-------------------------------------------------------------------------
|
627
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
628
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
629
|
+
------------------------------------------------
|
630
|
+
TabularTextFieldTest: test_date_returns_YYYYMMDD
|
631
|
+
------------------------------------------------
|
632
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
633
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
634
|
+
------------------------------------------------
|
635
|
+
TabularTextFieldTest: test_time_returns_YYYYMMDD
|
636
|
+
------------------------------------------------
|
637
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
638
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
639
|
+
-------------------------------------------------------------
|
640
|
+
TabularTextFieldTest: test_string_too_big_for_length_gets_cut
|
641
|
+
-------------------------------------------------------------
|
642
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
643
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
644
|
+
---------------------------------------------------------------------------
|
645
|
+
TabularTextFieldTest: test_string_with_length_pads_with_spaces_to_the_right
|
646
|
+
---------------------------------------------------------------------------
|
647
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
648
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
649
|
+
------------------------------------------------------------------------
|
650
|
+
TabularTextFieldTest: test_nil_with_length_pads_with_spaces_to_the_right
|
651
|
+
------------------------------------------------------------------------
|
652
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
653
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
654
|
+
---------------------------------------------------------------
|
655
|
+
TabularTextFieldTest: test_string_without_length_returns_string
|
656
|
+
---------------------------------------------------------------
|
657
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
658
|
+
[1m[35m (1.1ms)[0m [1m[34mSELECT sqlite_version(*)[0m
|
659
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
70
660
|
------------------------------------------
|
71
|
-
NavigationTest:
|
661
|
+
NavigationTest: test_renders_as_text/plain
|
72
662
|
------------------------------------------
|
73
|
-
Started GET "/?format=text" for 127.0.0.1 at
|
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
|
-
|
76
|
-
Rendered text
|
77
|
-
|
78
|
-
|
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
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
672
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
79
673
|
------------------------------------------
|
80
|
-
NavigationTest:
|
674
|
+
NavigationTest: test_renders_using_tabular
|
81
675
|
------------------------------------------
|
82
|
-
Started GET "/?format=text" for 127.0.0.1 at
|
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
|
-
|
85
|
-
Rendered text
|
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.
|
683
|
+
Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms | Allocations: 411)
|
684
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
685
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
88
686
|
------------------------------------------
|
89
|
-
NavigationTest:
|
687
|
+
NavigationTest: test_renders_as_attachment
|
90
688
|
------------------------------------------
|
91
|
-
Started GET "/?format=text" for 127.0.0.1 at
|
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
|
-
|
94
|
-
Rendered text
|
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
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
698
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
699
|
+
---------------------------------------------------------
|
700
|
+
TabularTextLineTest: test_creates_with_content_and_length
|
701
|
+
---------------------------------------------------------
|
702
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
703
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
704
|
+
--------------------------------------
|
705
|
+
TabularTextLineTest: test_joins_fields
|
706
|
+
--------------------------------------
|
707
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
708
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
97
709
|
---------------------------------------------------
|
98
710
|
TabularTextBuilderTest: test_joins_lines_with_CR+LF
|
99
711
|
---------------------------------------------------
|
712
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
713
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
100
714
|
------------------------------------------
|
101
715
|
TabularTextBuilderTest: test_returns_ascii
|
102
716
|
------------------------------------------
|
717
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
718
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
719
|
+
------------------------------------------------------------------------
|
720
|
+
TabularTextFieldTest: test_nil_with_length_pads_with_spaces_to_the_right
|
721
|
+
------------------------------------------------------------------------
|
722
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
723
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
724
|
+
-------------------------------------------------------
|
725
|
+
TabularTextFieldTest: test_special_chars_get_normalized
|
726
|
+
-------------------------------------------------------
|
727
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
728
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
103
729
|
------------------------------------------------
|
104
730
|
TabularTextFieldTest: test_date_returns_YYYYMMDD
|
105
731
|
------------------------------------------------
|
732
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
733
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
106
734
|
-----------------------------------
|
107
735
|
TabularTextFieldTest: test_is_ascii
|
108
736
|
-----------------------------------
|
109
|
-
|
110
|
-
|
111
|
-
|
737
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
738
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
739
|
+
------------------------------------------------
|
740
|
+
TabularTextFieldTest: test_time_returns_YYYYMMDD
|
741
|
+
------------------------------------------------
|
742
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
743
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
112
744
|
-------------------------------------------------------------------------
|
113
745
|
TabularTextFieldTest: test_number_with_length_pads_with_zeros_to_the_left
|
114
746
|
-------------------------------------------------------------------------
|
747
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
748
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
115
749
|
---------------------------------------------------------------
|
116
750
|
TabularTextFieldTest: test_number_without_length_returns_number
|
117
751
|
---------------------------------------------------------------
|
118
|
-
|
119
|
-
|
120
|
-
|
121
|
-
|
122
|
-
|
123
|
-
|
752
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
753
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
754
|
+
---------------------------------------------------------------
|
755
|
+
TabularTextFieldTest: test_string_without_length_returns_string
|
756
|
+
---------------------------------------------------------------
|
757
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
758
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
124
759
|
---------------------------------------------------------------------------
|
125
760
|
TabularTextFieldTest: test_string_with_length_pads_with_spaces_to_the_right
|
126
761
|
---------------------------------------------------------------------------
|
762
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
763
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
764
|
+
-------------------------------------------------------------
|
765
|
+
TabularTextFieldTest: test_string_too_big_for_length_gets_cut
|
766
|
+
-------------------------------------------------------------
|
767
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
768
|
+
[1m[35m (1.2ms)[0m [1m[34mSELECT sqlite_version(*)[0m
|
769
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
770
|
+
------------------------------------------
|
771
|
+
TabularTextBuilderTest: test_returns_ascii
|
772
|
+
------------------------------------------
|
773
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
774
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
775
|
+
---------------------------------------------------
|
776
|
+
TabularTextBuilderTest: test_joins_lines_with_CR+LF
|
777
|
+
---------------------------------------------------
|
778
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
779
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
780
|
+
---------------------------------------------------------------
|
781
|
+
TabularTextFieldTest: test_number_without_length_returns_number
|
782
|
+
---------------------------------------------------------------
|
783
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
784
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
127
785
|
---------------------------------------------------------------
|
128
786
|
TabularTextFieldTest: test_string_without_length_returns_string
|
129
787
|
---------------------------------------------------------------
|
788
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
789
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
790
|
+
-------------------------------------------------------------------------
|
791
|
+
TabularTextFieldTest: test_number_with_length_pads_with_zeros_to_the_left
|
792
|
+
-------------------------------------------------------------------------
|
793
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
794
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
795
|
+
---------------------------------------------------------------------------
|
796
|
+
TabularTextFieldTest: test_string_with_length_pads_with_spaces_to_the_right
|
797
|
+
---------------------------------------------------------------------------
|
798
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
799
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
800
|
+
-----------------------------------
|
801
|
+
TabularTextFieldTest: test_is_ascii
|
802
|
+
-----------------------------------
|
803
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
804
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
805
|
+
-------------------------------------------------------
|
806
|
+
TabularTextFieldTest: test_special_chars_get_normalized
|
807
|
+
-------------------------------------------------------
|
808
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
809
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
130
810
|
------------------------------------------------
|
131
811
|
TabularTextFieldTest: test_time_returns_YYYYMMDD
|
132
812
|
------------------------------------------------
|
133
|
-
|
134
|
-
|
135
|
-
|
136
|
-
|
137
|
-
|
138
|
-
|
813
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
814
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
815
|
+
------------------------------------------------------------------------
|
816
|
+
TabularTextFieldTest: test_nil_with_length_pads_with_spaces_to_the_right
|
817
|
+
------------------------------------------------------------------------
|
818
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
819
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
820
|
+
-------------------------------------------------------------
|
821
|
+
TabularTextFieldTest: test_string_too_big_for_length_gets_cut
|
822
|
+
-------------------------------------------------------------
|
823
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
824
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
825
|
+
------------------------------------------------
|
826
|
+
TabularTextFieldTest: test_date_returns_YYYYMMDD
|
827
|
+
------------------------------------------------
|
828
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
829
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
139
830
|
------------------------------------------
|
140
831
|
NavigationTest: test_renders_as_attachment
|
141
832
|
------------------------------------------
|
142
|
-
Started GET "/?format=text" for 127.0.0.1 at
|
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
|
-
|
145
|
-
Rendered text
|
146
|
-
|
147
|
-
|
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
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
842
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
148
843
|
------------------------------------------
|
149
|
-
NavigationTest:
|
844
|
+
NavigationTest: test_renders_using_tabular
|
150
845
|
------------------------------------------
|
151
|
-
Started GET "/?format=text" for 127.0.0.1 at
|
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
|
-
|
154
|
-
Rendered text
|
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.
|
853
|
+
Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.0ms | Allocations: 410)
|
854
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
855
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
157
856
|
------------------------------------------
|
158
|
-
NavigationTest:
|
857
|
+
NavigationTest: test_renders_as_text/plain
|
159
858
|
------------------------------------------
|
160
|
-
Started GET "/?format=text" for 127.0.0.1 at
|
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
|
-
|
163
|
-
Rendered text
|
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.
|
166
|
-
|
167
|
-
|
168
|
-
|
169
|
-
|
170
|
-
|
171
|
-
|
866
|
+
Completed 200 OK in 1ms (Views: 0.4ms | ActiveRecord: 0.0ms | Allocations: 410)
|
867
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
868
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
869
|
+
---------------------------------------------------------
|
870
|
+
TabularTextLineTest: test_creates_with_content_and_length
|
871
|
+
---------------------------------------------------------
|
872
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
873
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
874
|
+
--------------------------------------
|
875
|
+
TabularTextLineTest: test_joins_fields
|
876
|
+
--------------------------------------
|
877
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
878
|
+
[1m[35m (0.8ms)[0m [1m[34mSELECT sqlite_version(*)[0m
|
879
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
880
|
+
-------------------------------------------------------------------------
|
881
|
+
TabularTextFieldTest: test_number_with_length_pads_with_zeros_to_the_left
|
882
|
+
-------------------------------------------------------------------------
|
883
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
884
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
885
|
+
---------------------------------------------------------------
|
886
|
+
TabularTextFieldTest: test_string_without_length_returns_string
|
887
|
+
---------------------------------------------------------------
|
888
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
889
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
172
890
|
------------------------------------------------
|
173
891
|
TabularTextFieldTest: test_date_returns_YYYYMMDD
|
174
892
|
------------------------------------------------
|
893
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
894
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
895
|
+
-------------------------------------------------------------
|
896
|
+
TabularTextFieldTest: test_string_too_big_for_length_gets_cut
|
897
|
+
-------------------------------------------------------------
|
898
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
899
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
175
900
|
-----------------------------------
|
176
901
|
TabularTextFieldTest: test_is_ascii
|
177
902
|
-----------------------------------
|
903
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
904
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
178
905
|
------------------------------------------------------------------------
|
179
906
|
TabularTextFieldTest: test_nil_with_length_pads_with_spaces_to_the_right
|
180
907
|
------------------------------------------------------------------------
|
181
|
-
|
182
|
-
|
183
|
-
-------------------------------------------------------------------------
|
908
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
909
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
184
910
|
---------------------------------------------------------------
|
185
911
|
TabularTextFieldTest: test_number_without_length_returns_number
|
186
912
|
---------------------------------------------------------------
|
913
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
914
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
915
|
+
------------------------------------------------
|
916
|
+
TabularTextFieldTest: test_time_returns_YYYYMMDD
|
917
|
+
------------------------------------------------
|
918
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
919
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
187
920
|
-------------------------------------------------------
|
188
921
|
TabularTextFieldTest: test_special_chars_get_normalized
|
189
922
|
-------------------------------------------------------
|
190
|
-
|
191
|
-
|
192
|
-
-------------------------------------------------------------
|
923
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
924
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
193
925
|
---------------------------------------------------------------------------
|
194
926
|
TabularTextFieldTest: test_string_with_length_pads_with_spaces_to_the_right
|
195
927
|
---------------------------------------------------------------------------
|
196
|
-
|
197
|
-
|
198
|
-
---------------------------------------------------------------
|
199
|
-
------------------------------------------------
|
200
|
-
TabularTextFieldTest: test_time_returns_YYYYMMDD
|
201
|
-
------------------------------------------------
|
202
|
-
---------------------------------------------------------
|
203
|
-
TabularTextLineTest: test_creates_with_content_and_length
|
204
|
-
---------------------------------------------------------
|
928
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
929
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
205
930
|
--------------------------------------
|
206
931
|
TabularTextLineTest: test_joins_fields
|
207
932
|
--------------------------------------
|
933
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
934
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
935
|
+
---------------------------------------------------------
|
936
|
+
TabularTextLineTest: test_creates_with_content_and_length
|
937
|
+
---------------------------------------------------------
|
938
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
939
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
208
940
|
------------------------------------------
|
209
|
-
NavigationTest:
|
941
|
+
NavigationTest: test_renders_using_tabular
|
210
942
|
------------------------------------------
|
211
|
-
Started GET "/?format=text" for 127.0.0.1 at
|
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
|
-
|
214
|
-
|
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
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
952
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
215
953
|
------------------------------------------
|
216
|
-
NavigationTest:
|
954
|
+
NavigationTest: test_renders_as_attachment
|
217
955
|
------------------------------------------
|
218
|
-
Started GET "/?format=text" for 127.0.0.1 at
|
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
|
-
|
221
|
-
Rendered text
|
222
|
-
|
223
|
-
|
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
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
965
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
224
966
|
------------------------------------------
|
225
|
-
NavigationTest:
|
967
|
+
NavigationTest: test_renders_as_text/plain
|
226
968
|
------------------------------------------
|
227
|
-
Started GET "/?format=text" for 127.0.0.1 at
|
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
|
-
|
230
|
-
Rendered text
|
231
|
-
|
232
|
-
|
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
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
978
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
233
979
|
---------------------------------------------------
|
234
980
|
TabularTextBuilderTest: test_joins_lines_with_CR+LF
|
235
981
|
---------------------------------------------------
|
982
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
983
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
236
984
|
------------------------------------------
|
237
985
|
TabularTextBuilderTest: test_returns_ascii
|
238
986
|
------------------------------------------
|
239
|
-
|
240
|
-
|
241
|
-
|
242
|
-
|
243
|
-
|
244
|
-
|
245
|
-
|
246
|
-
|
247
|
-
|
248
|
-
|
249
|
-
|
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
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
988
|
+
[1m[35m (0.9ms)[0m [1m[34mSELECT sqlite_version(*)[0m
|
989
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
990
|
+
------------------------------------------
|
991
|
+
TabularTextBuilderTest: test_returns_ascii
|
992
|
+
------------------------------------------
|
993
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
994
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
995
|
+
---------------------------------------------------
|
996
|
+
TabularTextBuilderTest: test_joins_lines_with_CR+LF
|
997
|
+
---------------------------------------------------
|
998
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
999
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
269
1000
|
---------------------------------------------------------
|
270
1001
|
TabularTextLineTest: test_creates_with_content_and_length
|
271
1002
|
---------------------------------------------------------
|
1003
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
1004
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
272
1005
|
--------------------------------------
|
273
1006
|
TabularTextLineTest: test_joins_fields
|
274
1007
|
--------------------------------------
|
1008
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
1009
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
275
1010
|
------------------------------------------
|
276
|
-
NavigationTest:
|
1011
|
+
NavigationTest: test_renders_using_tabular
|
277
1012
|
------------------------------------------
|
278
|
-
Started GET "/?format=text" for 127.0.0.1 at
|
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
|
-
|
281
|
-
Rendered text
|
282
|
-
|
283
|
-
|
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
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
1022
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
284
1023
|
------------------------------------------
|
285
1024
|
NavigationTest: test_renders_as_text/plain
|
286
1025
|
------------------------------------------
|
287
|
-
Started GET "/?format=text" for 127.0.0.1 at
|
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
|
-
|
290
|
-
Rendered text
|
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.
|
1033
|
+
Completed 200 OK in 1ms (Views: 0.4ms | ActiveRecord: 0.0ms | Allocations: 410)
|
1034
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
1035
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
293
1036
|
------------------------------------------
|
294
|
-
NavigationTest:
|
1037
|
+
NavigationTest: test_renders_as_attachment
|
295
1038
|
------------------------------------------
|
296
|
-
Started GET "/?format=text" for 127.0.0.1 at
|
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
|
-
|
299
|
-
Rendered text
|
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.
|
302
|
-
|
303
|
-
|
304
|
-
|
305
|
-
|
306
|
-
|
307
|
-
|
1046
|
+
Completed 200 OK in 1ms (Views: 0.4ms | ActiveRecord: 0.0ms | Allocations: 410)
|
1047
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
1048
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
1049
|
+
------------------------------------------------
|
1050
|
+
TabularTextFieldTest: test_time_returns_YYYYMMDD
|
1051
|
+
------------------------------------------------
|
1052
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
1053
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
1054
|
+
---------------------------------------------------------------
|
1055
|
+
TabularTextFieldTest: test_string_without_length_returns_string
|
1056
|
+
---------------------------------------------------------------
|
1057
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
1058
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
1059
|
+
---------------------------------------------------------------------------
|
1060
|
+
TabularTextFieldTest: test_string_with_length_pads_with_spaces_to_the_right
|
1061
|
+
---------------------------------------------------------------------------
|
1062
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
1063
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
1064
|
+
---------------------------------------------------------------
|
1065
|
+
TabularTextFieldTest: test_number_without_length_returns_number
|
1066
|
+
---------------------------------------------------------------
|
1067
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
1068
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
1069
|
+
-------------------------------------------------------
|
1070
|
+
TabularTextFieldTest: test_special_chars_get_normalized
|
1071
|
+
-------------------------------------------------------
|
1072
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
1073
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
308
1074
|
------------------------------------------------
|
309
1075
|
TabularTextFieldTest: test_date_returns_YYYYMMDD
|
310
1076
|
------------------------------------------------
|
311
|
-
|
312
|
-
|
313
|
-
-----------------------------------
|
1077
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
1078
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
314
1079
|
------------------------------------------------------------------------
|
315
1080
|
TabularTextFieldTest: test_nil_with_length_pads_with_spaces_to_the_right
|
316
1081
|
------------------------------------------------------------------------
|
1082
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
1083
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
1084
|
+
-----------------------------------
|
1085
|
+
TabularTextFieldTest: test_is_ascii
|
1086
|
+
-----------------------------------
|
1087
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
1088
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
1089
|
+
-------------------------------------------------------------
|
1090
|
+
TabularTextFieldTest: test_string_too_big_for_length_gets_cut
|
1091
|
+
-------------------------------------------------------------
|
1092
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
1093
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
317
1094
|
-------------------------------------------------------------------------
|
318
1095
|
TabularTextFieldTest: test_number_with_length_pads_with_zeros_to_the_left
|
319
1096
|
-------------------------------------------------------------------------
|
320
|
-
|
321
|
-
|
322
|
-
|
1097
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
1098
|
+
[1m[35m (1.4ms)[0m [1m[34mSELECT sqlite_version(*)[0m
|
1099
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
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
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
1112
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
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
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
1125
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
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
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
1138
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
1139
|
+
---------------------------------------------------------------------------
|
1140
|
+
TabularTextFieldTest: test_string_with_length_pads_with_spaces_to_the_right
|
1141
|
+
---------------------------------------------------------------------------
|
1142
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
1143
|
+
[1m[35m (0.2ms)[0m [1m[36mbegin transaction[0m
|
323
1144
|
-------------------------------------------------------
|
324
1145
|
TabularTextFieldTest: test_special_chars_get_normalized
|
325
1146
|
-------------------------------------------------------
|
1147
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
1148
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
1149
|
+
---------------------------------------------------------------
|
1150
|
+
TabularTextFieldTest: test_number_without_length_returns_number
|
1151
|
+
---------------------------------------------------------------
|
1152
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
1153
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
326
1154
|
-------------------------------------------------------------
|
327
1155
|
TabularTextFieldTest: test_string_too_big_for_length_gets_cut
|
328
1156
|
-------------------------------------------------------------
|
329
|
-
|
330
|
-
|
331
|
-
|
1157
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
1158
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
1159
|
+
-------------------------------------------------------------------------
|
1160
|
+
TabularTextFieldTest: test_number_with_length_pads_with_zeros_to_the_left
|
1161
|
+
-------------------------------------------------------------------------
|
1162
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
1163
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
1164
|
+
-----------------------------------
|
1165
|
+
TabularTextFieldTest: test_is_ascii
|
1166
|
+
-----------------------------------
|
1167
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
1168
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
1169
|
+
------------------------------------------------
|
1170
|
+
TabularTextFieldTest: test_time_returns_YYYYMMDD
|
1171
|
+
------------------------------------------------
|
1172
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
1173
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
1174
|
+
------------------------------------------------------------------------
|
1175
|
+
TabularTextFieldTest: test_nil_with_length_pads_with_spaces_to_the_right
|
1176
|
+
------------------------------------------------------------------------
|
1177
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
1178
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
332
1179
|
---------------------------------------------------------------
|
333
1180
|
TabularTextFieldTest: test_string_without_length_returns_string
|
334
1181
|
---------------------------------------------------------------
|
1182
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
1183
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
335
1184
|
------------------------------------------------
|
336
|
-
TabularTextFieldTest:
|
1185
|
+
TabularTextFieldTest: test_date_returns_YYYYMMDD
|
337
1186
|
------------------------------------------------
|
1187
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
1188
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
1189
|
+
---------------------------------------------------
|
1190
|
+
TabularTextBuilderTest: test_joins_lines_with_CR+LF
|
1191
|
+
---------------------------------------------------
|
1192
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
1193
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
1194
|
+
------------------------------------------
|
1195
|
+
TabularTextBuilderTest: test_returns_ascii
|
1196
|
+
------------------------------------------
|
1197
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
1198
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
338
1199
|
---------------------------------------------------------
|
339
1200
|
TabularTextLineTest: test_creates_with_content_and_length
|
340
1201
|
---------------------------------------------------------
|
1202
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
1203
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
341
1204
|
--------------------------------------
|
342
1205
|
TabularTextLineTest: test_joins_fields
|
343
1206
|
--------------------------------------
|
1207
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|