dread 0.0.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (50) hide show
  1. checksums.yaml +7 -0
  2. data/MIT-LICENSE +20 -0
  3. data/README.rdoc +3 -0
  4. data/Rakefile +32 -0
  5. data/lib/dread.rb +10 -0
  6. data/lib/dread/graph.rb +46 -0
  7. data/lib/dread/version.rb +3 -0
  8. data/lib/tasks/dread.rake +8 -0
  9. data/test/dread_test.rb +24 -0
  10. data/test/dummy/README.rdoc +28 -0
  11. data/test/dummy/Rakefile +6 -0
  12. data/test/dummy/app/models/comment.rb +4 -0
  13. data/test/dummy/app/models/tweet.rb +4 -0
  14. data/test/dummy/app/models/user.rb +4 -0
  15. data/test/dummy/bin/bundle +3 -0
  16. data/test/dummy/bin/rails +4 -0
  17. data/test/dummy/bin/rake +4 -0
  18. data/test/dummy/config.ru +4 -0
  19. data/test/dummy/config/application.rb +23 -0
  20. data/test/dummy/config/boot.rb +5 -0
  21. data/test/dummy/config/database.yml +25 -0
  22. data/test/dummy/config/environment.rb +5 -0
  23. data/test/dummy/config/environments/development.rb +37 -0
  24. data/test/dummy/config/environments/production.rb +78 -0
  25. data/test/dummy/config/environments/test.rb +39 -0
  26. data/test/dummy/config/initializers/assets.rb +8 -0
  27. data/test/dummy/config/initializers/backtrace_silencers.rb +7 -0
  28. data/test/dummy/config/initializers/cookies_serializer.rb +3 -0
  29. data/test/dummy/config/initializers/filter_parameter_logging.rb +4 -0
  30. data/test/dummy/config/initializers/inflections.rb +16 -0
  31. data/test/dummy/config/initializers/mime_types.rb +4 -0
  32. data/test/dummy/config/initializers/session_store.rb +3 -0
  33. data/test/dummy/config/initializers/wrap_parameters.rb +14 -0
  34. data/test/dummy/config/locales/en.yml +23 -0
  35. data/test/dummy/config/routes.rb +56 -0
  36. data/test/dummy/config/secrets.yml +22 -0
  37. data/test/dummy/db/development.sqlite3 +0 -0
  38. data/test/dummy/db/migrate/20140913143036_create_users.rb +10 -0
  39. data/test/dummy/db/migrate/20140913143444_create_tweets.rb +10 -0
  40. data/test/dummy/db/migrate/20140913143724_create_comments.rb +11 -0
  41. data/test/dummy/db/schema.rb +38 -0
  42. data/test/dummy/db/test.sqlite3 +0 -0
  43. data/test/dummy/log/development.log +21 -0
  44. data/test/dummy/log/test.log +410 -0
  45. data/test/dummy/public/404.html +67 -0
  46. data/test/dummy/public/422.html +67 -0
  47. data/test/dummy/public/500.html +66 -0
  48. data/test/dummy/public/favicon.ico +0 -0
  49. data/test/test_helper.rb +15 -0
  50. metadata +175 -0
