randomuser-local-rails 0.4.0.2 → 0.4.0.3
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 +4 -4
- data/.gitignore +9 -0
- data/Gemfile +14 -0
- data/Gemfile.lock +92 -0
- data/README.md +60 -0
- data/{test/dummy/db/test.sqlite3 → app/assets/images/randomuser_local/.keep} +0 -0
- data/bin/rails +12 -0
- data/lib/randomuser_local.rb +4 -3
- data/lib/randomuser_local/version.rb +1 -1
- data/randomuser_local.gemspec +25 -0
- data/test/dummy/app/assets/images/.keep +0 -0
- data/test/dummy/app/controllers/concerns/.keep +0 -0
- data/test/dummy/app/mailers/.keep +0 -0
- data/test/dummy/app/models/.keep +0 -0
- data/test/dummy/app/models/concerns/.keep +0 -0
- data/test/dummy/lib/assets/.keep +0 -0
- data/test/dummy/log/.keep +0 -0
- metadata +29 -20
- data/app/assets/images/74.jpg +0 -0
- data/config/routes.rb +0 -2
- data/test/dummy/log/test.log +0 -646
- data/test/dummy/tmp/cache/assets/test/sprockets/093a242df49c18f4101cce9c2506aba9 +0 -0
- data/test/dummy/tmp/cache/assets/test/sprockets/c28925e476eb0b661548aea1e645a495 +0 -0
- data/test/dummy/tmp/cache/assets/test/sprockets/c7d1bdfc4a81f56f39e08eb800015cd2 +0 -0
- data/test/dummy/tmp/cache/assets/test/sprockets/dc8c2fe7cf7ca4544c171d92532a34e0 +0 -0
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: b57f6c30991de00ea8c50a160a8e9b468e825c0b
|
4
|
+
data.tar.gz: 63cd98c1fdd16bbda9804fe62e66804d8a64de28
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: b4af19f25e3ccd6c0f22fc54c721f1fee21b75a55d51dfc38b30ef6002f0b31ff55206ba28769507db29847c32abeebb342e62381b51e7ca8a952ea888ca5c5c
|
7
|
+
data.tar.gz: ab9aa7203dab40a4994ee0dd08a86c600bc38844cfd70e91d60f980286321e6e601994e4ab908b7821098818143f5d06bc58aac6a4de63058a4c468d93fa6e76
|
data/.gitignore
ADDED
data/Gemfile
ADDED
@@ -0,0 +1,14 @@
|
|
1
|
+
source "https://rubygems.org"
|
2
|
+
|
3
|
+
# Declare your gem's dependencies in randomuser_local.gemspec.
|
4
|
+
# Bundler will treat runtime dependencies like base dependencies, and
|
5
|
+
# development dependencies will be added by default to the :development group.
|
6
|
+
gemspec
|
7
|
+
|
8
|
+
# Declare any dependencies that are still in development here instead of in
|
9
|
+
# your gemspec. These might include edge Rails or gems from your path or
|
10
|
+
# Git. Remember to move these dependencies to your gemspec before releasing
|
11
|
+
# your gem to rubygems.org.
|
12
|
+
|
13
|
+
# To use debugger
|
14
|
+
# gem 'debugger'
|
data/Gemfile.lock
ADDED
@@ -0,0 +1,92 @@
|
|
1
|
+
PATH
|
2
|
+
remote: .
|
3
|
+
specs:
|
4
|
+
randomuser-local-rails (0.4.0.3)
|
5
|
+
rails (~> 4.1.4)
|
6
|
+
|
7
|
+
GEM
|
8
|
+
remote: https://rubygems.org/
|
9
|
+
specs:
|
10
|
+
actionmailer (4.1.4)
|
11
|
+
actionpack (= 4.1.4)
|
12
|
+
actionview (= 4.1.4)
|
13
|
+
mail (~> 2.5.4)
|
14
|
+
actionpack (4.1.4)
|
15
|
+
actionview (= 4.1.4)
|
16
|
+
activesupport (= 4.1.4)
|
17
|
+
rack (~> 1.5.2)
|
18
|
+
rack-test (~> 0.6.2)
|
19
|
+
actionview (4.1.4)
|
20
|
+
activesupport (= 4.1.4)
|
21
|
+
builder (~> 3.1)
|
22
|
+
erubis (~> 2.7.0)
|
23
|
+
activemodel (4.1.4)
|
24
|
+
activesupport (= 4.1.4)
|
25
|
+
builder (~> 3.1)
|
26
|
+
activerecord (4.1.4)
|
27
|
+
activemodel (= 4.1.4)
|
28
|
+
activesupport (= 4.1.4)
|
29
|
+
arel (~> 5.0.0)
|
30
|
+
activesupport (4.1.4)
|
31
|
+
i18n (~> 0.6, >= 0.6.9)
|
32
|
+
json (~> 1.7, >= 1.7.7)
|
33
|
+
minitest (~> 5.1)
|
34
|
+
thread_safe (~> 0.1)
|
35
|
+
tzinfo (~> 1.1)
|
36
|
+
arel (5.0.1.20140414130214)
|
37
|
+
builder (3.2.2)
|
38
|
+
erubis (2.7.0)
|
39
|
+
hike (1.2.3)
|
40
|
+
i18n (0.6.11)
|
41
|
+
json (1.8.1)
|
42
|
+
mail (2.5.4)
|
43
|
+
mime-types (~> 1.16)
|
44
|
+
treetop (~> 1.4.8)
|
45
|
+
mime-types (1.25.1)
|
46
|
+
minitest (5.4.0)
|
47
|
+
multi_json (1.10.1)
|
48
|
+
polyglot (0.3.5)
|
49
|
+
rack (1.5.2)
|
50
|
+
rack-test (0.6.2)
|
51
|
+
rack (>= 1.0)
|
52
|
+
rails (4.1.4)
|
53
|
+
actionmailer (= 4.1.4)
|
54
|
+
actionpack (= 4.1.4)
|
55
|
+
actionview (= 4.1.4)
|
56
|
+
activemodel (= 4.1.4)
|
57
|
+
activerecord (= 4.1.4)
|
58
|
+
activesupport (= 4.1.4)
|
59
|
+
bundler (>= 1.3.0, < 2.0)
|
60
|
+
railties (= 4.1.4)
|
61
|
+
sprockets-rails (~> 2.0)
|
62
|
+
railties (4.1.4)
|
63
|
+
actionpack (= 4.1.4)
|
64
|
+
activesupport (= 4.1.4)
|
65
|
+
rake (>= 0.8.7)
|
66
|
+
thor (>= 0.18.1, < 2.0)
|
67
|
+
rake (10.3.2)
|
68
|
+
sprockets (2.12.1)
|
69
|
+
hike (~> 1.2)
|
70
|
+
multi_json (~> 1.0)
|
71
|
+
rack (~> 1.0)
|
72
|
+
tilt (~> 1.1, != 1.3.0)
|
73
|
+
sprockets-rails (2.1.3)
|
74
|
+
actionpack (>= 3.0)
|
75
|
+
activesupport (>= 3.0)
|
76
|
+
sprockets (~> 2.8)
|
77
|
+
sqlite3 (1.3.9)
|
78
|
+
thor (0.19.1)
|
79
|
+
thread_safe (0.3.4)
|
80
|
+
tilt (1.4.1)
|
81
|
+
treetop (1.4.15)
|
82
|
+
polyglot
|
83
|
+
polyglot (>= 0.3.1)
|
84
|
+
tzinfo (1.2.1)
|
85
|
+
thread_safe (~> 0.1)
|
86
|
+
|
87
|
+
PLATFORMS
|
88
|
+
ruby
|
89
|
+
|
90
|
+
DEPENDENCIES
|
91
|
+
randomuser-local-rails!
|
92
|
+
sqlite3
|
data/README.md
ADDED
@@ -0,0 +1,60 @@
|
|
1
|
+
# Random User / Local
|
2
|
+
|
3
|
+
I love the API at http://api.randomuser.me. However for some offline demos in some Rails apps I needed a local cache. This Rails plugin provides a local version of some of the data (basic US male and female profiles) generated by external calls to the API.
|
4
|
+
|
5
|
+
Uses the US data here: https://github.com/RandomAPI/Randomuser.me-Data
|
6
|
+
|
7
|
+
## Installation
|
8
|
+
|
9
|
+
Add this line to your application's Gemfile:
|
10
|
+
|
11
|
+
gem 'randomuser-local'
|
12
|
+
|
13
|
+
And then execute:
|
14
|
+
|
15
|
+
$ bundle
|
16
|
+
|
17
|
+
Or install it yourself as:
|
18
|
+
|
19
|
+
$ gem install randomuser-local
|
20
|
+
|
21
|
+
## Usage
|
22
|
+
|
23
|
+
Grab a single random user, returned as a hash:
|
24
|
+
|
25
|
+
RandomuserLocal.generate
|
26
|
+
|
27
|
+
Multiple random users:
|
28
|
+
|
29
|
+
RandomuserLocal.generate(5)
|
30
|
+
|
31
|
+
A single female random user:
|
32
|
+
|
33
|
+
RandomuserLocal.generate_female
|
34
|
+
|
35
|
+
Multiple female random users:
|
36
|
+
|
37
|
+
RandomuserLocal.generate_female(5)
|
38
|
+
|
39
|
+
A single male random user:
|
40
|
+
|
41
|
+
RandomuserLocal.generate_male
|
42
|
+
|
43
|
+
Multiple male random users:
|
44
|
+
|
45
|
+
RandomuserLocal.generate_male(5)
|
46
|
+
|
47
|
+
## Contributing
|
48
|
+
|
49
|
+
1. Fork it ( https://github.com/hpoydar/randomuser-local-rails/fork )
|
50
|
+
2. Create your feature branch (`git checkout -b my-new-feature`)
|
51
|
+
3. Commit your changes (`git commit -am 'Add some feature'`)
|
52
|
+
4. Push to the branch (`git push origin my-new-feature`)
|
53
|
+
5. Create a new Pull Request
|
54
|
+
|
55
|
+
## License
|
56
|
+
|
57
|
+
* Random API copyright notice: http://randomuser.me/copyright.html
|
58
|
+
* All randomly generated photos are copyrighted under a [Creative Commons BY-NC-SA 2.0 license](http://creativecommons.org/licenses/by-nc-sa/2.0/deed.en). These photos were picked by the Random API team from [Greg Peverill-Conti's 1,000 faces project](http://www.flickr.com/photos/gregpc/).
|
59
|
+
* This gem is licensed under the
|
60
|
+
[MIT License](http://opensource.org/licenses/mit-license.html).
|
File without changes
|
data/bin/rails
ADDED
@@ -0,0 +1,12 @@
|
|
1
|
+
#!/usr/bin/env ruby
|
2
|
+
# This command will automatically be run when you run "rails" with Rails 4 gems installed from the root of your application.
|
3
|
+
|
4
|
+
ENGINE_ROOT = File.expand_path('../..', __FILE__)
|
5
|
+
ENGINE_PATH = File.expand_path('../../lib/randomuser_local/engine', __FILE__)
|
6
|
+
|
7
|
+
# Set up gems listed in the Gemfile.
|
8
|
+
ENV['BUNDLE_GEMFILE'] ||= File.expand_path('../../Gemfile', __FILE__)
|
9
|
+
require 'bundler/setup' if File.exist?(ENV['BUNDLE_GEMFILE'])
|
10
|
+
|
11
|
+
require 'rails/all'
|
12
|
+
require 'rails/engine/commands'
|
data/lib/randomuser_local.rb
CHANGED
@@ -1,4 +1,5 @@
|
|
1
|
-
require "randomuser_local/
|
1
|
+
require "randomuser_local/version"
|
2
|
+
require "randomuser_local/engine" if defined?(::Rails)
|
2
3
|
|
3
4
|
module RandomuserLocal
|
4
5
|
|
@@ -28,11 +29,11 @@ private
|
|
28
29
|
gender = %w(female male).shuffle.first if gender.nil?
|
29
30
|
user[:gender] = gender
|
30
31
|
if gender == 'female'
|
31
|
-
user[:picture] = "portraits/women/#{rand(0..95)}.jpg"
|
32
|
+
user[:picture] = "randomuser_local/portraits/women/#{rand(0..95)}.jpg"
|
32
33
|
user[:name][:first] = random_user_element('female_first_names')
|
33
34
|
user[:name][:title] = %w(ms mrs).shuffle.first
|
34
35
|
else
|
35
|
-
user[:picture] = "portraits/men/#{rand(0..99)}.jpg"
|
36
|
+
user[:picture] = "randomuser_local/portraits/men/#{rand(0..99)}.jpg"
|
36
37
|
user[:name][:first] = random_user_element('male_first_names')
|
37
38
|
user[:name][:title] = 'mr'
|
38
39
|
end
|
@@ -0,0 +1,25 @@
|
|
1
|
+
# coding: utf-8
|
2
|
+
lib = File.expand_path('../lib', __FILE__)
|
3
|
+
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
4
|
+
require "randomuser_local/version"
|
5
|
+
|
6
|
+
# Describe your gem and declare its dependencies:
|
7
|
+
Gem::Specification.new do |s|
|
8
|
+
s.name = "randomuser-local-rails"
|
9
|
+
s.version = RandomuserLocal::VERSION
|
10
|
+
s.authors = ["Henry Poydar"]
|
11
|
+
s.email = ["hpoydar@gmail.com"]
|
12
|
+
s.homepage = "https://github.com/hpoydar/randomuser-local-rails"
|
13
|
+
s.summary = "Provides most of the functionality of http://api.randomuser.me without an external API call for Rails applications"
|
14
|
+
s.license = "MIT"
|
15
|
+
|
16
|
+
s.files = `git ls-files -z`.split("\x0")
|
17
|
+
s.executables = s.files.grep(%r{^bin/}) { |f| File.basename(f) }
|
18
|
+
s.test_files = s.files.grep(%r{^(test|spec|features)/})
|
19
|
+
s.require_paths = ["lib"]
|
20
|
+
|
21
|
+
s.add_dependency "rails", "~> 4.1.4"
|
22
|
+
|
23
|
+
s.add_development_dependency "sqlite3"
|
24
|
+
|
25
|
+
end
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: randomuser-local-rails
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.4.0.
|
4
|
+
version: 0.4.0.3
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Henry Poydar
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2014-07-
|
11
|
+
date: 2014-07-29 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: rails
|
@@ -41,13 +41,19 @@ dependencies:
|
|
41
41
|
description:
|
42
42
|
email:
|
43
43
|
- hpoydar@gmail.com
|
44
|
-
executables:
|
44
|
+
executables:
|
45
|
+
- rails
|
45
46
|
extensions: []
|
46
47
|
extra_rdoc_files: []
|
47
48
|
files:
|
49
|
+
- ".gitignore"
|
50
|
+
- Gemfile
|
51
|
+
- Gemfile.lock
|
48
52
|
- MIT-LICENSE
|
53
|
+
- README.md
|
49
54
|
- Rakefile
|
50
|
-
- app/assets/images/
|
55
|
+
- app/assets/images/randomuser_local/.keep
|
56
|
+
- app/assets/images/randomuser_local/portraits/.DS_Store
|
51
57
|
- app/assets/images/randomuser_local/portraits/men/0.jpg
|
52
58
|
- app/assets/images/randomuser_local/portraits/men/1.jpg
|
53
59
|
- app/assets/images/randomuser_local/portraits/men/10.jpg
|
@@ -244,7 +250,7 @@ files:
|
|
244
250
|
- app/assets/images/randomuser_local/portraits/women/93.jpg
|
245
251
|
- app/assets/images/randomuser_local/portraits/women/94.jpg
|
246
252
|
- app/assets/images/randomuser_local/portraits/women/95.jpg
|
247
|
-
-
|
253
|
+
- bin/rails
|
248
254
|
- lib/randomuser_local.rb
|
249
255
|
- lib/randomuser_local/data/US/city_names.txt
|
250
256
|
- lib/randomuser_local/data/US/female_first_names.txt
|
@@ -260,12 +266,18 @@ files:
|
|
260
266
|
- lib/randomuser_local/engine.rb
|
261
267
|
- lib/randomuser_local/version.rb
|
262
268
|
- lib/tasks/randomuser_local_tasks.rake
|
269
|
+
- randomuser_local.gemspec
|
263
270
|
- test/dummy/README.rdoc
|
264
271
|
- test/dummy/Rakefile
|
272
|
+
- test/dummy/app/assets/images/.keep
|
265
273
|
- test/dummy/app/assets/javascripts/application.js
|
266
274
|
- test/dummy/app/assets/stylesheets/application.css
|
267
275
|
- test/dummy/app/controllers/application_controller.rb
|
276
|
+
- test/dummy/app/controllers/concerns/.keep
|
268
277
|
- test/dummy/app/helpers/application_helper.rb
|
278
|
+
- test/dummy/app/mailers/.keep
|
279
|
+
- test/dummy/app/models/.keep
|
280
|
+
- test/dummy/app/models/concerns/.keep
|
269
281
|
- test/dummy/app/views/layouts/application.html.erb
|
270
282
|
- test/dummy/bin/bundle
|
271
283
|
- test/dummy/bin/rails
|
@@ -289,16 +301,12 @@ files:
|
|
289
301
|
- test/dummy/config/locales/en.yml
|
290
302
|
- test/dummy/config/routes.rb
|
291
303
|
- test/dummy/config/secrets.yml
|
292
|
-
- test/dummy/
|
293
|
-
- test/dummy/log
|
304
|
+
- test/dummy/lib/assets/.keep
|
305
|
+
- test/dummy/log/.keep
|
294
306
|
- test/dummy/public/404.html
|
295
307
|
- test/dummy/public/422.html
|
296
308
|
- test/dummy/public/500.html
|
297
309
|
- test/dummy/public/favicon.ico
|
298
|
-
- test/dummy/tmp/cache/assets/test/sprockets/093a242df49c18f4101cce9c2506aba9
|
299
|
-
- test/dummy/tmp/cache/assets/test/sprockets/c28925e476eb0b661548aea1e645a495
|
300
|
-
- test/dummy/tmp/cache/assets/test/sprockets/c7d1bdfc4a81f56f39e08eb800015cd2
|
301
|
-
- test/dummy/tmp/cache/assets/test/sprockets/dc8c2fe7cf7ca4544c171d92532a34e0
|
302
310
|
- test/integration/navigation_test.rb
|
303
311
|
- test/randomuser_local_test.rb
|
304
312
|
- test/test_helper.rb
|
@@ -328,14 +336,22 @@ specification_version: 4
|
|
328
336
|
summary: Provides most of the functionality of http://api.randomuser.me without an
|
329
337
|
external API call for Rails applications
|
330
338
|
test_files:
|
339
|
+
- test/dummy/README.rdoc
|
340
|
+
- test/dummy/Rakefile
|
341
|
+
- test/dummy/app/assets/images/.keep
|
331
342
|
- test/dummy/app/assets/javascripts/application.js
|
332
343
|
- test/dummy/app/assets/stylesheets/application.css
|
333
344
|
- test/dummy/app/controllers/application_controller.rb
|
345
|
+
- test/dummy/app/controllers/concerns/.keep
|
334
346
|
- test/dummy/app/helpers/application_helper.rb
|
347
|
+
- test/dummy/app/mailers/.keep
|
348
|
+
- test/dummy/app/models/.keep
|
349
|
+
- test/dummy/app/models/concerns/.keep
|
335
350
|
- test/dummy/app/views/layouts/application.html.erb
|
336
351
|
- test/dummy/bin/bundle
|
337
352
|
- test/dummy/bin/rails
|
338
353
|
- test/dummy/bin/rake
|
354
|
+
- test/dummy/config.ru
|
339
355
|
- test/dummy/config/application.rb
|
340
356
|
- test/dummy/config/boot.rb
|
341
357
|
- test/dummy/config/database.yml
|
@@ -354,19 +370,12 @@ test_files:
|
|
354
370
|
- test/dummy/config/locales/en.yml
|
355
371
|
- test/dummy/config/routes.rb
|
356
372
|
- test/dummy/config/secrets.yml
|
357
|
-
- test/dummy/
|
358
|
-
- test/dummy/
|
359
|
-
- test/dummy/log/test.log
|
373
|
+
- test/dummy/lib/assets/.keep
|
374
|
+
- test/dummy/log/.keep
|
360
375
|
- test/dummy/public/404.html
|
361
376
|
- test/dummy/public/422.html
|
362
377
|
- test/dummy/public/500.html
|
363
378
|
- test/dummy/public/favicon.ico
|
364
|
-
- test/dummy/Rakefile
|
365
|
-
- test/dummy/README.rdoc
|
366
|
-
- test/dummy/tmp/cache/assets/test/sprockets/093a242df49c18f4101cce9c2506aba9
|
367
|
-
- test/dummy/tmp/cache/assets/test/sprockets/c28925e476eb0b661548aea1e645a495
|
368
|
-
- test/dummy/tmp/cache/assets/test/sprockets/c7d1bdfc4a81f56f39e08eb800015cd2
|
369
|
-
- test/dummy/tmp/cache/assets/test/sprockets/dc8c2fe7cf7ca4544c171d92532a34e0
|
370
379
|
- test/integration/navigation_test.rb
|
371
380
|
- test/randomuser_local_test.rb
|
372
381
|
- test/test_helper.rb
|
data/app/assets/images/74.jpg
DELETED
Binary file
|
data/config/routes.rb
DELETED
data/test/dummy/log/test.log
DELETED
@@ -1,646 +0,0 @@
|
|
1
|
-
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
2
|
-
-------------------------------
|
3
|
-
RandomuserLocalTest: test_truth
|
4
|
-
-------------------------------
|
5
|
-
[1m[35m (0.0ms)[0m rollback transaction
|
6
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
7
|
-
-----------------------------------------------------------------
|
8
|
-
NavigationTest: test_headshots_are_served_with_the_asset_pipeline
|
9
|
-
-----------------------------------------------------------------
|
10
|
-
Started GET "/assets/9.jpg" for 127.0.0.1 at 2014-07-28 16:36:50 -0400
|
11
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
12
|
-
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
13
|
-
-----------------------------------------------------------------
|
14
|
-
NavigationTest: test_headshots_are_served_with_the_asset_pipeline
|
15
|
-
-----------------------------------------------------------------
|
16
|
-
Started GET "/assets/randomuser_local/9.jpg" for 127.0.0.1 at 2014-07-28 16:37:23 -0400
|
17
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
18
|
-
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
19
|
-
-------------------------------
|
20
|
-
RandomuserLocalTest: test_truth
|
21
|
-
-------------------------------
|
22
|
-
[1m[35m (0.0ms)[0m rollback transaction
|
23
|
-
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
24
|
-
-------------------------------
|
25
|
-
RandomuserLocalTest: test_truth
|
26
|
-
-------------------------------
|
27
|
-
[1m[35m (0.0ms)[0m rollback transaction
|
28
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
29
|
-
-----------------------------------------------------------------
|
30
|
-
NavigationTest: test_headshots_are_served_with_the_asset_pipeline
|
31
|
-
-----------------------------------------------------------------
|
32
|
-
[1m[35m (0.0ms)[0m rollback transaction
|
33
|
-
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
34
|
-
-----------------------------------------------------------------
|
35
|
-
NavigationTest: test_headshots_are_served_with_the_asset_pipeline
|
36
|
-
-----------------------------------------------------------------
|
37
|
-
Started GET "/assets/randomuser_local/portraits/men/9.jpg" for 127.0.0.1 at 2014-07-28 16:38:34 -0400
|
38
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
39
|
-
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
40
|
-
-------------------------------
|
41
|
-
RandomuserLocalTest: test_truth
|
42
|
-
-------------------------------
|
43
|
-
[1m[35m (0.0ms)[0m rollback transaction
|
44
|
-
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
45
|
-
------------------------------------------------------------------------
|
46
|
-
NavigationTest: test_female_headshots_are_served_with_the_asset_pipeline
|
47
|
-
------------------------------------------------------------------------
|
48
|
-
Started GET "/assets/randomuser_local/portraits/women/9.jpg" for 127.0.0.1 at 2014-07-28 16:39:04 -0400
|
49
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
50
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
51
|
-
----------------------------------------------------------------------
|
52
|
-
NavigationTest: test_male_headshots_are_served_with_the_asset_pipeline
|
53
|
-
----------------------------------------------------------------------
|
54
|
-
Started GET "/assets/randomuser_local/portraits/men/9.jpg" for 127.0.0.1 at 2014-07-28 16:39:04 -0400
|
55
|
-
[1m[35m (0.0ms)[0m rollback transaction
|
56
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
57
|
-
-------------------------------
|
58
|
-
RandomuserLocalTest: test_truth
|
59
|
-
-------------------------------
|
60
|
-
[1m[35m (0.0ms)[0m rollback transaction
|
61
|
-
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
62
|
-
-------------------------------
|
63
|
-
RandomuserLocalTest: test_truth
|
64
|
-
-------------------------------
|
65
|
-
[1m[35m (0.0ms)[0m rollback transaction
|
66
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
67
|
-
------------------------------------------------------------------------
|
68
|
-
NavigationTest: test_female_headshots_are_served_with_the_asset_pipeline
|
69
|
-
------------------------------------------------------------------------
|
70
|
-
Started GET "/assets/randomuser_local/portraits/women/9.jpg" for 127.0.0.1 at 2014-07-28 16:39:12 -0400
|
71
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
72
|
-
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
73
|
-
----------------------------------------------------------------------
|
74
|
-
NavigationTest: test_male_headshots_are_served_with_the_asset_pipeline
|
75
|
-
----------------------------------------------------------------------
|
76
|
-
Started GET "/assets/randomuser_local/portraits/men/9.jpg" for 127.0.0.1 at 2014-07-28 16:39:12 -0400
|
77
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
78
|
-
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
79
|
-
------------------------------------------------------------------------
|
80
|
-
NavigationTest: test_female_headshots_are_served_with_the_asset_pipeline
|
81
|
-
------------------------------------------------------------------------
|
82
|
-
Started GET "/assets/randomuser_local/portraits/women/9.jpg" for 127.0.0.1 at 2014-07-28 16:40:22 -0400
|
83
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
84
|
-
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
85
|
-
----------------------------------------------------------------------
|
86
|
-
NavigationTest: test_male_headshots_are_served_with_the_asset_pipeline
|
87
|
-
----------------------------------------------------------------------
|
88
|
-
Started GET "/assets/randomuser_local/portraits/men/9.jpg" for 127.0.0.1 at 2014-07-28 16:40:22 -0400
|
89
|
-
[1m[35m (0.0ms)[0m rollback transaction
|
90
|
-
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
91
|
-
-------------------------------
|
92
|
-
RandomuserLocalTest: test_truth
|
93
|
-
-------------------------------
|
94
|
-
[1m[35m (0.0ms)[0m rollback transaction
|
95
|
-
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
96
|
-
------------------------------------------------------------------------
|
97
|
-
NavigationTest: test_female_headshots_are_served_with_the_asset_pipeline
|
98
|
-
------------------------------------------------------------------------
|
99
|
-
Started GET "/assets/randomuser_local/portraits/women/9.jpg" for 127.0.0.1 at 2014-07-28 16:43:46 -0400
|
100
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
101
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
102
|
-
----------------------------------------------------------------------
|
103
|
-
NavigationTest: test_male_headshots_are_served_with_the_asset_pipeline
|
104
|
-
----------------------------------------------------------------------
|
105
|
-
Started GET "/assets/randomuser_local/portraits/men/9.jpg" for 127.0.0.1 at 2014-07-28 16:43:46 -0400
|
106
|
-
[1m[35m (0.0ms)[0m rollback transaction
|
107
|
-
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
108
|
-
------------------------------------------------------------------------
|
109
|
-
NavigationTest: test_female_headshots_are_served_with_the_asset_pipeline
|
110
|
-
------------------------------------------------------------------------
|
111
|
-
Started GET "/assets/randomuser_local/portraits/women/9.jpg" for 127.0.0.1 at 2014-07-28 16:46:41 -0400
|
112
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
113
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
114
|
-
----------------------------------------------------------------------
|
115
|
-
NavigationTest: test_male_headshots_are_served_with_the_asset_pipeline
|
116
|
-
----------------------------------------------------------------------
|
117
|
-
Started GET "/assets/randomuser_local/portraits/men/9.jpg" for 127.0.0.1 at 2014-07-28 16:46:41 -0400
|
118
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
119
|
-
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
120
|
-
------------------------------------------------------------------------
|
121
|
-
NavigationTest: test_female_headshots_are_served_with_the_asset_pipeline
|
122
|
-
------------------------------------------------------------------------
|
123
|
-
Started GET "/assets/randomuser_local/portraits/women/9.jpg" for 127.0.0.1 at 2014-07-28 16:48:55 -0400
|
124
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
125
|
-
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
126
|
-
----------------------------------------------------------------------
|
127
|
-
NavigationTest: test_male_headshots_are_served_with_the_asset_pipeline
|
128
|
-
----------------------------------------------------------------------
|
129
|
-
Started GET "/assets/randomuser_local/portraits/men/9.jpg" for 127.0.0.1 at 2014-07-28 16:48:55 -0400
|
130
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
131
|
-
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
132
|
-
------------------------------------------------------------------------
|
133
|
-
NavigationTest: test_female_headshots_are_served_with_the_asset_pipeline
|
134
|
-
------------------------------------------------------------------------
|
135
|
-
Started GET "/assets/randomuser_local/portraits/women/9.jpg" for 127.0.0.1 at 2014-07-28 16:49:34 -0400
|
136
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
137
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
138
|
-
----------------------------------------------------------------------
|
139
|
-
NavigationTest: test_male_headshots_are_served_with_the_asset_pipeline
|
140
|
-
----------------------------------------------------------------------
|
141
|
-
Started GET "/assets/randomuser_local/portraits/men/9.jpg" for 127.0.0.1 at 2014-07-28 16:49:34 -0400
|
142
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
143
|
-
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
144
|
-
------------------------------------------------------------------------
|
145
|
-
NavigationTest: test_female_headshots_are_served_with_the_asset_pipeline
|
146
|
-
------------------------------------------------------------------------
|
147
|
-
Started GET "/assets/randomuser_local/portraits/women/9.jpg" for 127.0.0.1 at 2014-07-28 16:50:21 -0400
|
148
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
149
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
150
|
-
----------------------------------------------------------------------
|
151
|
-
NavigationTest: test_male_headshots_are_served_with_the_asset_pipeline
|
152
|
-
----------------------------------------------------------------------
|
153
|
-
Started GET "/assets/randomuser_local/portraits/men/9.jpg" for 127.0.0.1 at 2014-07-28 16:50:21 -0400
|
154
|
-
[1m[35m (24.1ms)[0m rollback transaction
|
155
|
-
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
156
|
-
------------------------------------------------------------------------
|
157
|
-
NavigationTest: test_female_headshots_are_served_with_the_asset_pipeline
|
158
|
-
------------------------------------------------------------------------
|
159
|
-
Started GET "/assets/randomuser_local/portraits/women/9.jpg" for 127.0.0.1 at 2014-07-28 16:50:33 -0400
|
160
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
161
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
162
|
-
----------------------------------------------------------------------
|
163
|
-
NavigationTest: test_male_headshots_are_served_with_the_asset_pipeline
|
164
|
-
----------------------------------------------------------------------
|
165
|
-
Started GET "/assets/randomuser_local/portraits/men/9.jpg" for 127.0.0.1 at 2014-07-28 16:50:33 -0400
|
166
|
-
[1m[35m (0.0ms)[0m rollback transaction
|
167
|
-
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
168
|
-
------------------------------------------------------------------------
|
169
|
-
NavigationTest: test_female_headshots_are_served_with_the_asset_pipeline
|
170
|
-
------------------------------------------------------------------------
|
171
|
-
Started GET "/assets/randomuser_local/portraits/women/9.jpg" for 127.0.0.1 at 2014-07-28 16:50:54 -0400
|
172
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
173
|
-
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
174
|
-
----------------------------------------------------------------------
|
175
|
-
NavigationTest: test_male_headshots_are_served_with_the_asset_pipeline
|
176
|
-
----------------------------------------------------------------------
|
177
|
-
Started GET "/assets/randomuser_local/portraits/men/9.jpg" for 127.0.0.1 at 2014-07-28 16:50:54 -0400
|
178
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
179
|
-
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
180
|
-
------------------------------------------------------------------------
|
181
|
-
NavigationTest: test_female_headshots_are_served_with_the_asset_pipeline
|
182
|
-
------------------------------------------------------------------------
|
183
|
-
Started GET "/assets/randomuser_local/portraits/women/9.jpg" for 127.0.0.1 at 2014-07-28 16:51:16 -0400
|
184
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
185
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
186
|
-
----------------------------------------------------------------------
|
187
|
-
NavigationTest: test_male_headshots_are_served_with_the_asset_pipeline
|
188
|
-
----------------------------------------------------------------------
|
189
|
-
Started GET "/assets/randomuser_local/portraits/men/9.jpg" for 127.0.0.1 at 2014-07-28 16:51:16 -0400
|
190
|
-
[1m[35m (0.0ms)[0m rollback transaction
|
191
|
-
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
192
|
-
------------------------------------------------------------------------
|
193
|
-
NavigationTest: test_female_headshots_are_served_with_the_asset_pipeline
|
194
|
-
------------------------------------------------------------------------
|
195
|
-
Started GET "/assets/randomuser_local/portraits/women/9.jpg" for 127.0.0.1 at 2014-07-28 16:51:55 -0400
|
196
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
197
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
198
|
-
----------------------------------------------------------------------
|
199
|
-
NavigationTest: test_male_headshots_are_served_with_the_asset_pipeline
|
200
|
-
----------------------------------------------------------------------
|
201
|
-
Started GET "/images/randomuser_local/portraits/men/9.jpg" for 127.0.0.1 at 2014-07-28 16:51:55 -0400
|
202
|
-
[1m[35m (0.0ms)[0m rollback transaction
|
203
|
-
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
204
|
-
------------------------------------------------------------------------
|
205
|
-
NavigationTest: test_female_headshots_are_served_with_the_asset_pipeline
|
206
|
-
------------------------------------------------------------------------
|
207
|
-
Started GET "/assets/randomuser_local/portraits/women/9.jpg" for 127.0.0.1 at 2014-07-28 16:52:58 -0400
|
208
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
209
|
-
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
210
|
-
----------------------------------------------------------------------
|
211
|
-
NavigationTest: test_male_headshots_are_served_with_the_asset_pipeline
|
212
|
-
----------------------------------------------------------------------
|
213
|
-
Started GET "/assets/randomuser_local/portraits/men/9.jpg" for 127.0.0.1 at 2014-07-28 16:52:58 -0400
|
214
|
-
[1m[35m (0.2ms)[0m rollback transaction
|
215
|
-
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
216
|
-
------------------------------------------------------------------------
|
217
|
-
NavigationTest: test_female_headshots_are_served_with_the_asset_pipeline
|
218
|
-
------------------------------------------------------------------------
|
219
|
-
Started GET "/assets/randomuser_local/portraits/women/9.jpg" for 127.0.0.1 at 2014-07-28 16:53:23 -0400
|
220
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
221
|
-
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
222
|
-
----------------------------------------------------------------------
|
223
|
-
NavigationTest: test_male_headshots_are_served_with_the_asset_pipeline
|
224
|
-
----------------------------------------------------------------------
|
225
|
-
Started GET "/assets/randomuser_local/portraits/men/9.jpg" for 127.0.0.1 at 2014-07-28 16:53:23 -0400
|
226
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
227
|
-
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
228
|
-
------------------------------------------------------------------------
|
229
|
-
NavigationTest: test_female_headshots_are_served_with_the_asset_pipeline
|
230
|
-
------------------------------------------------------------------------
|
231
|
-
Started GET "/assets/randomuser_local/portraits/women/9.jpg" for 127.0.0.1 at 2014-07-28 16:53:34 -0400
|
232
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
233
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
234
|
-
----------------------------------------------------------------------
|
235
|
-
NavigationTest: test_male_headshots_are_served_with_the_asset_pipeline
|
236
|
-
----------------------------------------------------------------------
|
237
|
-
Started GET "/assets/randomuser_local/portraits/men/9.jpg" for 127.0.0.1 at 2014-07-28 16:53:34 -0400
|
238
|
-
[1m[35m (0.0ms)[0m rollback transaction
|
239
|
-
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
240
|
-
------------------------------------------------------------------------
|
241
|
-
NavigationTest: test_female_headshots_are_served_with_the_asset_pipeline
|
242
|
-
------------------------------------------------------------------------
|
243
|
-
Started GET "/assets/randomuser_local/portraits/women/9.jpg" for 127.0.0.1 at 2014-07-28 16:55:10 -0400
|
244
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
245
|
-
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
246
|
-
----------------------------------------------------------------------
|
247
|
-
NavigationTest: test_male_headshots_are_served_with_the_asset_pipeline
|
248
|
-
----------------------------------------------------------------------
|
249
|
-
Started GET "/assets/randomuser_local/portraits/men/9.jpg" for 127.0.0.1 at 2014-07-28 16:55:10 -0400
|
250
|
-
[1m[35m (0.0ms)[0m rollback transaction
|
251
|
-
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
252
|
-
------------------------------------------------------------------------
|
253
|
-
NavigationTest: test_female_headshots_are_served_with_the_asset_pipeline
|
254
|
-
------------------------------------------------------------------------
|
255
|
-
Started GET "/assets/randomuser_local/portraits/women/9.jpg" for 127.0.0.1 at 2014-07-28 16:55:42 -0400
|
256
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
257
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
258
|
-
----------------------------------------------------------------------
|
259
|
-
NavigationTest: test_male_headshots_are_served_with_the_asset_pipeline
|
260
|
-
----------------------------------------------------------------------
|
261
|
-
Started GET "/assets/randomuser_local/portraits/men/9.jpg" for 127.0.0.1 at 2014-07-28 16:55:42 -0400
|
262
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
263
|
-
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
264
|
-
------------------------------------------------------------------------
|
265
|
-
NavigationTest: test_female_headshots_are_served_with_the_asset_pipeline
|
266
|
-
------------------------------------------------------------------------
|
267
|
-
Started GET "/assets/randomuser_local/portraits/women/9.jpg" for 127.0.0.1 at 2014-07-28 16:56:08 -0400
|
268
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
269
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
270
|
-
----------------------------------------------------------------------
|
271
|
-
NavigationTest: test_male_headshots_are_served_with_the_asset_pipeline
|
272
|
-
----------------------------------------------------------------------
|
273
|
-
Started GET "/assets/randomuser_local/portraits/men/9.jpg" for 127.0.0.1 at 2014-07-28 16:56:08 -0400
|
274
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
275
|
-
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
276
|
-
------------------------------------------------------------------------
|
277
|
-
NavigationTest: test_female_headshots_are_served_with_the_asset_pipeline
|
278
|
-
------------------------------------------------------------------------
|
279
|
-
Started GET "/assets/randomuser_local/portraits/women/9.jpg" for 127.0.0.1 at 2014-07-28 16:58:06 -0400
|
280
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
281
|
-
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
282
|
-
----------------------------------------------------------------------
|
283
|
-
NavigationTest: test_male_headshots_are_served_with_the_asset_pipeline
|
284
|
-
----------------------------------------------------------------------
|
285
|
-
Started GET "/assets/randomuser_local/portraits/men/9.jpg" for 127.0.0.1 at 2014-07-28 16:58:06 -0400
|
286
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
287
|
-
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
288
|
-
------------------------------------------------------------------------
|
289
|
-
NavigationTest: test_female_headshots_are_served_with_the_asset_pipeline
|
290
|
-
------------------------------------------------------------------------
|
291
|
-
Started GET "/assets/randomuser_local/portraits/women/9.jpg" for 127.0.0.1 at 2014-07-28 16:58:42 -0400
|
292
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
293
|
-
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
294
|
-
----------------------------------------------------------------------
|
295
|
-
NavigationTest: test_male_headshots_are_served_with_the_asset_pipeline
|
296
|
-
----------------------------------------------------------------------
|
297
|
-
Started GET "/assets/randomuser_local/portraits/men/9.jpg" for 127.0.0.1 at 2014-07-28 16:58:42 -0400
|
298
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
299
|
-
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
300
|
-
------------------------------------------------------------------------
|
301
|
-
NavigationTest: test_female_headshots_are_served_with_the_asset_pipeline
|
302
|
-
------------------------------------------------------------------------
|
303
|
-
Started GET "/images/randomuser_local/portraits/women/9.jpg" for 127.0.0.1 at 2014-07-28 16:59:07 -0400
|
304
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
305
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
306
|
-
----------------------------------------------------------------------
|
307
|
-
NavigationTest: test_male_headshots_are_served_with_the_asset_pipeline
|
308
|
-
----------------------------------------------------------------------
|
309
|
-
Started GET "/images/randomuser_local/portraits/men/9.jpg" for 127.0.0.1 at 2014-07-28 16:59:07 -0400
|
310
|
-
[1m[35m (0.0ms)[0m rollback transaction
|
311
|
-
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
312
|
-
------------------------------------------------------------------------
|
313
|
-
NavigationTest: test_female_headshots_are_served_with_the_asset_pipeline
|
314
|
-
------------------------------------------------------------------------
|
315
|
-
Started GET "/assets/randomuser_local/portraits/women/9.jpg" for 127.0.0.1 at 2014-07-28 17:02:53 -0400
|
316
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
317
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
318
|
-
----------------------------------------------------------------------
|
319
|
-
NavigationTest: test_male_headshots_are_served_with_the_asset_pipeline
|
320
|
-
----------------------------------------------------------------------
|
321
|
-
Started GET "/assets/randomuser_local/portraits/men/9.jpg" for 127.0.0.1 at 2014-07-28 17:02:53 -0400
|
322
|
-
[1m[35m (0.0ms)[0m rollback transaction
|
323
|
-
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
324
|
-
------------------------------------------------------------------------
|
325
|
-
NavigationTest: test_female_headshots_are_served_with_the_asset_pipeline
|
326
|
-
------------------------------------------------------------------------
|
327
|
-
Started GET "/assets/randomuser_local/portraits/women/9.jpg" for 127.0.0.1 at 2014-07-28 17:03:36 -0400
|
328
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
329
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
330
|
-
----------------------------------------------------------------------
|
331
|
-
NavigationTest: test_male_headshots_are_served_with_the_asset_pipeline
|
332
|
-
----------------------------------------------------------------------
|
333
|
-
Started GET "/assets/randomuser_local/portraits/men/9.jpg" for 127.0.0.1 at 2014-07-28 17:03:36 -0400
|
334
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
335
|
-
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
336
|
-
------------------------------------------------------------------------
|
337
|
-
NavigationTest: test_female_headshots_are_served_with_the_asset_pipeline
|
338
|
-
------------------------------------------------------------------------
|
339
|
-
Started GET "/assets/randomuser_local/portraits/women/9.jpg" for 127.0.0.1 at 2014-07-28 17:03:57 -0400
|
340
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
341
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
342
|
-
----------------------------------------------------------------------
|
343
|
-
NavigationTest: test_male_headshots_are_served_with_the_asset_pipeline
|
344
|
-
----------------------------------------------------------------------
|
345
|
-
Started GET "/images/randomuser_local/portraits/men/9.jpg" for 127.0.0.1 at 2014-07-28 17:03:57 -0400
|
346
|
-
[1m[35m (0.0ms)[0m rollback transaction
|
347
|
-
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
348
|
-
------------------------------------------------------------------------
|
349
|
-
NavigationTest: test_female_headshots_are_served_with_the_asset_pipeline
|
350
|
-
------------------------------------------------------------------------
|
351
|
-
Started GET "/assets/randomuser_local/portraits/women/9.jpg" for 127.0.0.1 at 2014-07-28 17:07:05 -0400
|
352
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
353
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
354
|
-
----------------------------------------------------------------------
|
355
|
-
NavigationTest: test_male_headshots_are_served_with_the_asset_pipeline
|
356
|
-
----------------------------------------------------------------------
|
357
|
-
Started GET "/assets/randomuser_local/portraits/men/9.jpg" for 127.0.0.1 at 2014-07-28 17:07:05 -0400
|
358
|
-
[1m[35m (0.0ms)[0m rollback transaction
|
359
|
-
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
360
|
-
------------------------------------------------------------------------
|
361
|
-
NavigationTest: test_female_headshots_are_served_with_the_asset_pipeline
|
362
|
-
------------------------------------------------------------------------
|
363
|
-
Started GET "/assets/randomuser_local/portraits/women/9.jpg" for 127.0.0.1 at 2014-07-28 17:07:30 -0400
|
364
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
365
|
-
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
366
|
-
----------------------------------------------------------------------
|
367
|
-
NavigationTest: test_male_headshots_are_served_with_the_asset_pipeline
|
368
|
-
----------------------------------------------------------------------
|
369
|
-
Started GET "/assets/randomuser_local/portraits/men/9.jpg" for 127.0.0.1 at 2014-07-28 17:07:30 -0400
|
370
|
-
[1m[35m (0.0ms)[0m rollback transaction
|
371
|
-
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
372
|
-
------------------------------------------------------------------------
|
373
|
-
NavigationTest: test_female_headshots_are_served_with_the_asset_pipeline
|
374
|
-
------------------------------------------------------------------------
|
375
|
-
Started GET "/assets/randomuser_local/portraits/women/9.jpg" for 127.0.0.1 at 2014-07-28 17:14:06 -0400
|
376
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
377
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
378
|
-
----------------------------------------------------------------------
|
379
|
-
NavigationTest: test_male_headshots_are_served_with_the_asset_pipeline
|
380
|
-
----------------------------------------------------------------------
|
381
|
-
Started GET "/assets/randomuser_local/portraits/men/9.jpg" for 127.0.0.1 at 2014-07-28 17:14:06 -0400
|
382
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
383
|
-
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
384
|
-
------------------------------------------------------------------------
|
385
|
-
NavigationTest: test_female_headshots_are_served_with_the_asset_pipeline
|
386
|
-
------------------------------------------------------------------------
|
387
|
-
Started GET "/assets/randomuser_local/portraits/women/9.jpg" for 127.0.0.1 at 2014-07-28 17:15:03 -0400
|
388
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
389
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
390
|
-
----------------------------------------------------------------------
|
391
|
-
NavigationTest: test_male_headshots_are_served_with_the_asset_pipeline
|
392
|
-
----------------------------------------------------------------------
|
393
|
-
Started GET "/assets/randomuser_local/portraits/men/9.jpg" for 127.0.0.1 at 2014-07-28 17:15:03 -0400
|
394
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
395
|
-
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
396
|
-
------------------------------------------------------------------------
|
397
|
-
NavigationTest: test_female_headshots_are_served_with_the_asset_pipeline
|
398
|
-
------------------------------------------------------------------------
|
399
|
-
Started GET "/assets/randomuser_local/portraits/women/9.jpg" for 127.0.0.1 at 2014-07-28 17:16:36 -0400
|
400
|
-
[1m[35m (0.2ms)[0m rollback transaction
|
401
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
402
|
-
----------------------------------------------------------------------
|
403
|
-
NavigationTest: test_male_headshots_are_served_with_the_asset_pipeline
|
404
|
-
----------------------------------------------------------------------
|
405
|
-
Started GET "/assets/randomuser_local/portraits/men/9.jpg" for 127.0.0.1 at 2014-07-28 17:16:36 -0400
|
406
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
407
|
-
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
408
|
-
------------------------------------------------------------------------
|
409
|
-
NavigationTest: test_female_headshots_are_served_with_the_asset_pipeline
|
410
|
-
------------------------------------------------------------------------
|
411
|
-
Started GET "/assets/randomuser_local/portraits/women/9.jpg" for 127.0.0.1 at 2014-07-28 17:18:10 -0400
|
412
|
-
[1m[35m (0.3ms)[0m rollback transaction
|
413
|
-
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
414
|
-
----------------------------------------------------------------------
|
415
|
-
NavigationTest: test_male_headshots_are_served_with_the_asset_pipeline
|
416
|
-
----------------------------------------------------------------------
|
417
|
-
Started GET "/assets/randomuser_local/portraits/men/9.jpg" for 127.0.0.1 at 2014-07-28 17:18:10 -0400
|
418
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
419
|
-
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
420
|
-
------------------------------------------------------------------------
|
421
|
-
NavigationTest: test_female_headshots_are_served_with_the_asset_pipeline
|
422
|
-
------------------------------------------------------------------------
|
423
|
-
Started GET "/assets/randomuser_local/portraits/women/9.jpg" for 127.0.0.1 at 2014-07-28 17:34:28 -0400
|
424
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
425
|
-
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
426
|
-
----------------------------------------------------------------------
|
427
|
-
NavigationTest: test_male_headshots_are_served_with_the_asset_pipeline
|
428
|
-
----------------------------------------------------------------------
|
429
|
-
Started GET "/assets/randomuser_local/portraits/men/9.jpg" for 127.0.0.1 at 2014-07-28 17:34:28 -0400
|
430
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
431
|
-
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
432
|
-
------------------------------------------------------------------------
|
433
|
-
NavigationTest: test_female_headshots_are_served_with_the_asset_pipeline
|
434
|
-
------------------------------------------------------------------------
|
435
|
-
Started GET "/assets/randomuser_local/portraits/women/9.jpg" for 127.0.0.1 at 2014-07-28 17:36:45 -0400
|
436
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
437
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
438
|
-
----------------------------------------------------------------------
|
439
|
-
NavigationTest: test_male_headshots_are_served_with_the_asset_pipeline
|
440
|
-
----------------------------------------------------------------------
|
441
|
-
Started GET "/assets/randomuser_local/portraits/men/9.jpg" for 127.0.0.1 at 2014-07-28 17:36:45 -0400
|
442
|
-
[1m[35m (0.0ms)[0m rollback transaction
|
443
|
-
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
444
|
-
------------------------------------------------------------------------
|
445
|
-
NavigationTest: test_female_headshots_are_served_with_the_asset_pipeline
|
446
|
-
------------------------------------------------------------------------
|
447
|
-
Started GET "/assets/randomuser_local/portraits/women/9.jpg" for 127.0.0.1 at 2014-07-28 17:37:06 -0400
|
448
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
449
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
450
|
-
----------------------------------------------------------------------
|
451
|
-
NavigationTest: test_male_headshots_are_served_with_the_asset_pipeline
|
452
|
-
----------------------------------------------------------------------
|
453
|
-
Started GET "/assets/randomuser_local/portraits/men/9.jpg" for 127.0.0.1 at 2014-07-28 17:37:06 -0400
|
454
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
455
|
-
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
456
|
-
------------------------------------------------------------------------
|
457
|
-
NavigationTest: test_female_headshots_are_served_with_the_asset_pipeline
|
458
|
-
------------------------------------------------------------------------
|
459
|
-
Started GET "/assets/randomuser_local/portraits/women/9.jpg" for 127.0.0.1 at 2014-07-28 17:40:19 -0400
|
460
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
461
|
-
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
462
|
-
----------------------------------------------------------------------
|
463
|
-
NavigationTest: test_male_headshots_are_served_with_the_asset_pipeline
|
464
|
-
----------------------------------------------------------------------
|
465
|
-
Started GET "/assets/randomuser_local/portraits/men/9.jpg" for 127.0.0.1 at 2014-07-28 17:40:19 -0400
|
466
|
-
[1m[35m (0.0ms)[0m rollback transaction
|
467
|
-
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
468
|
-
------------------------------------------------------------------------
|
469
|
-
NavigationTest: test_female_headshots_are_served_with_the_asset_pipeline
|
470
|
-
------------------------------------------------------------------------
|
471
|
-
Started GET "/assets/randomuser_local/portraits/women/9.jpg" for 127.0.0.1 at 2014-07-28 17:40:32 -0400
|
472
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
473
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
474
|
-
----------------------------------------------------------------------
|
475
|
-
NavigationTest: test_male_headshots_are_served_with_the_asset_pipeline
|
476
|
-
----------------------------------------------------------------------
|
477
|
-
Started GET "/assets/randomuser_local/portraits/men/9.jpg" for 127.0.0.1 at 2014-07-28 17:40:32 -0400
|
478
|
-
[1m[35m (0.0ms)[0m rollback transaction
|
479
|
-
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
480
|
-
------------------------------------------------------------------------
|
481
|
-
NavigationTest: test_female_headshots_are_served_with_the_asset_pipeline
|
482
|
-
------------------------------------------------------------------------
|
483
|
-
Started GET "/assets/randomuser_local/portraits/women/9.jpg" for 127.0.0.1 at 2014-07-28 17:57:14 -0400
|
484
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
485
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
486
|
-
----------------------------------------------------------------------
|
487
|
-
NavigationTest: test_male_headshots_are_served_with_the_asset_pipeline
|
488
|
-
----------------------------------------------------------------------
|
489
|
-
Started GET "/assets/randomuser_local/portraits/men/9.jpg" for 127.0.0.1 at 2014-07-28 17:57:14 -0400
|
490
|
-
[1m[35m (0.0ms)[0m rollback transaction
|
491
|
-
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
492
|
-
------------------------------------------------------------------------
|
493
|
-
NavigationTest: test_female_headshots_are_served_with_the_asset_pipeline
|
494
|
-
------------------------------------------------------------------------
|
495
|
-
Started GET "/assets/randomuser_local/portraits/women/9.jpg" for 127.0.0.1 at 2014-07-28 17:57:40 -0400
|
496
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
497
|
-
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
498
|
-
----------------------------------------------------------------------
|
499
|
-
NavigationTest: test_male_headshots_are_served_with_the_asset_pipeline
|
500
|
-
----------------------------------------------------------------------
|
501
|
-
Started GET "/assets/randomuser_local/portraits/men/9.jpg" for 127.0.0.1 at 2014-07-28 17:57:40 -0400
|
502
|
-
[1m[35m (0.0ms)[0m rollback transaction
|
503
|
-
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
504
|
-
------------------------------------------------------------------------
|
505
|
-
NavigationTest: test_female_headshots_are_served_with_the_asset_pipeline
|
506
|
-
------------------------------------------------------------------------
|
507
|
-
Started GET "/assets/randomuser_local/portraits/women/9.jpg" for 127.0.0.1 at 2014-07-28 17:58:00 -0400
|
508
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
509
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
510
|
-
----------------------------------------------------------------------
|
511
|
-
NavigationTest: test_male_headshots_are_served_with_the_asset_pipeline
|
512
|
-
----------------------------------------------------------------------
|
513
|
-
Started GET "/assets/randomuser_local/portraits/men/9.jpg" for 127.0.0.1 at 2014-07-28 17:58:00 -0400
|
514
|
-
[1m[35m (0.0ms)[0m rollback transaction
|
515
|
-
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
516
|
-
------------------------------------------------------------------------
|
517
|
-
NavigationTest: test_female_headshots_are_served_with_the_asset_pipeline
|
518
|
-
------------------------------------------------------------------------
|
519
|
-
Started GET "/assets/randomuser_local/portraits/women/9.jpg" for 127.0.0.1 at 2014-07-28 17:58:17 -0400
|
520
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
521
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
522
|
-
----------------------------------------------------------------------
|
523
|
-
NavigationTest: test_male_headshots_are_served_with_the_asset_pipeline
|
524
|
-
----------------------------------------------------------------------
|
525
|
-
Started GET "/assets/randomuser_local/portraits/men/9.jpg" for 127.0.0.1 at 2014-07-28 17:58:17 -0400
|
526
|
-
[1m[35m (0.0ms)[0m rollback transaction
|
527
|
-
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
528
|
-
------------------------------------------------------------------------
|
529
|
-
NavigationTest: test_female_headshots_are_served_with_the_asset_pipeline
|
530
|
-
------------------------------------------------------------------------
|
531
|
-
Started GET "/assets/randomuser_local/portraits/women/9.jpg" for 127.0.0.1 at 2014-07-28 17:58:27 -0400
|
532
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
533
|
-
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
534
|
-
----------------------------------------------------------------------
|
535
|
-
NavigationTest: test_male_headshots_are_served_with_the_asset_pipeline
|
536
|
-
----------------------------------------------------------------------
|
537
|
-
Started GET "/assets/randomuser_local/portraits/men/9.jpg" for 127.0.0.1 at 2014-07-28 17:58:27 -0400
|
538
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
539
|
-
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
540
|
-
------------------------------------------------------------------------
|
541
|
-
NavigationTest: test_female_headshots_are_served_with_the_asset_pipeline
|
542
|
-
------------------------------------------------------------------------
|
543
|
-
Started GET "/assets/randomuser_local/portraits/women/9.jpg" for 127.0.0.1 at 2014-07-28 17:59:08 -0400
|
544
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
545
|
-
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
546
|
-
----------------------------------------------------------------------
|
547
|
-
NavigationTest: test_male_headshots_are_served_with_the_asset_pipeline
|
548
|
-
----------------------------------------------------------------------
|
549
|
-
Started GET "/assets/randomuser_local/portraits/men/9.jpg" for 127.0.0.1 at 2014-07-28 17:59:08 -0400
|
550
|
-
[1m[35m (0.0ms)[0m rollback transaction
|
551
|
-
[1m[36m (0.2ms)[0m [1mbegin transaction[0m
|
552
|
-
------------------------------------------------------------------------
|
553
|
-
NavigationTest: test_female_headshots_are_served_with_the_asset_pipeline
|
554
|
-
------------------------------------------------------------------------
|
555
|
-
Started GET "/assets/randomuser_local/portraits/women/9.jpg" for 127.0.0.1 at 2014-07-28 18:09:16 -0400
|
556
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
557
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
558
|
-
----------------------------------------------------------------------
|
559
|
-
NavigationTest: test_male_headshots_are_served_with_the_asset_pipeline
|
560
|
-
----------------------------------------------------------------------
|
561
|
-
Started GET "/assets/randomuser_local/portraits/men/9.jpg" for 127.0.0.1 at 2014-07-28 18:09:16 -0400
|
562
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
563
|
-
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
564
|
-
------------------------------------------------------------------------
|
565
|
-
NavigationTest: test_female_headshots_are_served_with_the_asset_pipeline
|
566
|
-
------------------------------------------------------------------------
|
567
|
-
Started GET "/assets/randomuser_local/portraits/women/9.jpg" for 127.0.0.1 at 2014-07-28 19:40:39 -0400
|
568
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
569
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
570
|
-
----------------------------------------------------------------------
|
571
|
-
NavigationTest: test_male_headshots_are_served_with_the_asset_pipeline
|
572
|
-
----------------------------------------------------------------------
|
573
|
-
Started GET "/assets/randomuser_local/portraits/men/9.jpg" for 127.0.0.1 at 2014-07-28 19:40:39 -0400
|
574
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
575
|
-
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
576
|
-
------------------------------------------------------------------------
|
577
|
-
NavigationTest: test_female_headshots_are_served_with_the_asset_pipeline
|
578
|
-
------------------------------------------------------------------------
|
579
|
-
Started GET "/assets/randomuser_local/portraits/women/9.jpg" for 127.0.0.1 at 2014-07-28 19:50:45 -0400
|
580
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
581
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
582
|
-
----------------------------------------------------------------------
|
583
|
-
NavigationTest: test_male_headshots_are_served_with_the_asset_pipeline
|
584
|
-
----------------------------------------------------------------------
|
585
|
-
Started GET "/assets/randomuser_local/portraits/men/9.jpg" for 127.0.0.1 at 2014-07-28 19:50:45 -0400
|
586
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
587
|
-
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
588
|
-
------------------------------------------------------------------------
|
589
|
-
NavigationTest: test_female_headshots_are_served_with_the_asset_pipeline
|
590
|
-
------------------------------------------------------------------------
|
591
|
-
Started GET "/assets/randomuser_local/portraits/women/9.jpg" for 127.0.0.1 at 2014-07-28 19:51:58 -0400
|
592
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
593
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
594
|
-
----------------------------------------------------------------------
|
595
|
-
NavigationTest: test_male_headshots_are_served_with_the_asset_pipeline
|
596
|
-
----------------------------------------------------------------------
|
597
|
-
Started GET "/assets/randomuser_local/portraits/men/9.jpg" for 127.0.0.1 at 2014-07-28 19:51:58 -0400
|
598
|
-
[1m[35m (0.0ms)[0m rollback transaction
|
599
|
-
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
600
|
-
------------------------------------------------------------------------
|
601
|
-
NavigationTest: test_female_headshots_are_served_with_the_asset_pipeline
|
602
|
-
------------------------------------------------------------------------
|
603
|
-
Started GET "/randomuser_local/portraits/women/9.jpg" for 127.0.0.1 at 2014-07-28 19:52:29 -0400
|
604
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
605
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
606
|
-
----------------------------------------------------------------------
|
607
|
-
NavigationTest: test_male_headshots_are_served_with_the_asset_pipeline
|
608
|
-
----------------------------------------------------------------------
|
609
|
-
Started GET "/assets/randomuser_local/portraits/men/9.jpg" for 127.0.0.1 at 2014-07-28 19:52:29 -0400
|
610
|
-
[1m[35m (0.0ms)[0m rollback transaction
|
611
|
-
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
612
|
-
------------------------------------------------------------------------
|
613
|
-
NavigationTest: test_female_headshots_are_served_with_the_asset_pipeline
|
614
|
-
------------------------------------------------------------------------
|
615
|
-
Started GET "/assets/randomuser_local/portraits/women/191.jpg" for 127.0.0.1 at 2014-07-28 19:52:48 -0400
|
616
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
617
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
618
|
-
----------------------------------------------------------------------
|
619
|
-
NavigationTest: test_male_headshots_are_served_with_the_asset_pipeline
|
620
|
-
----------------------------------------------------------------------
|
621
|
-
Started GET "/assets/randomuser_local/portraits/men/9.jpg" for 127.0.0.1 at 2014-07-28 19:52:48 -0400
|
622
|
-
[1m[35m (0.0ms)[0m rollback transaction
|
623
|
-
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
624
|
-
------------------------------------------------------------------------
|
625
|
-
NavigationTest: test_female_headshots_are_served_with_the_asset_pipeline
|
626
|
-
------------------------------------------------------------------------
|
627
|
-
Started GET "/assets/randomuser_local/portraits/women/9.jpg" for 127.0.0.1 at 2014-07-28 19:52:56 -0400
|
628
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
629
|
-
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
630
|
-
----------------------------------------------------------------------
|
631
|
-
NavigationTest: test_male_headshots_are_served_with_the_asset_pipeline
|
632
|
-
----------------------------------------------------------------------
|
633
|
-
Started GET "/assets/randomuser_local/portraits/men/9.jpg" for 127.0.0.1 at 2014-07-28 19:52:56 -0400
|
634
|
-
[1m[35m (0.0ms)[0m rollback transaction
|
635
|
-
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
636
|
-
------------------------------------------------------------------------
|
637
|
-
NavigationTest: test_female_headshots_are_served_with_the_asset_pipeline
|
638
|
-
------------------------------------------------------------------------
|
639
|
-
Started GET "/assets/randomuser_local/portraits/women/9.jpg" for 127.0.0.1 at 2014-07-28 19:53:42 -0400
|
640
|
-
[1m[35m (0.2ms)[0m rollback transaction
|
641
|
-
[1m[36m (0.2ms)[0m [1mbegin transaction[0m
|
642
|
-
----------------------------------------------------------------------
|
643
|
-
NavigationTest: test_male_headshots_are_served_with_the_asset_pipeline
|
644
|
-
----------------------------------------------------------------------
|
645
|
-
Started GET "/assets/randomuser_local/portraits/men/9.jpg" for 127.0.0.1 at 2014-07-28 19:53:42 -0400
|
646
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|