tabular-text 0.0.1 → 0.0.2
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 +7 -0
- data/lib/tabular-text/version.rb +1 -1
- data/test/dummy/Gemfile +45 -0
- data/test/dummy/Gemfile.lock +119 -0
- data/test/dummy/README.rdoc +15 -248
- data/test/dummy/Rakefile +0 -1
- data/test/dummy/app/assets/javascripts/application.js +4 -3
- data/test/dummy/app/assets/stylesheets/application.css +1 -1
- data/test/dummy/app/controllers/application_controller.rb +3 -1
- data/test/dummy/app/views/layouts/application.html.erb +2 -2
- data/test/dummy/bin/bundle +3 -0
- data/test/dummy/bin/rails +4 -0
- data/test/dummy/bin/rake +4 -0
- data/test/dummy/config.ru +1 -1
- data/test/dummy/config/application.rb +7 -37
- data/test/dummy/config/boot.rb +3 -8
- data/test/dummy/config/environment.rb +2 -2
- data/test/dummy/config/environments/development.rb +9 -20
- data/test/dummy/config/environments/production.rb +40 -27
- data/test/dummy/config/environments/test.rb +13 -14
- data/test/dummy/config/initializers/filter_parameter_logging.rb +4 -0
- data/test/dummy/config/initializers/inflections.rb +6 -5
- data/test/dummy/config/initializers/secret_token.rb +7 -2
- data/test/dummy/config/initializers/session_store.rb +0 -5
- data/test/dummy/config/initializers/wrap_parameters.rb +6 -6
- data/test/dummy/config/locales/en.yml +20 -2
- data/test/dummy/config/routes.rb +22 -24
- data/test/dummy/db/development.sqlite3 +0 -0
- data/test/dummy/db/schema.rb +16 -0
- data/test/dummy/db/seeds.rb +7 -0
- data/test/dummy/db/test.sqlite3 +0 -0
- data/test/dummy/log/development.log +3 -0
- data/test/dummy/log/test.log +343 -0
- data/test/dummy/public/404.html +43 -11
- data/test/dummy/public/422.html +43 -11
- data/test/dummy/public/500.html +43 -11
- data/test/dummy/public/robots.txt +5 -0
- data/test/dummy/test/test_helper.rb +15 -0
- data/test/test_helper.rb +1 -1
- metadata +46 -28
- data/test/dummy/config/database.yml +0 -25
data/test/dummy/config/routes.rb
CHANGED
@@ -1,20 +1,21 @@
|
|
1
1
|
Dummy::Application.routes.draw do
|
2
2
|
root to: 'home#index'
|
3
|
-
# The priority is based upon order of creation:
|
4
|
-
#
|
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
5
|
|
6
|
-
#
|
7
|
-
#
|
8
|
-
|
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'
|
9
11
|
|
10
|
-
#
|
11
|
-
#
|
12
|
-
# This route can be invoked with purchase_url(:id => product.id)
|
12
|
+
# Example of named route that can be invoked with purchase_url(id: product.id)
|
13
|
+
# get 'products/:id/purchase' => 'catalog#purchase', as: :purchase
|
13
14
|
|
14
|
-
#
|
15
|
+
# Example resource route (maps HTTP verbs to controller actions automatically):
|
15
16
|
# resources :products
|
16
17
|
|
17
|
-
#
|
18
|
+
# Example resource route with options:
|
18
19
|
# resources :products do
|
19
20
|
# member do
|
20
21
|
# get 'short'
|
@@ -26,34 +27,31 @@ Dummy::Application.routes.draw do
|
|
26
27
|
# end
|
27
28
|
# end
|
28
29
|
|
29
|
-
#
|
30
|
+
# Example resource route with sub-resources:
|
30
31
|
# resources :products do
|
31
32
|
# resources :comments, :sales
|
32
33
|
# resource :seller
|
33
34
|
# end
|
34
35
|
|
35
|
-
#
|
36
|
+
# Example resource route with more complex sub-resources:
|
36
37
|
# resources :products do
|
37
38
|
# resources :comments
|
38
39
|
# resources :sales do
|
39
|
-
# get 'recent', :
|
40
|
+
# get 'recent', on: :collection
|
40
41
|
# end
|
41
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
|
42
50
|
|
43
|
-
#
|
51
|
+
# Example resource route within a namespace:
|
44
52
|
# namespace :admin do
|
45
53
|
# # Directs /admin/products/* to Admin::ProductsController
|
46
54
|
# # (app/controllers/admin/products_controller.rb)
|
47
55
|
# resources :products
|
48
56
|
# end
|
49
|
-
|
50
|
-
# You can have the root of your site routed with "root"
|
51
|
-
# just remember to delete public/index.html.
|
52
|
-
# root :to => 'welcome#index'
|
53
|
-
|
54
|
-
# See how all your routes lay out with "rake routes"
|
55
|
-
|
56
|
-
# This is a legacy wild controller route that's not recommended for RESTful applications.
|
57
|
-
# Note: This route will make all actions in every controller accessible via GET requests.
|
58
|
-
# match ':controller(/:action(/:id))(.:format)'
|
59
57
|
end
|
Binary file
|
@@ -0,0 +1,16 @@
|
|
1
|
+
# encoding: UTF-8
|
2
|
+
# This file is auto-generated from the current state of the database. Instead
|
3
|
+
# of editing this file, please use the migrations feature of Active Record to
|
4
|
+
# incrementally modify your database, and then regenerate this schema definition.
|
5
|
+
#
|
6
|
+
# Note that this schema.rb definition is the authoritative source for your
|
7
|
+
# database schema. If you need to create the application database on another
|
8
|
+
# system, you should be using db:schema:load, not running all the migrations
|
9
|
+
# from scratch. The latter is a flawed and unsustainable approach (the more migrations
|
10
|
+
# you'll amass, the slower it'll run and the greater likelihood for issues).
|
11
|
+
#
|
12
|
+
# It's strongly recommended that you check this file into your version control system.
|
13
|
+
|
14
|
+
ActiveRecord::Schema.define(version: 0) do
|
15
|
+
|
16
|
+
end
|
@@ -0,0 +1,7 @@
|
|
1
|
+
# This file should contain all the record creation needed to seed the database with its default values.
|
2
|
+
# The data can then be loaded with the rake db:seed (or created alongside the db with db:setup).
|
3
|
+
#
|
4
|
+
# Examples:
|
5
|
+
#
|
6
|
+
# cities = City.create([{ name: 'Chicago' }, { name: 'Copenhagen' }])
|
7
|
+
# Mayor.create(name: 'Emanuel', city: cities.first)
|
Binary file
|
@@ -0,0 +1,3 @@
|
|
1
|
+
[1m[36m (1.1ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) [0m
|
2
|
+
[1m[35m (1.1ms)[0m CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
|
3
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
@@ -0,0 +1,343 @@
|
|
1
|
+
[1m[36m (0.3ms)[0m [1mbegin transaction[0m
|
2
|
+
|
3
|
+
|
4
|
+
Started GET "/?format=text" for 127.0.0.1 at 2013-08-28 16:00:46 -0400
|
5
|
+
Processing by HomeController#index as TEXT
|
6
|
+
Rendered home/index.text.tab (87.4ms)
|
7
|
+
Rendered text template (0.0ms)
|
8
|
+
Sent data tabular.txt (1.5ms)
|
9
|
+
Completed 200 OK in 96ms (Views: 95.4ms | ActiveRecord: 0.0ms)
|
10
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
11
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
12
|
+
|
13
|
+
|
14
|
+
Started GET "/?format=text" for 127.0.0.1 at 2013-08-28 16:00:46 -0400
|
15
|
+
Processing by HomeController#index as TEXT
|
16
|
+
Rendered home/index.text.tab (0.1ms)
|
17
|
+
Rendered text template (0.0ms)
|
18
|
+
Sent data tabular.txt (0.2ms)
|
19
|
+
Completed 200 OK in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
20
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
21
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
22
|
+
|
23
|
+
|
24
|
+
Started GET "/?format=text" for 127.0.0.1 at 2013-08-28 16:00:46 -0400
|
25
|
+
Processing by HomeController#index as TEXT
|
26
|
+
Rendered home/index.text.tab (0.1ms)
|
27
|
+
Rendered text template (0.0ms)
|
28
|
+
Sent data tabular.txt (0.3ms)
|
29
|
+
Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.0ms)
|
30
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
31
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
64
|
+
---------------------------------------------------------
|
65
|
+
TabularTextLineTest: test_creates_with_content_and_length
|
66
|
+
---------------------------------------------------------
|
67
|
+
--------------------------------------
|
68
|
+
TabularTextLineTest: test_joins_fields
|
69
|
+
--------------------------------------
|
70
|
+
------------------------------------------
|
71
|
+
NavigationTest: test_renders_as_attachment
|
72
|
+
------------------------------------------
|
73
|
+
Started GET "/?format=text" for 127.0.0.1 at 2013-08-28 18:30:10 -0400
|
74
|
+
Processing by HomeController#index as TEXT
|
75
|
+
Rendered home/index.text.tab (83.4ms)
|
76
|
+
Rendered text template (0.0ms)
|
77
|
+
Sent data tabular.txt (3.4ms)
|
78
|
+
Completed 200 OK in 93ms (Views: 92.6ms)
|
79
|
+
------------------------------------------
|
80
|
+
NavigationTest: test_renders_as_text/plain
|
81
|
+
------------------------------------------
|
82
|
+
Started GET "/?format=text" for 127.0.0.1 at 2013-08-28 18:30:10 -0400
|
83
|
+
Processing by HomeController#index as TEXT
|
84
|
+
Rendered home/index.text.tab (0.1ms)
|
85
|
+
Rendered text template (0.0ms)
|
86
|
+
Sent data tabular.txt (0.2ms)
|
87
|
+
Completed 200 OK in 1ms (Views: 0.8ms)
|
88
|
+
------------------------------------------
|
89
|
+
NavigationTest: test_renders_using_tabular
|
90
|
+
------------------------------------------
|
91
|
+
Started GET "/?format=text" for 127.0.0.1 at 2013-08-28 18:30:10 -0400
|
92
|
+
Processing by HomeController#index as TEXT
|
93
|
+
Rendered home/index.text.tab (0.1ms)
|
94
|
+
Rendered text template (0.0ms)
|
95
|
+
Sent data tabular.txt (0.2ms)
|
96
|
+
Completed 200 OK in 1ms (Views: 0.6ms)
|
97
|
+
---------------------------------------------------
|
98
|
+
TabularTextBuilderTest: test_joins_lines_with_CR+LF
|
99
|
+
---------------------------------------------------
|
100
|
+
------------------------------------------
|
101
|
+
TabularTextBuilderTest: test_returns_ascii
|
102
|
+
------------------------------------------
|
103
|
+
------------------------------------------------
|
104
|
+
TabularTextFieldTest: test_date_returns_YYYYMMDD
|
105
|
+
------------------------------------------------
|
106
|
+
-----------------------------------
|
107
|
+
TabularTextFieldTest: test_is_ascii
|
108
|
+
-----------------------------------
|
109
|
+
------------------------------------------------------------------------
|
110
|
+
TabularTextFieldTest: test_nil_with_length_pads_with_spaces_to_the_right
|
111
|
+
------------------------------------------------------------------------
|
112
|
+
-------------------------------------------------------------------------
|
113
|
+
TabularTextFieldTest: test_number_with_length_pads_with_zeros_to_the_left
|
114
|
+
-------------------------------------------------------------------------
|
115
|
+
---------------------------------------------------------------
|
116
|
+
TabularTextFieldTest: test_number_without_length_returns_number
|
117
|
+
---------------------------------------------------------------
|
118
|
+
-------------------------------------------------------
|
119
|
+
TabularTextFieldTest: test_special_chars_get_normalized
|
120
|
+
-------------------------------------------------------
|
121
|
+
-------------------------------------------------------------
|
122
|
+
TabularTextFieldTest: test_string_too_big_for_length_gets_cut
|
123
|
+
-------------------------------------------------------------
|
124
|
+
---------------------------------------------------------------------------
|
125
|
+
TabularTextFieldTest: test_string_with_length_pads_with_spaces_to_the_right
|
126
|
+
---------------------------------------------------------------------------
|
127
|
+
---------------------------------------------------------------
|
128
|
+
TabularTextFieldTest: test_string_without_length_returns_string
|
129
|
+
---------------------------------------------------------------
|
130
|
+
------------------------------------------------
|
131
|
+
TabularTextFieldTest: test_time_returns_YYYYMMDD
|
132
|
+
------------------------------------------------
|
133
|
+
---------------------------------------------------------
|
134
|
+
TabularTextLineTest: test_creates_with_content_and_length
|
135
|
+
---------------------------------------------------------
|
136
|
+
--------------------------------------
|
137
|
+
TabularTextLineTest: test_joins_fields
|
138
|
+
--------------------------------------
|
139
|
+
------------------------------------------
|
140
|
+
NavigationTest: test_renders_as_attachment
|
141
|
+
------------------------------------------
|
142
|
+
Started GET "/?format=text" for 127.0.0.1 at 2013-08-29 00:15:37 -0400
|
143
|
+
Processing by HomeController#index as TEXT
|
144
|
+
Rendered home/index.text.tab (92.1ms)
|
145
|
+
Rendered text template (0.0ms)
|
146
|
+
Sent data tabular.txt (1.6ms)
|
147
|
+
Completed 200 OK in 100ms (Views: 99.8ms)
|
148
|
+
------------------------------------------
|
149
|
+
NavigationTest: test_renders_as_text/plain
|
150
|
+
------------------------------------------
|
151
|
+
Started GET "/?format=text" for 127.0.0.1 at 2013-08-29 00:15:37 -0400
|
152
|
+
Processing by HomeController#index as TEXT
|
153
|
+
Rendered home/index.text.tab (0.2ms)
|
154
|
+
Rendered text template (0.0ms)
|
155
|
+
Sent data tabular.txt (0.3ms)
|
156
|
+
Completed 200 OK in 1ms (Views: 0.9ms)
|
157
|
+
------------------------------------------
|
158
|
+
NavigationTest: test_renders_using_tabular
|
159
|
+
------------------------------------------
|
160
|
+
Started GET "/?format=text" for 127.0.0.1 at 2013-08-29 00:15:37 -0400
|
161
|
+
Processing by HomeController#index as TEXT
|
162
|
+
Rendered home/index.text.tab (0.1ms)
|
163
|
+
Rendered text template (0.0ms)
|
164
|
+
Sent data tabular.txt (0.2ms)
|
165
|
+
Completed 200 OK in 1ms (Views: 0.6ms)
|
166
|
+
---------------------------------------------------
|
167
|
+
TabularTextBuilderTest: test_joins_lines_with_CR+LF
|
168
|
+
---------------------------------------------------
|
169
|
+
------------------------------------------
|
170
|
+
TabularTextBuilderTest: test_returns_ascii
|
171
|
+
------------------------------------------
|
172
|
+
------------------------------------------------
|
173
|
+
TabularTextFieldTest: test_date_returns_YYYYMMDD
|
174
|
+
------------------------------------------------
|
175
|
+
-----------------------------------
|
176
|
+
TabularTextFieldTest: test_is_ascii
|
177
|
+
-----------------------------------
|
178
|
+
------------------------------------------------------------------------
|
179
|
+
TabularTextFieldTest: test_nil_with_length_pads_with_spaces_to_the_right
|
180
|
+
------------------------------------------------------------------------
|
181
|
+
-------------------------------------------------------------------------
|
182
|
+
TabularTextFieldTest: test_number_with_length_pads_with_zeros_to_the_left
|
183
|
+
-------------------------------------------------------------------------
|
184
|
+
---------------------------------------------------------------
|
185
|
+
TabularTextFieldTest: test_number_without_length_returns_number
|
186
|
+
---------------------------------------------------------------
|
187
|
+
-------------------------------------------------------
|
188
|
+
TabularTextFieldTest: test_special_chars_get_normalized
|
189
|
+
-------------------------------------------------------
|
190
|
+
-------------------------------------------------------------
|
191
|
+
TabularTextFieldTest: test_string_too_big_for_length_gets_cut
|
192
|
+
-------------------------------------------------------------
|
193
|
+
---------------------------------------------------------------------------
|
194
|
+
TabularTextFieldTest: test_string_with_length_pads_with_spaces_to_the_right
|
195
|
+
---------------------------------------------------------------------------
|
196
|
+
---------------------------------------------------------------
|
197
|
+
TabularTextFieldTest: test_string_without_length_returns_string
|
198
|
+
---------------------------------------------------------------
|
199
|
+
------------------------------------------------
|
200
|
+
TabularTextFieldTest: test_time_returns_YYYYMMDD
|
201
|
+
------------------------------------------------
|
202
|
+
---------------------------------------------------------
|
203
|
+
TabularTextLineTest: test_creates_with_content_and_length
|
204
|
+
---------------------------------------------------------
|
205
|
+
--------------------------------------
|
206
|
+
TabularTextLineTest: test_joins_fields
|
207
|
+
--------------------------------------
|
208
|
+
------------------------------------------
|
209
|
+
NavigationTest: test_renders_as_attachment
|
210
|
+
------------------------------------------
|
211
|
+
Started GET "/?format=text" for 127.0.0.1 at 2013-08-29 00:16:27 -0400
|
212
|
+
Processing by HomeController#index as TEXT
|
213
|
+
Rendered home/index.text.tab (94.2ms)
|
214
|
+
Completed 500 Internal Server Error in 99ms
|
215
|
+
------------------------------------------
|
216
|
+
NavigationTest: test_renders_as_text/plain
|
217
|
+
------------------------------------------
|
218
|
+
Started GET "/?format=text" for 127.0.0.1 at 2013-08-29 00:16:27 -0400
|
219
|
+
Processing by HomeController#index as TEXT
|
220
|
+
Rendered home/index.text.tab (122.1ms)
|
221
|
+
Rendered text template (0.0ms)
|
222
|
+
Sent data tabular.txt (1.1ms)
|
223
|
+
Completed 200 OK in 124ms (Views: 123.7ms)
|
224
|
+
------------------------------------------
|
225
|
+
NavigationTest: test_renders_using_tabular
|
226
|
+
------------------------------------------
|
227
|
+
Started GET "/?format=text" for 127.0.0.1 at 2013-08-29 00:16:27 -0400
|
228
|
+
Processing by HomeController#index as TEXT
|
229
|
+
Rendered home/index.text.tab (0.2ms)
|
230
|
+
Rendered text template (0.0ms)
|
231
|
+
Sent data tabular.txt (0.2ms)
|
232
|
+
Completed 200 OK in 1ms (Views: 0.8ms)
|
233
|
+
---------------------------------------------------
|
234
|
+
TabularTextBuilderTest: test_joins_lines_with_CR+LF
|
235
|
+
---------------------------------------------------
|
236
|
+
------------------------------------------
|
237
|
+
TabularTextBuilderTest: test_returns_ascii
|
238
|
+
------------------------------------------
|
239
|
+
------------------------------------------------
|
240
|
+
TabularTextFieldTest: test_date_returns_YYYYMMDD
|
241
|
+
------------------------------------------------
|
242
|
+
-----------------------------------
|
243
|
+
TabularTextFieldTest: test_is_ascii
|
244
|
+
-----------------------------------
|
245
|
+
------------------------------------------------------------------------
|
246
|
+
TabularTextFieldTest: test_nil_with_length_pads_with_spaces_to_the_right
|
247
|
+
------------------------------------------------------------------------
|
248
|
+
-------------------------------------------------------------------------
|
249
|
+
TabularTextFieldTest: test_number_with_length_pads_with_zeros_to_the_left
|
250
|
+
-------------------------------------------------------------------------
|
251
|
+
---------------------------------------------------------------
|
252
|
+
TabularTextFieldTest: test_number_without_length_returns_number
|
253
|
+
---------------------------------------------------------------
|
254
|
+
-------------------------------------------------------
|
255
|
+
TabularTextFieldTest: test_special_chars_get_normalized
|
256
|
+
-------------------------------------------------------
|
257
|
+
-------------------------------------------------------------
|
258
|
+
TabularTextFieldTest: test_string_too_big_for_length_gets_cut
|
259
|
+
-------------------------------------------------------------
|
260
|
+
---------------------------------------------------------------------------
|
261
|
+
TabularTextFieldTest: test_string_with_length_pads_with_spaces_to_the_right
|
262
|
+
---------------------------------------------------------------------------
|
263
|
+
---------------------------------------------------------------
|
264
|
+
TabularTextFieldTest: test_string_without_length_returns_string
|
265
|
+
---------------------------------------------------------------
|
266
|
+
------------------------------------------------
|
267
|
+
TabularTextFieldTest: test_time_returns_YYYYMMDD
|
268
|
+
------------------------------------------------
|
269
|
+
---------------------------------------------------------
|
270
|
+
TabularTextLineTest: test_creates_with_content_and_length
|
271
|
+
---------------------------------------------------------
|
272
|
+
--------------------------------------
|
273
|
+
TabularTextLineTest: test_joins_fields
|
274
|
+
--------------------------------------
|
275
|
+
------------------------------------------
|
276
|
+
NavigationTest: test_renders_as_attachment
|
277
|
+
------------------------------------------
|
278
|
+
Started GET "/?format=text" for 127.0.0.1 at 2013-08-29 00:16:59 -0400
|
279
|
+
Processing by HomeController#index as TEXT
|
280
|
+
Rendered home/index.text.tab (84.8ms)
|
281
|
+
Rendered text template (0.0ms)
|
282
|
+
Sent data tabular.txt (1.1ms)
|
283
|
+
Completed 200 OK in 91ms (Views: 90.3ms)
|
284
|
+
------------------------------------------
|
285
|
+
NavigationTest: test_renders_as_text/plain
|
286
|
+
------------------------------------------
|
287
|
+
Started GET "/?format=text" for 127.0.0.1 at 2013-08-29 00:16:59 -0400
|
288
|
+
Processing by HomeController#index as TEXT
|
289
|
+
Rendered home/index.text.tab (0.2ms)
|
290
|
+
Rendered text template (0.0ms)
|
291
|
+
Sent data tabular.txt (0.2ms)
|
292
|
+
Completed 200 OK in 1ms (Views: 0.9ms)
|
293
|
+
------------------------------------------
|
294
|
+
NavigationTest: test_renders_using_tabular
|
295
|
+
------------------------------------------
|
296
|
+
Started GET "/?format=text" for 127.0.0.1 at 2013-08-29 00:16:59 -0400
|
297
|
+
Processing by HomeController#index as TEXT
|
298
|
+
Rendered home/index.text.tab (0.1ms)
|
299
|
+
Rendered text template (0.0ms)
|
300
|
+
Sent data tabular.txt (0.2ms)
|
301
|
+
Completed 200 OK in 1ms (Views: 0.6ms)
|
302
|
+
---------------------------------------------------
|
303
|
+
TabularTextBuilderTest: test_joins_lines_with_CR+LF
|
304
|
+
---------------------------------------------------
|
305
|
+
------------------------------------------
|
306
|
+
TabularTextBuilderTest: test_returns_ascii
|
307
|
+
------------------------------------------
|
308
|
+
------------------------------------------------
|
309
|
+
TabularTextFieldTest: test_date_returns_YYYYMMDD
|
310
|
+
------------------------------------------------
|
311
|
+
-----------------------------------
|
312
|
+
TabularTextFieldTest: test_is_ascii
|
313
|
+
-----------------------------------
|
314
|
+
------------------------------------------------------------------------
|
315
|
+
TabularTextFieldTest: test_nil_with_length_pads_with_spaces_to_the_right
|
316
|
+
------------------------------------------------------------------------
|
317
|
+
-------------------------------------------------------------------------
|
318
|
+
TabularTextFieldTest: test_number_with_length_pads_with_zeros_to_the_left
|
319
|
+
-------------------------------------------------------------------------
|
320
|
+
---------------------------------------------------------------
|
321
|
+
TabularTextFieldTest: test_number_without_length_returns_number
|
322
|
+
---------------------------------------------------------------
|
323
|
+
-------------------------------------------------------
|
324
|
+
TabularTextFieldTest: test_special_chars_get_normalized
|
325
|
+
-------------------------------------------------------
|
326
|
+
-------------------------------------------------------------
|
327
|
+
TabularTextFieldTest: test_string_too_big_for_length_gets_cut
|
328
|
+
-------------------------------------------------------------
|
329
|
+
---------------------------------------------------------------------------
|
330
|
+
TabularTextFieldTest: test_string_with_length_pads_with_spaces_to_the_right
|
331
|
+
---------------------------------------------------------------------------
|
332
|
+
---------------------------------------------------------------
|
333
|
+
TabularTextFieldTest: test_string_without_length_returns_string
|
334
|
+
---------------------------------------------------------------
|
335
|
+
------------------------------------------------
|
336
|
+
TabularTextFieldTest: test_time_returns_YYYYMMDD
|
337
|
+
------------------------------------------------
|
338
|
+
---------------------------------------------------------
|
339
|
+
TabularTextLineTest: test_creates_with_content_and_length
|
340
|
+
---------------------------------------------------------
|
341
|
+
--------------------------------------
|
342
|
+
TabularTextLineTest: test_joins_fields
|
343
|
+
--------------------------------------
|