@@ -0,0 +1,8 @@
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
+ # Precompile additional assets.
7
+ # application.js, application.css, and all non-JS/CSS in app/assets folder are already added.
8
+ # Rails.application.config.assets.precompile += %w( search.js )
@@ -0,0 +1,7 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ # You can add backtrace silencers for libraries that you're using but don't wish to see in your backtraces.
4
+ # Rails.backtrace_cleaner.add_silencer { |line| line =~ /my_noisy_library/ }
5
+
6
+ # You can also remove all the silencers if you're trying to debug a problem that might stem from framework code.
7
+ # Rails.backtrace_cleaner.remove_silencers!
@@ -0,0 +1,3 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ Rails.application.config.action_dispatch.cookies_serializer = :json
@@ -0,0 +1,4 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ # Configure sensitive parameters which will be filtered from the log file.
4
+ Rails.application.config.filter_parameters += [:password]
@@ -0,0 +1,16 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ # Add new inflection rules using the following format. Inflections
4
+ # are locale specific, and you may define rules for as many different
5
+ # locales as you wish. All of these examples are active by default:
6
+ # ActiveSupport::Inflector.inflections(:en) do |inflect|
7
+ # inflect.plural /^(ox)$/i, '\1en'
8
+ # inflect.singular /^(ox)en/i, '\1'
9
+ # inflect.irregular 'person', 'people'
10
+ # inflect.uncountable %w( fish sheep )
11
+ # end
12
+
13
+ # These inflection rules are supported but not enabled by default:
14
+ # ActiveSupport::Inflector.inflections(:en) do |inflect|
15
+ # inflect.acronym 'RESTful'
16
+ # end
@@ -0,0 +1,4 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ # Add new mime types for use in respond_to blocks:
4
+ # Mime::Type.register "text/richtext", :rtf
@@ -0,0 +1,3 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ Rails.application.config.session_store :cookie_store, key: '_dummy_session'
@@ -0,0 +1,14 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ # This file contains settings for ActionController::ParamsWrapper which
4
+ # is enabled by default.
5
+
6
+ # Enable parameter wrapping for JSON. You can disable this by setting :format to an empty array.
7
+ ActiveSupport.on_load(:action_controller) do
8
+ wrap_parameters format: [:json] if respond_to?(:wrap_parameters)
9
+ end
10
+
11
+ # To enable root element in JSON for ActiveRecord objects.
12
+ # ActiveSupport.on_load(:active_record) do
13
+ # self.include_root_in_json = true
14
+ # end
@@ -0,0 +1,23 @@
1
+ # Files in the config/locales directory are used for internationalization
2
+ # and are automatically loaded by Rails. If you want to use locales other
3
+ # than English, add the necessary files in this directory.
4
+ #
5
+ # To use the locales, use `I18n.t`:
6
+ #
7
+ # I18n.t 'hello'
8
+ #
9
+ # In views, this is aliased to just `t`:
10
+ #
11
+ # <%= t('hello') %>
12
+ #
13
+ # To use a different locale, set it with `I18n.locale`:
14
+ #
15
+ # I18n.locale = :es
16
+ #
17
+ # This would use the information in config/locales/es.yml.
18
+ #
19
+ # To learn more, please read the Rails Internationalization guide
20
+ # available at http://guides.rubyonrails.org/i18n.html.
21
+
22
+ en:
23
+ hello: "Hello world"
@@ -0,0 +1,56 @@
1
+ Rails.application.routes.draw do
2
+ # The priority is based upon order of creation: first created -> highest priority.
3
+ # See how all your routes lay out with "rake routes".
4
+
5
+ # You can have the root of your site routed with "root"
6
+ # root 'welcome#index'
7
+
8
+ # Example of regular route:
9
+ # get 'products/:id' => 'catalog#view'
10
+
11
+ # Example of named route that can be invoked with purchase_url(id: product.id)
12
+ # get 'products/:id/purchase' => 'catalog#purchase', as: :purchase
13
+
14
+ # Example resource route (maps HTTP verbs to controller actions automatically):
15
+ # resources :products
16
+
17
+ # Example resource route with options:
18
+ # resources :products do
19
+ # member do
20
+ # get 'short'
21
+ # post 'toggle'
22
+ # end
23
+ #
24
+ # collection do
25
+ # get 'sold'
26
+ # end
27
+ # end
28
+
29
+ # Example resource route with sub-resources:
30
+ # resources :products do
31
+ # resources :comments, :sales
32
+ # resource :seller
33
+ # end
34
+
35
+ # Example resource route with more complex sub-resources:
36
+ # resources :products do
37
+ # resources :comments
38
+ # resources :sales do
39
+ # get 'recent', on: :collection
40
+ # end
41
+ # end
42
+
43
+ # Example resource route with concerns:
44
+ # concern :toggleable do
45
+ # post 'toggle'
46
+ # end
47
+ # resources :posts, concerns: :toggleable
48
+ # resources :photos, concerns: :toggleable
49
+
50
+ # Example resource route within a namespace:
51
+ # namespace :admin do
52
+ # # Directs /admin/products/* to Admin::ProductsController
53
+ # # (app/controllers/admin/products_controller.rb)
54
+ # resources :products
55
+ # end
56
+ end
@@ -0,0 +1,22 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ # Your secret key is used for verifying the integrity of signed cookies.
4
+ # If you change this key, all old signed cookies will become invalid!
5
+
6
+ # Make sure the secret is at least 30 characters and all random,
7
+ # no regular words or you'll be exposed to dictionary attacks.
8
+ # You can use `rake secret` to generate a secure secret key.
9
+
10
+ # Make sure the secrets in this file are kept private
11
+ # if you're sharing your code publicly.
12
+
13
+ development:
14
+ secret_key_base: c49ab069553ab3d8227537aa667f714385884bace32cc6f927e0bf1e57982df102300f9abcec85a055ff4b1a8580235fa15ea93aa873f193f1d0127787215dd1
15
+
16
+ test:
17
+ secret_key_base: d76a0532691bf0815c2d3bf6756eec6a7ce481d3c2008bb79800b4f089269d87da81683da826dbf296526a9a7a6e509ff15825555a8a3d3055ef9c81193c60a0
18
+
19
+ # Do not keep production secrets in the repository,
20
+ # instead read values from the environment.
21
+ production:
22
+ secret_key_base: <%= ENV["SECRET_KEY_BASE"] %>
@@ -0,0 +1,10 @@
1
+ class CreateUsers < ActiveRecord::Migration
2
+ def change
3
+ create_table :users do |t|
4
+ t.string :name
5
+ t.string :email
6
+
7
+ t.timestamps
8
+ end
9
+ end
10
+ end
@@ -0,0 +1,10 @@
1
+ class CreateTweets < ActiveRecord::Migration
2
+ def change
3
+ create_table :tweets do |t|
4
+ t.integer :user_id
5
+ t.string :content
6
+
7
+ t.timestamps
8
+ end
9
+ end
10
+ end
@@ -0,0 +1,11 @@
1
+ class CreateComments < ActiveRecord::Migration
2
+ def change
3
+ create_table :comments do |t|
4
+ t.integer :tweet_id
5
+ t.integer :user_id
6
+ t.string :content
7
+
8
+ t.timestamps
9
+ end
10
+ end
11
+ end
@@ -0,0 +1,38 @@
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: 20140913143724) do
15
+
16
+ create_table "comments", force: true do |t|
17
+ t.integer "tweet_id"
18
+ t.integer "user_id"
19
+ t.string "content"
20
+ t.datetime "created_at"
21
+ t.datetime "updated_at"
22
+ end
23
+
24
+ create_table "tweets", force: true do |t|
25
+ t.integer "user_id"
26
+ t.string "content"
27
+ t.datetime "created_at"
28
+ t.datetime "updated_at"
29
+ end
30
+
31
+ create_table "users", force: true do |t|
32
+ t.string "name"
33
+ t.string "email"
34
+ t.datetime "created_at"
35
+ t.datetime "updated_at"
36
+ end
37
+
38
+ end
File without changes
@@ -0,0 +1,21 @@
1
+  (1.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
2
+  (0.4ms) select sqlite_version(*)
3
+  (1.3ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
4
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
5
+ Migrating to CreateUsers (20140913143036)
6
+  (0.1ms) begin transaction
7
+  (0.5ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "email" varchar(255), "created_at" datetime, "updated_at" datetime)
8
+ SQL (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20140913143036"]]
9
+  (1.3ms) commit transaction
10
+ Migrating to CreateTweets (20140913143444)
11
+  (0.1ms) begin transaction
12
+  (0.4ms) CREATE TABLE "tweets" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "content" varchar(255), "created_at" datetime, "updated_at" datetime)
13
+ SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20140913143444"]]
14
+  (1.3ms) commit transaction
15
+ Migrating to CreateComments (20140913143724)
16
+  (0.1ms) begin transaction
17
+  (0.3ms) CREATE TABLE "comments" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "tweet_id" integer, "user_id" integer, "content" varchar(255), "created_at" datetime, "updated_at" datetime)
18
+ SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20140913143724"]]
19
+  (1.2ms) commit transaction
20
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
21
+ User Load (0.4ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1
@@ -0,0 +1,410 @@
1
+  (0.1ms) begin transaction
2
+ ---------------------
3
+ DreadTest: test_truth
4
+ ---------------------
5
+  (0.0ms) rollback transaction
6
+  (0.1ms) begin transaction
7
+ ---------------------
8
+ DreadTest: test_truth
9
+ ---------------------
10
+  (0.0ms) rollback transaction
11
+  (0.1ms) begin transaction
12
+ ---------------------
13
+ DreadTest: test_truth
14
+ ---------------------
15
+  (0.1ms) rollback transaction
16
+  (0.2ms) begin transaction
17
+ ------------------------------
18
+ DreadTest: test_initialization
19
+ ------------------------------
20
+  (0.1ms) rollback transaction
21
+  (0.1ms) begin transaction
22
+ ---------------------
23
+ DreadTest: test_truth
24
+ ---------------------
25
+  (0.1ms) rollback transaction
26
+  (0.1ms) begin transaction
27
+ ------------------------------
28
+ DreadTest: test_initialization
29
+ ------------------------------
30
+  (0.1ms) rollback transaction
31
+  (0.1ms) begin transaction
32
+ ---------------------
33
+ DreadTest: test_truth
34
+ ---------------------
35
+  (0.0ms) rollback transaction
36
+  (0.2ms) begin transaction
37
+ ------------------------------
38
+ DreadTest: test_initialization
39
+ ------------------------------
40
+  (0.1ms) rollback transaction
41
+  (0.1ms) begin transaction
42
+ ---------------------
43
+ DreadTest: test_truth
44
+ ---------------------
45
+  (0.1ms) rollback transaction
46
+  (0.1ms) begin transaction
47
+ ------------------------------
48
+ DreadTest: test_initialization
49
+ ------------------------------
50
+  (0.1ms) rollback transaction
51
+  (0.0ms) begin transaction
52
+ ---------------------
53
+ DreadTest: test_truth
54
+ ---------------------
55
+  (0.0ms) rollback transaction
56
+  (0.1ms) begin transaction
57
+ ------------------------------
58
+ DreadTest: test_initialization
59
+ ------------------------------
60
+  (0.1ms) rollback transaction
61
+  (0.1ms) begin transaction
62
+ ----------------------------------------------------
63
+ DreadTest: test_initialization_with_missing_constant
64
+ ----------------------------------------------------
65
+  (0.1ms) rollback transaction
66
+  (0.1ms) begin transaction
67
+ ---------------------
68
+ DreadTest: test_truth
69
+ ---------------------
70
+  (0.0ms) rollback transaction
71
+  (0.1ms) begin transaction
72
+ -----------------------
73
+ DreadTest: test_drawing
74
+ -----------------------
75
+  (0.1ms) rollback transaction
76
+  (0.0ms) begin transaction
77
+ ------------------------------
78
+ DreadTest: test_initialization
79
+ ------------------------------
80
+  (0.0ms) rollback transaction
81
+  (0.0ms) begin transaction
82
+ ----------------------------------------------------
83
+ DreadTest: test_initialization_with_missing_constant
84
+ ----------------------------------------------------
85
+  (0.0ms) rollback transaction
86
+  (0.0ms) begin transaction
87
+ ---------------------
88
+ DreadTest: test_truth
89
+ ---------------------
90
+  (0.0ms) rollback transaction
91
+  (0.2ms) begin transaction
92
+ -----------------------
93
+ DreadTest: test_drawing
94
+ -----------------------
95
+  (0.3ms) rollback transaction
96
+  (0.2ms) begin transaction
97
+ ------------------------------
98
+ DreadTest: test_initialization
99
+ ------------------------------
100
+  (0.2ms) rollback transaction
101
+  (0.2ms) begin transaction
102
+ ----------------------------------------------------
103
+ DreadTest: test_initialization_with_missing_constant
104
+ ----------------------------------------------------
105
+  (0.2ms) rollback transaction
106
+  (0.2ms) begin transaction
107
+ ---------------------
108
+ DreadTest: test_truth
109
+ ---------------------
110
+  (0.4ms) rollback transaction
111
+  (0.2ms) begin transaction
112
+ -----------------------
113
+ DreadTest: test_drawing
114
+ -----------------------
115
+  (0.3ms) rollback transaction
116
+  (0.2ms) begin transaction
117
+ ------------------------------
118
+ DreadTest: test_initialization
119
+ ------------------------------
120
+  (0.2ms) rollback transaction
121
+  (0.8ms) begin transaction
122
+ ----------------------------------------------------
123
+ DreadTest: test_initialization_with_missing_constant
124
+ ----------------------------------------------------
125
+  (0.3ms) rollback transaction
126
+  (0.2ms) begin transaction
127
+ ---------------------
128
+ DreadTest: test_truth
129
+ ---------------------
130
+  (0.1ms) rollback transaction
131
+  (0.1ms) begin transaction
132
+ -----------------------
133
+ DreadTest: test_drawing
134
+ -----------------------
135
+  (0.1ms) rollback transaction
136
+  (0.0ms) begin transaction
137
+ ------------------------------
138
+ DreadTest: test_initialization
139
+ ------------------------------
140
+  (0.0ms) rollback transaction
141
+  (0.0ms) begin transaction
142
+ ----------------------------------------------------
143
+ DreadTest: test_initialization_with_missing_constant
144
+ ----------------------------------------------------
145
+  (0.0ms) rollback transaction
146
+  (0.0ms) begin transaction
147
+ ---------------------
148
+ DreadTest: test_truth
149
+ ---------------------
150
+  (0.0ms) rollback transaction
151
+  (0.1ms) begin transaction
152
+ -----------------------
153
+ DreadTest: test_drawing
154
+ -----------------------
155
+  (0.4ms) rollback transaction
156
+  (0.1ms) begin transaction
157
+ ------------------------------
158
+ DreadTest: test_initialization
159
+ ------------------------------
160
+  (0.0ms) rollback transaction
161
+  (0.0ms) begin transaction
162
+ ----------------------------------------------------
163
+ DreadTest: test_initialization_with_missing_constant
164
+ ----------------------------------------------------
165
+  (0.1ms) rollback transaction
166
+  (0.1ms) begin transaction
167
+ ---------------------
168
+ DreadTest: test_truth
169
+ ---------------------
170
+  (0.0ms) rollback transaction
171
+  (0.2ms) begin transaction
172
+ -----------------------
173
+ DreadTest: test_drawing
174
+ -----------------------
175
+  (0.1ms) rollback transaction
176
+  (0.1ms) begin transaction
177
+ ------------------------------
178
+ DreadTest: test_initialization
179
+ ------------------------------
180
+  (0.1ms) rollback transaction
181
+  (0.1ms) begin transaction
182
+ ----------------------------------------------------
183
+ DreadTest: test_initialization_with_missing_constant
184
+ ----------------------------------------------------
185
+  (0.1ms) rollback transaction
186
+  (0.0ms) begin transaction
187
+ ---------------------
188
+ DreadTest: test_truth
189
+ ---------------------
190
+  (0.0ms) rollback transaction
191
+  (0.1ms) begin transaction
192
+ -----------------------
193
+ DreadTest: test_drawing
194
+ -----------------------
195
+  (0.1ms) rollback transaction
196
+  (0.1ms) begin transaction
197
+ ------------------------------
198
+ DreadTest: test_initialization
199
+ ------------------------------
200
+  (0.1ms) rollback transaction
201
+  (0.1ms) begin transaction
202
+ ----------------------------------------------------
203
+ DreadTest: test_initialization_with_missing_constant
204
+ ----------------------------------------------------
205
+  (0.1ms) rollback transaction
206
+  (0.1ms) begin transaction
207
+ ---------------------
208
+ DreadTest: test_truth
209
+ ---------------------
210
+  (0.1ms) rollback transaction
211
+  (0.1ms) begin transaction
212
+ -----------------------
213
+ DreadTest: test_drawing
214
+ -----------------------
215
+  (0.1ms) rollback transaction
216
+  (0.1ms) begin transaction
217
+ ------------------------------
218
+ DreadTest: test_initialization
219
+ ------------------------------
220
+  (0.1ms) rollback transaction
221
+  (0.1ms) begin transaction
222
+ ----------------------------------------------------
223
+ DreadTest: test_initialization_with_missing_constant
224
+ ----------------------------------------------------
225
+  (0.0ms) rollback transaction
226
+  (0.0ms) begin transaction
227
+ ---------------------
228
+ DreadTest: test_truth
229
+ ---------------------
230
+  (0.0ms) rollback transaction
231
+  (0.1ms) begin transaction
232
+ -----------------------
233
+ DreadTest: test_drawing
234
+ -----------------------
235
+  (0.1ms) rollback transaction
236
+  (0.1ms) begin transaction
237
+ ------------------------------
238
+ DreadTest: test_initialization
239
+ ------------------------------
240
+  (0.1ms) rollback transaction
241
+  (0.0ms) begin transaction
242
+ ----------------------------------------------------
243
+ DreadTest: test_initialization_with_missing_constant
244
+ ----------------------------------------------------
245
+  (0.1ms) rollback transaction
246
+  (0.1ms) begin transaction
247
+ ---------------------
248
+ DreadTest: test_truth
249
+ ---------------------
250
+  (0.1ms) rollback transaction
251
+  (0.1ms) begin transaction
252
+ -----------------------
253
+ DreadTest: test_drawing
254
+ -----------------------
255
+  (0.1ms) rollback transaction
256
+  (0.1ms) begin transaction
257
+ ------------------------------
258
+ DreadTest: test_initialization
259
+ ------------------------------
260
+  (0.1ms) rollback transaction
261
+  (0.1ms) begin transaction
262
+ ----------------------------------------------------
263
+ DreadTest: test_initialization_with_missing_constant
264
+ ----------------------------------------------------
265
+  (0.0ms) rollback transaction
266
+  (0.1ms) begin transaction
267
+ ---------------------
268
+ DreadTest: test_truth
269
+ ---------------------
270
+  (0.1ms) rollback transaction
271
+  (0.1ms) begin transaction
272
+ -----------------------
273
+ DreadTest: test_drawing
274
+ -----------------------
275
+  (0.1ms) rollback transaction
276
+  (0.1ms) begin transaction
277
+ ------------------------------
278
+ DreadTest: test_initialization
279
+ ------------------------------
280
+  (0.0ms) rollback transaction
281
+  (0.1ms) begin transaction
282
+ ----------------------------------------------------
283
+ DreadTest: test_initialization_with_missing_constant
284
+ ----------------------------------------------------
285
+  (0.0ms) rollback transaction
286
+  (0.0ms) begin transaction
287
+ ---------------------
288
+ DreadTest: test_truth
289
+ ---------------------
290
+  (0.0ms) rollback transaction
291
+  (0.1ms) begin transaction
292
+ -----------------------
293
+ DreadTest: test_drawing
294
+ -----------------------
295
+  (0.1ms) rollback transaction
296
+  (0.0ms) begin transaction
297
+ ------------------------------
298
+ DreadTest: test_initialization
299
+ ------------------------------
300
+  (0.1ms) rollback transaction
301
+  (0.0ms) begin transaction
302
+ ----------------------------------------------------
303
+ DreadTest: test_initialization_with_missing_constant
304
+ ----------------------------------------------------
305
+  (0.0ms) rollback transaction
306
+  (0.0ms) begin transaction
307
+ ---------------------
308
+ DreadTest: test_truth
309
+ ---------------------
310
+  (0.0ms) rollback transaction
311
+  (0.1ms) begin transaction
312
+ -----------------------
313
+ DreadTest: test_drawing
314
+ -----------------------
315
+  (0.1ms) rollback transaction
316
+  (0.1ms) begin transaction
317
+ ------------------------------
318
+ DreadTest: test_initialization
319
+ ------------------------------
320
+  (0.1ms) rollback transaction
321
+  (0.1ms) begin transaction
322
+ ----------------------------------------------------
323
+ DreadTest: test_initialization_with_missing_constant
324
+ ----------------------------------------------------
325
+  (0.0ms) rollback transaction
326
+  (0.0ms) begin transaction
327
+ ---------------------
328
+ DreadTest: test_truth
329
+ ---------------------
330
+  (0.0ms) rollback transaction
331
+  (0.1ms) begin transaction
332
+ -----------------------
333
+ DreadTest: test_drawing
334
+ -----------------------
335
+  (0.1ms) rollback transaction
336
+  (0.1ms) begin transaction
337
+ ------------------------------
338
+ DreadTest: test_initialization
339
+ ------------------------------
340
+  (0.1ms) rollback transaction
341
+  (0.0ms) begin transaction
342
+ ----------------------------------------------------
343
+ DreadTest: test_initialization_with_missing_constant
344
+ ----------------------------------------------------
345
+  (0.1ms) rollback transaction
346
+  (0.1ms) begin transaction
347
+ ---------------------
348
+ DreadTest: test_truth
349
+ ---------------------
350
+  (0.0ms) rollback transaction
351
+  (0.1ms) begin transaction
352
+ -----------------------
353
+ DreadTest: test_drawing
354
+ -----------------------
355
+  (0.1ms) rollback transaction
356
+  (0.1ms) begin transaction
357
+ ------------------------------
358
+ DreadTest: test_initialization
359
+ ------------------------------
360
+  (0.1ms) rollback transaction
361
+  (0.1ms) begin transaction
362
+ ----------------------------------------------------
363
+ DreadTest: test_initialization_with_missing_constant
364
+ ----------------------------------------------------
365
+  (0.1ms) rollback transaction
366
+  (0.1ms) begin transaction
367
+ ---------------------
368
+ DreadTest: test_truth
369
+ ---------------------
370
+  (0.0ms) rollback transaction
371
+  (0.1ms) begin transaction
372
+ -----------------------
373
+ DreadTest: test_drawing
374
+ -----------------------
375
+  (0.1ms) rollback transaction
376
+  (0.1ms) begin transaction
377
+ ------------------------------
378
+ DreadTest: test_initialization
379
+ ------------------------------
380
+  (0.0ms) rollback transaction
381
+  (0.1ms) begin transaction
382
+ ----------------------------------------------------
383
+ DreadTest: test_initialization_with_missing_constant
384
+ ----------------------------------------------------
385
+  (0.0ms) rollback transaction
386
+  (0.1ms) begin transaction
387
+ ---------------------
388
+ DreadTest: test_truth
389
+ ---------------------
390
+  (0.0ms) rollback transaction
391
+  (0.1ms) begin transaction
392
+ -----------------------
393
+ DreadTest: test_drawing
394
+ -----------------------
395
+  (0.1ms) rollback transaction
396
+  (0.1ms) begin transaction
397
+ ------------------------------
398
+ DreadTest: test_initialization
399
+ ------------------------------
400
+  (0.0ms) rollback transaction
401
+  (0.1ms) begin transaction
402
+ ----------------------------------------------------
403
+ DreadTest: test_initialization_with_missing_constant
404
+ ----------------------------------------------------
405
+  (0.0ms) rollback transaction
406
+  (0.0ms) begin transaction
407
+ ---------------------
408
+ DreadTest: test_truth
409
+ ---------------------
410
+  (0.0ms) rollback transaction