remote_partial 0.3.2 → 0.4.0
Sign up to get free protection for your applications and to get access to all the features.
- data/README.rdoc +19 -0
- data/app/models/remote_partial/builder.rb +1 -0
- data/app/models/remote_partial/partial.rb +6 -2
- data/app/models/remote_partial/resource_manager.rb +16 -10
- data/app/models/remote_partial/yaml_store.rb +4 -0
- data/lib/remote_partial/version.rb +7 -2
- data/test/dummy/app/views/remote_partials/_partial_with_mod.html.erb +1 -0
- data/test/dummy/log/test.log +3656 -0
- data/test/unit/remote_partial/builder_test.rb +14 -0
- data/test/unit/remote_partial/partial_test.rb +7 -0
- data/test/unit/remote_partial/resource_manager_test.rb +6 -0
- data/test/unit/remote_partial/yaml_store_test.rb +10 -0
- metadata +5 -3
data/test/dummy/log/test.log
CHANGED
@@ -26240,3 +26240,3659 @@ stub_request(:get, "http://www.warwickshire.gov.uk/").
|
|
26240
26240
|
-----------------------------
|
26241
26241
|
RemotePartialTest: test_truth
|
26242
26242
|
-----------------------------
|
26243
|
+
Unable to retrieve remote partial at http://www.timeanddate.com/worldclock/city.html?n=136: #<WebMock::NetConnectNotAllowedError: Real HTTP connections are disabled. Unregistered request: GET http://www.timeanddate.com/worldclock/city.html?n=136 with headers {'Accept'=>'*/*', 'User-Agent'=>'Ruby'}
|
26244
|
+
|
26245
|
+
You can stub this request with the following snippet:
|
26246
|
+
|
26247
|
+
stub_request(:get, "http://www.timeanddate.com/worldclock/city.html?n=136").
|
26248
|
+
with(:headers => {'Accept'=>'*/*', 'User-Agent'=>'Ruby'}).
|
26249
|
+
to_return(:status => 200, :body => "", :headers => {})
|
26250
|
+
|
26251
|
+
============================================================>
|
26252
|
+
Unable to retrieve remote partial at http://www.ruby-lang.org/en/: #<WebMock::NetConnectNotAllowedError: Real HTTP connections are disabled. Unregistered request: GET http://www.ruby-lang.org/en/ with headers {'Accept'=>'*/*', 'User-Agent'=>'Ruby'}
|
26253
|
+
|
26254
|
+
You can stub this request with the following snippet:
|
26255
|
+
|
26256
|
+
stub_request(:get, "http://www.ruby-lang.org/en/").
|
26257
|
+
with(:headers => {'Accept'=>'*/*', 'User-Agent'=>'Ruby'}).
|
26258
|
+
to_return(:status => 200, :body => "", :headers => {})
|
26259
|
+
|
26260
|
+
============================================================>
|
26261
|
+
-------------------------------
|
26262
|
+
DemosControllerTest: test_index
|
26263
|
+
-------------------------------
|
26264
|
+
Processing by DemosController#index as HTML
|
26265
|
+
Rendered demos/index.html.erb within layouts/application (56.8ms)
|
26266
|
+
Completed 200 OK in 126ms (Views: 123.4ms)
|
26267
|
+
------------------------------------
|
26268
|
+
DemosControllerTest: test_show_fixed
|
26269
|
+
------------------------------------
|
26270
|
+
Processing by DemosController#show as HTML
|
26271
|
+
Parameters: {"id"=>"fixed"}
|
26272
|
+
Rendered remote_partials/_fixed.html.erb (0.3ms)
|
26273
|
+
Rendered demos/_fixed.html.erb (2.8ms)
|
26274
|
+
Completed 200 OK in 11ms (Views: 11.2ms)
|
26275
|
+
-----------------------------------------------------------
|
26276
|
+
DemosHelperTest: test_render_remote_partial_with_no_partial
|
26277
|
+
-----------------------------------------------------------
|
26278
|
+
--------------------------------------
|
26279
|
+
RemotePartial::BuilderTest: test_build
|
26280
|
+
--------------------------------------
|
26281
|
+
------------------------------------------------------------
|
26282
|
+
RemotePartial::BuilderTest: test_build_with_existing_partial
|
26283
|
+
------------------------------------------------------------
|
26284
|
+
------------------------------------------------------------------
|
26285
|
+
RemotePartial::BuilderTest: test_build_with_existing_stale_partial
|
26286
|
+
------------------------------------------------------------------
|
26287
|
+
------------------------------------------------------
|
26288
|
+
RemotePartial::BuilderTest: test_build_with_http_error
|
26289
|
+
------------------------------------------------------
|
26290
|
+
Unable to retrieve remote partial at http://www.warwickshire.gov.uk: #<Net::HTTPBadRequest 400 readbody=true>
|
26291
|
+
---------------------------------------------------------
|
26292
|
+
RemotePartial::BuilderTest: test_create_or_update_partial
|
26293
|
+
---------------------------------------------------------
|
26294
|
+
-----------------------------------------------------------------------------------
|
26295
|
+
RemotePartial::BuilderTest: test_create_or_update_partial_updates_if_partial_exists
|
26296
|
+
-----------------------------------------------------------------------------------
|
26297
|
+
----------------------------------------------------------------------------
|
26298
|
+
RemotePartial::BuilderTest: test_stale_at_not_modified_if_unable_to_retrieve
|
26299
|
+
----------------------------------------------------------------------------
|
26300
|
+
Unable to retrieve remote partial at http://www.warwickshire.gov.uk: #<Net::HTTPBadRequest 400 readbody=true>
|
26301
|
+
----------------------------------------------------------------
|
26302
|
+
RemotePartial::ExceptionTest: test_remote_partial_retrival_error
|
26303
|
+
----------------------------------------------------------------
|
26304
|
+
-------------------------------------------------
|
26305
|
+
RemotePartial::PartialTest: test_output_file_name
|
26306
|
+
-------------------------------------------------
|
26307
|
+
--------------------------------------------------------
|
26308
|
+
RemotePartial::PartialTest: test_stale_at_gets_into_file
|
26309
|
+
--------------------------------------------------------
|
26310
|
+
--------------------------------------------------------
|
26311
|
+
RemotePartial::PartialTest: test_stale_at_gets_into_hash
|
26312
|
+
--------------------------------------------------------
|
26313
|
+
------------------------------------------------------------------
|
26314
|
+
RemotePartial::PartialTest: test_stale_at_not_updated_unless_stale
|
26315
|
+
------------------------------------------------------------------
|
26316
|
+
--------------------------------------------------------
|
26317
|
+
RemotePartial::PartialTest: test_stale_at_reset_if_stale
|
26318
|
+
--------------------------------------------------------
|
26319
|
+
--------------------------------------------
|
26320
|
+
RemotePartial::PartialTest: test_update_file
|
26321
|
+
--------------------------------------------
|
26322
|
+
------------------------------------------------------------------------
|
26323
|
+
RemotePartial::PartialTest: test_update_file_not_affected_by_stale_state
|
26324
|
+
------------------------------------------------------------------------
|
26325
|
+
------------------------------------------------
|
26326
|
+
RemotePartial::PartialTest: test_update_stale_at
|
26327
|
+
------------------------------------------------
|
26328
|
+
--------------------------------------------------
|
26329
|
+
RemotePartial::PartialTest: test_update_stale_file
|
26330
|
+
--------------------------------------------------
|
26331
|
+
-----------------------------------------------------------------
|
26332
|
+
RemotePartial::PartialTest: test_update_stale_file_when_not_stale
|
26333
|
+
-----------------------------------------------------------------
|
26334
|
+
-----------------------------------------------------------
|
26335
|
+
RemotePartial::ResourceManagerTest: test_connection_failure
|
26336
|
+
-----------------------------------------------------------
|
26337
|
+
------------------------------------------------------------------------------
|
26338
|
+
RemotePartial::ResourceManagerTest: test_connection_failure_due_to_invalid_url
|
26339
|
+
------------------------------------------------------------------------------
|
26340
|
+
-------------------------------------------------
|
26341
|
+
RemotePartial::ResourceManagerTest: test_get_page
|
26342
|
+
-------------------------------------------------
|
26343
|
+
------------------------------------------------
|
26344
|
+
RemotePartial::ResourceManagerTest: test_get_raw
|
26345
|
+
------------------------------------------------
|
26346
|
+
---------------------------------------------
|
26347
|
+
RemotePartial::ResourceManagerTest: test_html
|
26348
|
+
---------------------------------------------
|
26349
|
+
--------------------------------------------------------
|
26350
|
+
RemotePartial::ResourceManagerTest: test_html_with_limit
|
26351
|
+
--------------------------------------------------------
|
26352
|
+
--------------------------------------------------------------------------------------
|
26353
|
+
RemotePartial::ResourceManagerTest: test_html_with_limit_that_returns_multiple_matches
|
26354
|
+
--------------------------------------------------------------------------------------
|
26355
|
+
-----------------------------------------------------------
|
26356
|
+
RemotePartial::ResourceManagerTest: test_html_with_proc_mod
|
26357
|
+
-----------------------------------------------------------
|
26358
|
+
--------------------------------------------------
|
26359
|
+
RemotePartial::ResourceManagerTest: test_output_to
|
26360
|
+
--------------------------------------------------
|
26361
|
+
---------------------------------------------
|
26362
|
+
RemotePartial::ResourceManagerTest: test_stub
|
26363
|
+
---------------------------------------------
|
26364
|
+
----------------------------------------
|
26365
|
+
RemotePartial::YamlStoreTest: test_count
|
26366
|
+
----------------------------------------
|
26367
|
+
-----------------------------------------
|
26368
|
+
RemotePartial::YamlStoreTest: test_create
|
26369
|
+
-----------------------------------------
|
26370
|
+
---------------------------------------------
|
26371
|
+
RemotePartial::YamlStoreTest: test_created_at
|
26372
|
+
---------------------------------------------
|
26373
|
+
-------------------------------------------------------------------
|
26374
|
+
RemotePartial::YamlStoreTest: test_created_at_not_updated_if_exists
|
26375
|
+
-------------------------------------------------------------------
|
26376
|
+
------------------------------------------
|
26377
|
+
RemotePartial::YamlStoreTest: test_db_path
|
26378
|
+
------------------------------------------
|
26379
|
+
--------------------------------------
|
26380
|
+
RemotePartial::YamlStoreTest: test_dir
|
26381
|
+
--------------------------------------
|
26382
|
+
---------------------------------------
|
26383
|
+
RemotePartial::YamlStoreTest: test_file
|
26384
|
+
---------------------------------------
|
26385
|
+
---------------------------------------
|
26386
|
+
RemotePartial::YamlStoreTest: test_find
|
26387
|
+
---------------------------------------
|
26388
|
+
-------------------------------------------------------
|
26389
|
+
RemotePartial::YamlStoreTest: test_find_when_none_exist
|
26390
|
+
-------------------------------------------------------
|
26391
|
+
---------------------------------------------------
|
26392
|
+
RemotePartial::YamlStoreTest: test_find_with_symbol
|
26393
|
+
---------------------------------------------------
|
26394
|
+
-----------------------------------------
|
26395
|
+
RemotePartial::YamlStoreTest: test_merge!
|
26396
|
+
-----------------------------------------
|
26397
|
+
--------------------------------------
|
26398
|
+
RemotePartial::YamlStoreTest: test_new
|
26399
|
+
--------------------------------------
|
26400
|
+
---------------------------------------
|
26401
|
+
RemotePartial::YamlStoreTest: test_read
|
26402
|
+
---------------------------------------
|
26403
|
+
-----------------------------------------------------------
|
26404
|
+
RemotePartial::YamlStoreTest: test_read_when_no_file_exists
|
26405
|
+
-----------------------------------------------------------
|
26406
|
+
---------------------------------------
|
26407
|
+
RemotePartial::YamlStoreTest: test_root
|
26408
|
+
---------------------------------------
|
26409
|
+
---------------------------------------
|
26410
|
+
RemotePartial::YamlStoreTest: test_save
|
26411
|
+
---------------------------------------
|
26412
|
+
------------------------------------------------------
|
26413
|
+
RemotePartial::YamlStoreTest: test_save_without_a_name
|
26414
|
+
------------------------------------------------------
|
26415
|
+
----------------------------------------------
|
26416
|
+
RemotePartial::YamlStoreTest: test_string_keys
|
26417
|
+
----------------------------------------------
|
26418
|
+
---------------------------------------------
|
26419
|
+
RemotePartial::YamlStoreTest: test_updated_at
|
26420
|
+
---------------------------------------------
|
26421
|
+
------------------------------------------------------------------
|
26422
|
+
RemotePartial::YamlStoreTest: test_updated_at_if_updated_if_exists
|
26423
|
+
------------------------------------------------------------------
|
26424
|
+
----------------------------------------
|
26425
|
+
RemotePartial::YamlStoreTest: test_write
|
26426
|
+
----------------------------------------
|
26427
|
+
------------------------------
|
26428
|
+
RemotePartialTest: test_define
|
26429
|
+
------------------------------
|
26430
|
+
Unable to retrieve remote partial at http://www.warwickshire.gov.uk: #<WebMock::NetConnectNotAllowedError: Real HTTP connections are disabled. Unregistered request: GET http://www.warwickshire.gov.uk/ with headers {'Accept'=>'*/*', 'User-Agent'=>'Ruby'}
|
26431
|
+
|
26432
|
+
You can stub this request with the following snippet:
|
26433
|
+
|
26434
|
+
stub_request(:get, "http://www.warwickshire.gov.uk/").
|
26435
|
+
with(:headers => {'Accept'=>'*/*', 'User-Agent'=>'Ruby'}).
|
26436
|
+
to_return(:status => 200, :body => "", :headers => {})
|
26437
|
+
|
26438
|
+
============================================================>
|
26439
|
+
-----------------------------------------------
|
26440
|
+
RemotePartialTest: test_define_with_string_keys
|
26441
|
+
-----------------------------------------------
|
26442
|
+
Unable to retrieve remote partial at http://www.warwickshire.gov.uk: #<WebMock::NetConnectNotAllowedError: Real HTTP connections are disabled. Unregistered request: GET http://www.warwickshire.gov.uk/ with headers {'Accept'=>'*/*', 'User-Agent'=>'Ruby'}
|
26443
|
+
|
26444
|
+
You can stub this request with the following snippet:
|
26445
|
+
|
26446
|
+
stub_request(:get, "http://www.warwickshire.gov.uk/").
|
26447
|
+
with(:headers => {'Accept'=>'*/*', 'User-Agent'=>'Ruby'}).
|
26448
|
+
to_return(:status => 200, :body => "", :headers => {})
|
26449
|
+
|
26450
|
+
============================================================>
|
26451
|
+
-----------------------------
|
26452
|
+
RemotePartialTest: test_truth
|
26453
|
+
-----------------------------
|
26454
|
+
Unable to retrieve remote partial at http://www.timeanddate.com/worldclock/city.html?n=136: #<WebMock::NetConnectNotAllowedError: Real HTTP connections are disabled. Unregistered request: GET http://www.timeanddate.com/worldclock/city.html?n=136 with headers {'Accept'=>'*/*', 'User-Agent'=>'Ruby'}
|
26455
|
+
|
26456
|
+
You can stub this request with the following snippet:
|
26457
|
+
|
26458
|
+
stub_request(:get, "http://www.timeanddate.com/worldclock/city.html?n=136").
|
26459
|
+
with(:headers => {'Accept'=>'*/*', 'User-Agent'=>'Ruby'}).
|
26460
|
+
to_return(:status => 200, :body => "", :headers => {})
|
26461
|
+
|
26462
|
+
============================================================>
|
26463
|
+
Unable to retrieve remote partial at http://www.ruby-lang.org/en/: #<WebMock::NetConnectNotAllowedError: Real HTTP connections are disabled. Unregistered request: GET http://www.ruby-lang.org/en/ with headers {'Accept'=>'*/*', 'User-Agent'=>'Ruby'}
|
26464
|
+
|
26465
|
+
You can stub this request with the following snippet:
|
26466
|
+
|
26467
|
+
stub_request(:get, "http://www.ruby-lang.org/en/").
|
26468
|
+
with(:headers => {'Accept'=>'*/*', 'User-Agent'=>'Ruby'}).
|
26469
|
+
to_return(:status => 200, :body => "", :headers => {})
|
26470
|
+
|
26471
|
+
============================================================>
|
26472
|
+
-------------------------------
|
26473
|
+
DemosControllerTest: test_index
|
26474
|
+
-------------------------------
|
26475
|
+
Processing by DemosController#index as HTML
|
26476
|
+
Rendered demos/index.html.erb within layouts/application (32.7ms)
|
26477
|
+
Completed 200 OK in 54ms (Views: 53.9ms)
|
26478
|
+
------------------------------------
|
26479
|
+
DemosControllerTest: test_show_fixed
|
26480
|
+
------------------------------------
|
26481
|
+
Processing by DemosController#show as HTML
|
26482
|
+
Parameters: {"id"=>"fixed"}
|
26483
|
+
Rendered remote_partials/_fixed.html.erb (2.1ms)
|
26484
|
+
Rendered demos/_fixed.html.erb (3.6ms)
|
26485
|
+
Completed 200 OK in 13ms (Views: 13.2ms)
|
26486
|
+
-----------------------------------------------------------
|
26487
|
+
DemosHelperTest: test_render_remote_partial_with_no_partial
|
26488
|
+
-----------------------------------------------------------
|
26489
|
+
--------------------------------------
|
26490
|
+
RemotePartial::BuilderTest: test_build
|
26491
|
+
--------------------------------------
|
26492
|
+
------------------------------------------------------------
|
26493
|
+
RemotePartial::BuilderTest: test_build_with_existing_partial
|
26494
|
+
------------------------------------------------------------
|
26495
|
+
------------------------------------------------------------------
|
26496
|
+
RemotePartial::BuilderTest: test_build_with_existing_stale_partial
|
26497
|
+
------------------------------------------------------------------
|
26498
|
+
------------------------------------------------------
|
26499
|
+
RemotePartial::BuilderTest: test_build_with_http_error
|
26500
|
+
------------------------------------------------------
|
26501
|
+
Unable to retrieve remote partial at http://www.warwickshire.gov.uk: #<Net::HTTPBadRequest 400 readbody=true>
|
26502
|
+
---------------------------------------------------------
|
26503
|
+
RemotePartial::BuilderTest: test_create_or_update_partial
|
26504
|
+
---------------------------------------------------------
|
26505
|
+
-----------------------------------------------------------------------------------
|
26506
|
+
RemotePartial::BuilderTest: test_create_or_update_partial_updates_if_partial_exists
|
26507
|
+
-----------------------------------------------------------------------------------
|
26508
|
+
----------------------------------------------------------------------------
|
26509
|
+
RemotePartial::BuilderTest: test_stale_at_not_modified_if_unable_to_retrieve
|
26510
|
+
----------------------------------------------------------------------------
|
26511
|
+
Unable to retrieve remote partial at http://www.warwickshire.gov.uk: #<Net::HTTPBadRequest 400 readbody=true>
|
26512
|
+
----------------------------------------------------------------
|
26513
|
+
RemotePartial::ExceptionTest: test_remote_partial_retrival_error
|
26514
|
+
----------------------------------------------------------------
|
26515
|
+
-------------------------------------------------
|
26516
|
+
RemotePartial::PartialTest: test_output_file_name
|
26517
|
+
-------------------------------------------------
|
26518
|
+
--------------------------------------------------------
|
26519
|
+
RemotePartial::PartialTest: test_stale_at_gets_into_file
|
26520
|
+
--------------------------------------------------------
|
26521
|
+
--------------------------------------------------------
|
26522
|
+
RemotePartial::PartialTest: test_stale_at_gets_into_hash
|
26523
|
+
--------------------------------------------------------
|
26524
|
+
------------------------------------------------------------------
|
26525
|
+
RemotePartial::PartialTest: test_stale_at_not_updated_unless_stale
|
26526
|
+
------------------------------------------------------------------
|
26527
|
+
--------------------------------------------------------
|
26528
|
+
RemotePartial::PartialTest: test_stale_at_reset_if_stale
|
26529
|
+
--------------------------------------------------------
|
26530
|
+
--------------------------------------------
|
26531
|
+
RemotePartial::PartialTest: test_update_file
|
26532
|
+
--------------------------------------------
|
26533
|
+
------------------------------------------------------------------------
|
26534
|
+
RemotePartial::PartialTest: test_update_file_not_affected_by_stale_state
|
26535
|
+
------------------------------------------------------------------------
|
26536
|
+
------------------------------------------------
|
26537
|
+
RemotePartial::PartialTest: test_update_stale_at
|
26538
|
+
------------------------------------------------
|
26539
|
+
--------------------------------------------------
|
26540
|
+
RemotePartial::PartialTest: test_update_stale_file
|
26541
|
+
--------------------------------------------------
|
26542
|
+
-----------------------------------------------------------------
|
26543
|
+
RemotePartial::PartialTest: test_update_stale_file_when_not_stale
|
26544
|
+
-----------------------------------------------------------------
|
26545
|
+
-----------------------------------------------------------
|
26546
|
+
RemotePartial::ResourceManagerTest: test_connection_failure
|
26547
|
+
-----------------------------------------------------------
|
26548
|
+
------------------------------------------------------------------------------
|
26549
|
+
RemotePartial::ResourceManagerTest: test_connection_failure_due_to_invalid_url
|
26550
|
+
------------------------------------------------------------------------------
|
26551
|
+
-------------------------------------------------
|
26552
|
+
RemotePartial::ResourceManagerTest: test_get_page
|
26553
|
+
-------------------------------------------------
|
26554
|
+
------------------------------------------------
|
26555
|
+
RemotePartial::ResourceManagerTest: test_get_raw
|
26556
|
+
------------------------------------------------
|
26557
|
+
---------------------------------------------
|
26558
|
+
RemotePartial::ResourceManagerTest: test_html
|
26559
|
+
---------------------------------------------
|
26560
|
+
--------------------------------------------------------
|
26561
|
+
RemotePartial::ResourceManagerTest: test_html_with_limit
|
26562
|
+
--------------------------------------------------------
|
26563
|
+
--------------------------------------------------------------------------------------
|
26564
|
+
RemotePartial::ResourceManagerTest: test_html_with_limit_that_returns_multiple_matches
|
26565
|
+
--------------------------------------------------------------------------------------
|
26566
|
+
-----------------------------------------------------------
|
26567
|
+
RemotePartial::ResourceManagerTest: test_html_with_proc_mod
|
26568
|
+
-----------------------------------------------------------
|
26569
|
+
--------------------------------------------------
|
26570
|
+
RemotePartial::ResourceManagerTest: test_output_to
|
26571
|
+
--------------------------------------------------
|
26572
|
+
---------------------------------------------
|
26573
|
+
RemotePartial::ResourceManagerTest: test_stub
|
26574
|
+
---------------------------------------------
|
26575
|
+
----------------------------------------
|
26576
|
+
RemotePartial::YamlStoreTest: test_count
|
26577
|
+
----------------------------------------
|
26578
|
+
-----------------------------------------
|
26579
|
+
RemotePartial::YamlStoreTest: test_create
|
26580
|
+
-----------------------------------------
|
26581
|
+
---------------------------------------------
|
26582
|
+
RemotePartial::YamlStoreTest: test_created_at
|
26583
|
+
---------------------------------------------
|
26584
|
+
-------------------------------------------------------------------
|
26585
|
+
RemotePartial::YamlStoreTest: test_created_at_not_updated_if_exists
|
26586
|
+
-------------------------------------------------------------------
|
26587
|
+
------------------------------------------
|
26588
|
+
RemotePartial::YamlStoreTest: test_db_path
|
26589
|
+
------------------------------------------
|
26590
|
+
--------------------------------------
|
26591
|
+
RemotePartial::YamlStoreTest: test_dir
|
26592
|
+
--------------------------------------
|
26593
|
+
---------------------------------------
|
26594
|
+
RemotePartial::YamlStoreTest: test_file
|
26595
|
+
---------------------------------------
|
26596
|
+
---------------------------------------
|
26597
|
+
RemotePartial::YamlStoreTest: test_find
|
26598
|
+
---------------------------------------
|
26599
|
+
-------------------------------------------------------
|
26600
|
+
RemotePartial::YamlStoreTest: test_find_when_none_exist
|
26601
|
+
-------------------------------------------------------
|
26602
|
+
---------------------------------------------------
|
26603
|
+
RemotePartial::YamlStoreTest: test_find_with_symbol
|
26604
|
+
---------------------------------------------------
|
26605
|
+
-----------------------------------------
|
26606
|
+
RemotePartial::YamlStoreTest: test_merge!
|
26607
|
+
-----------------------------------------
|
26608
|
+
--------------------------------------
|
26609
|
+
RemotePartial::YamlStoreTest: test_new
|
26610
|
+
--------------------------------------
|
26611
|
+
---------------------------------------
|
26612
|
+
RemotePartial::YamlStoreTest: test_read
|
26613
|
+
---------------------------------------
|
26614
|
+
-----------------------------------------------------------
|
26615
|
+
RemotePartial::YamlStoreTest: test_read_when_no_file_exists
|
26616
|
+
-----------------------------------------------------------
|
26617
|
+
---------------------------------------
|
26618
|
+
RemotePartial::YamlStoreTest: test_root
|
26619
|
+
---------------------------------------
|
26620
|
+
---------------------------------------
|
26621
|
+
RemotePartial::YamlStoreTest: test_save
|
26622
|
+
---------------------------------------
|
26623
|
+
------------------------------------------------------
|
26624
|
+
RemotePartial::YamlStoreTest: test_save_without_a_name
|
26625
|
+
------------------------------------------------------
|
26626
|
+
----------------------------------------------
|
26627
|
+
RemotePartial::YamlStoreTest: test_string_keys
|
26628
|
+
----------------------------------------------
|
26629
|
+
---------------------------------------------
|
26630
|
+
RemotePartial::YamlStoreTest: test_updated_at
|
26631
|
+
---------------------------------------------
|
26632
|
+
------------------------------------------------------------------
|
26633
|
+
RemotePartial::YamlStoreTest: test_updated_at_if_updated_if_exists
|
26634
|
+
------------------------------------------------------------------
|
26635
|
+
----------------------------------------
|
26636
|
+
RemotePartial::YamlStoreTest: test_write
|
26637
|
+
----------------------------------------
|
26638
|
+
------------------------------
|
26639
|
+
RemotePartialTest: test_define
|
26640
|
+
------------------------------
|
26641
|
+
Unable to retrieve remote partial at http://www.warwickshire.gov.uk: #<WebMock::NetConnectNotAllowedError: Real HTTP connections are disabled. Unregistered request: GET http://www.warwickshire.gov.uk/ with headers {'Accept'=>'*/*', 'User-Agent'=>'Ruby'}
|
26642
|
+
|
26643
|
+
You can stub this request with the following snippet:
|
26644
|
+
|
26645
|
+
stub_request(:get, "http://www.warwickshire.gov.uk/").
|
26646
|
+
with(:headers => {'Accept'=>'*/*', 'User-Agent'=>'Ruby'}).
|
26647
|
+
to_return(:status => 200, :body => "", :headers => {})
|
26648
|
+
|
26649
|
+
============================================================>
|
26650
|
+
-----------------------------------------------
|
26651
|
+
RemotePartialTest: test_define_with_string_keys
|
26652
|
+
-----------------------------------------------
|
26653
|
+
Unable to retrieve remote partial at http://www.warwickshire.gov.uk: #<WebMock::NetConnectNotAllowedError: Real HTTP connections are disabled. Unregistered request: GET http://www.warwickshire.gov.uk/ with headers {'Accept'=>'*/*', 'User-Agent'=>'Ruby'}
|
26654
|
+
|
26655
|
+
You can stub this request with the following snippet:
|
26656
|
+
|
26657
|
+
stub_request(:get, "http://www.warwickshire.gov.uk/").
|
26658
|
+
with(:headers => {'Accept'=>'*/*', 'User-Agent'=>'Ruby'}).
|
26659
|
+
to_return(:status => 200, :body => "", :headers => {})
|
26660
|
+
|
26661
|
+
============================================================>
|
26662
|
+
-----------------------------
|
26663
|
+
RemotePartialTest: test_truth
|
26664
|
+
-----------------------------
|
26665
|
+
Unable to retrieve remote partial at http://www.timeanddate.com/worldclock/city.html?n=136: #<WebMock::NetConnectNotAllowedError: Real HTTP connections are disabled. Unregistered request: GET http://www.timeanddate.com/worldclock/city.html?n=136 with headers {'Accept'=>'*/*', 'User-Agent'=>'Ruby'}
|
26666
|
+
|
26667
|
+
You can stub this request with the following snippet:
|
26668
|
+
|
26669
|
+
stub_request(:get, "http://www.timeanddate.com/worldclock/city.html?n=136").
|
26670
|
+
with(:headers => {'Accept'=>'*/*', 'User-Agent'=>'Ruby'}).
|
26671
|
+
to_return(:status => 200, :body => "", :headers => {})
|
26672
|
+
|
26673
|
+
============================================================>
|
26674
|
+
Unable to retrieve remote partial at http://www.ruby-lang.org/en/: #<WebMock::NetConnectNotAllowedError: Real HTTP connections are disabled. Unregistered request: GET http://www.ruby-lang.org/en/ with headers {'Accept'=>'*/*', 'User-Agent'=>'Ruby'}
|
26675
|
+
|
26676
|
+
You can stub this request with the following snippet:
|
26677
|
+
|
26678
|
+
stub_request(:get, "http://www.ruby-lang.org/en/").
|
26679
|
+
with(:headers => {'Accept'=>'*/*', 'User-Agent'=>'Ruby'}).
|
26680
|
+
to_return(:status => 200, :body => "", :headers => {})
|
26681
|
+
|
26682
|
+
============================================================>
|
26683
|
+
-------------------------------
|
26684
|
+
DemosControllerTest: test_index
|
26685
|
+
-------------------------------
|
26686
|
+
Processing by DemosController#index as HTML
|
26687
|
+
Rendered demos/index.html.erb within layouts/application (28.4ms)
|
26688
|
+
Completed 200 OK in 52ms (Views: 51.6ms)
|
26689
|
+
------------------------------------
|
26690
|
+
DemosControllerTest: test_show_fixed
|
26691
|
+
------------------------------------
|
26692
|
+
Processing by DemosController#show as HTML
|
26693
|
+
Parameters: {"id"=>"fixed"}
|
26694
|
+
Rendered remote_partials/_fixed.html.erb (1.3ms)
|
26695
|
+
Rendered demos/_fixed.html.erb (2.9ms)
|
26696
|
+
Completed 200 OK in 8ms (Views: 8.3ms)
|
26697
|
+
-----------------------------------------------------------
|
26698
|
+
DemosHelperTest: test_render_remote_partial_with_no_partial
|
26699
|
+
-----------------------------------------------------------
|
26700
|
+
--------------------------------------
|
26701
|
+
RemotePartial::BuilderTest: test_build
|
26702
|
+
--------------------------------------
|
26703
|
+
------------------------------------------------------------
|
26704
|
+
RemotePartial::BuilderTest: test_build_with_existing_partial
|
26705
|
+
------------------------------------------------------------
|
26706
|
+
------------------------------------------------------------------
|
26707
|
+
RemotePartial::BuilderTest: test_build_with_existing_stale_partial
|
26708
|
+
------------------------------------------------------------------
|
26709
|
+
------------------------------------------------------
|
26710
|
+
RemotePartial::BuilderTest: test_build_with_http_error
|
26711
|
+
------------------------------------------------------
|
26712
|
+
Unable to retrieve remote partial at http://www.warwickshire.gov.uk: #<Net::HTTPBadRequest 400 readbody=true>
|
26713
|
+
---------------------------------------------------------
|
26714
|
+
RemotePartial::BuilderTest: test_create_or_update_partial
|
26715
|
+
---------------------------------------------------------
|
26716
|
+
-----------------------------------------------------------------------------------
|
26717
|
+
RemotePartial::BuilderTest: test_create_or_update_partial_updates_if_partial_exists
|
26718
|
+
-----------------------------------------------------------------------------------
|
26719
|
+
----------------------------------------------------------------------------
|
26720
|
+
RemotePartial::BuilderTest: test_stale_at_not_modified_if_unable_to_retrieve
|
26721
|
+
----------------------------------------------------------------------------
|
26722
|
+
Unable to retrieve remote partial at http://www.warwickshire.gov.uk: #<Net::HTTPBadRequest 400 readbody=true>
|
26723
|
+
----------------------------------------------------------------
|
26724
|
+
RemotePartial::ExceptionTest: test_remote_partial_retrival_error
|
26725
|
+
----------------------------------------------------------------
|
26726
|
+
-------------------------------------------------
|
26727
|
+
RemotePartial::PartialTest: test_output_file_name
|
26728
|
+
-------------------------------------------------
|
26729
|
+
--------------------------------------------------------
|
26730
|
+
RemotePartial::PartialTest: test_stale_at_gets_into_file
|
26731
|
+
--------------------------------------------------------
|
26732
|
+
--------------------------------------------------------
|
26733
|
+
RemotePartial::PartialTest: test_stale_at_gets_into_hash
|
26734
|
+
--------------------------------------------------------
|
26735
|
+
------------------------------------------------------------------
|
26736
|
+
RemotePartial::PartialTest: test_stale_at_not_updated_unless_stale
|
26737
|
+
------------------------------------------------------------------
|
26738
|
+
--------------------------------------------------------
|
26739
|
+
RemotePartial::PartialTest: test_stale_at_reset_if_stale
|
26740
|
+
--------------------------------------------------------
|
26741
|
+
--------------------------------------------
|
26742
|
+
RemotePartial::PartialTest: test_update_file
|
26743
|
+
--------------------------------------------
|
26744
|
+
------------------------------------------------------------------------
|
26745
|
+
RemotePartial::PartialTest: test_update_file_not_affected_by_stale_state
|
26746
|
+
------------------------------------------------------------------------
|
26747
|
+
------------------------------------------------
|
26748
|
+
RemotePartial::PartialTest: test_update_stale_at
|
26749
|
+
------------------------------------------------
|
26750
|
+
--------------------------------------------------
|
26751
|
+
RemotePartial::PartialTest: test_update_stale_file
|
26752
|
+
--------------------------------------------------
|
26753
|
+
-----------------------------------------------------------------
|
26754
|
+
RemotePartial::PartialTest: test_update_stale_file_when_not_stale
|
26755
|
+
-----------------------------------------------------------------
|
26756
|
+
-----------------------------------------------------------
|
26757
|
+
RemotePartial::ResourceManagerTest: test_connection_failure
|
26758
|
+
-----------------------------------------------------------
|
26759
|
+
------------------------------------------------------------------------------
|
26760
|
+
RemotePartial::ResourceManagerTest: test_connection_failure_due_to_invalid_url
|
26761
|
+
------------------------------------------------------------------------------
|
26762
|
+
-------------------------------------------------
|
26763
|
+
RemotePartial::ResourceManagerTest: test_get_page
|
26764
|
+
-------------------------------------------------
|
26765
|
+
------------------------------------------------
|
26766
|
+
RemotePartial::ResourceManagerTest: test_get_raw
|
26767
|
+
------------------------------------------------
|
26768
|
+
---------------------------------------------
|
26769
|
+
RemotePartial::ResourceManagerTest: test_html
|
26770
|
+
---------------------------------------------
|
26771
|
+
--------------------------------------------------------
|
26772
|
+
RemotePartial::ResourceManagerTest: test_html_with_limit
|
26773
|
+
--------------------------------------------------------
|
26774
|
+
--------------------------------------------------------------------------------------
|
26775
|
+
RemotePartial::ResourceManagerTest: test_html_with_limit_that_returns_multiple_matches
|
26776
|
+
--------------------------------------------------------------------------------------
|
26777
|
+
-----------------------------------------------------------
|
26778
|
+
RemotePartial::ResourceManagerTest: test_html_with_proc_mod
|
26779
|
+
-----------------------------------------------------------
|
26780
|
+
--------------------------------------------------
|
26781
|
+
RemotePartial::ResourceManagerTest: test_output_to
|
26782
|
+
--------------------------------------------------
|
26783
|
+
---------------------------------------------
|
26784
|
+
RemotePartial::ResourceManagerTest: test_stub
|
26785
|
+
---------------------------------------------
|
26786
|
+
----------------------------------------
|
26787
|
+
RemotePartial::YamlStoreTest: test_count
|
26788
|
+
----------------------------------------
|
26789
|
+
-----------------------------------------
|
26790
|
+
RemotePartial::YamlStoreTest: test_create
|
26791
|
+
-----------------------------------------
|
26792
|
+
---------------------------------------------
|
26793
|
+
RemotePartial::YamlStoreTest: test_created_at
|
26794
|
+
---------------------------------------------
|
26795
|
+
-------------------------------------------------------------------
|
26796
|
+
RemotePartial::YamlStoreTest: test_created_at_not_updated_if_exists
|
26797
|
+
-------------------------------------------------------------------
|
26798
|
+
------------------------------------------
|
26799
|
+
RemotePartial::YamlStoreTest: test_db_path
|
26800
|
+
------------------------------------------
|
26801
|
+
--------------------------------------
|
26802
|
+
RemotePartial::YamlStoreTest: test_dir
|
26803
|
+
--------------------------------------
|
26804
|
+
---------------------------------------
|
26805
|
+
RemotePartial::YamlStoreTest: test_file
|
26806
|
+
---------------------------------------
|
26807
|
+
---------------------------------------
|
26808
|
+
RemotePartial::YamlStoreTest: test_find
|
26809
|
+
---------------------------------------
|
26810
|
+
-------------------------------------------------------
|
26811
|
+
RemotePartial::YamlStoreTest: test_find_when_none_exist
|
26812
|
+
-------------------------------------------------------
|
26813
|
+
---------------------------------------------------
|
26814
|
+
RemotePartial::YamlStoreTest: test_find_with_symbol
|
26815
|
+
---------------------------------------------------
|
26816
|
+
-----------------------------------------
|
26817
|
+
RemotePartial::YamlStoreTest: test_merge!
|
26818
|
+
-----------------------------------------
|
26819
|
+
--------------------------------------
|
26820
|
+
RemotePartial::YamlStoreTest: test_new
|
26821
|
+
--------------------------------------
|
26822
|
+
---------------------------------------
|
26823
|
+
RemotePartial::YamlStoreTest: test_read
|
26824
|
+
---------------------------------------
|
26825
|
+
-----------------------------------------------------------
|
26826
|
+
RemotePartial::YamlStoreTest: test_read_when_no_file_exists
|
26827
|
+
-----------------------------------------------------------
|
26828
|
+
---------------------------------------
|
26829
|
+
RemotePartial::YamlStoreTest: test_root
|
26830
|
+
---------------------------------------
|
26831
|
+
---------------------------------------
|
26832
|
+
RemotePartial::YamlStoreTest: test_save
|
26833
|
+
---------------------------------------
|
26834
|
+
------------------------------------------------------
|
26835
|
+
RemotePartial::YamlStoreTest: test_save_without_a_name
|
26836
|
+
------------------------------------------------------
|
26837
|
+
----------------------------------------------
|
26838
|
+
RemotePartial::YamlStoreTest: test_string_keys
|
26839
|
+
----------------------------------------------
|
26840
|
+
---------------------------------------------
|
26841
|
+
RemotePartial::YamlStoreTest: test_updated_at
|
26842
|
+
---------------------------------------------
|
26843
|
+
------------------------------------------------------------------
|
26844
|
+
RemotePartial::YamlStoreTest: test_updated_at_if_updated_if_exists
|
26845
|
+
------------------------------------------------------------------
|
26846
|
+
----------------------------------------
|
26847
|
+
RemotePartial::YamlStoreTest: test_write
|
26848
|
+
----------------------------------------
|
26849
|
+
------------------------------
|
26850
|
+
RemotePartialTest: test_define
|
26851
|
+
------------------------------
|
26852
|
+
Unable to retrieve remote partial at http://www.warwickshire.gov.uk: #<WebMock::NetConnectNotAllowedError: Real HTTP connections are disabled. Unregistered request: GET http://www.warwickshire.gov.uk/ with headers {'Accept'=>'*/*', 'User-Agent'=>'Ruby'}
|
26853
|
+
|
26854
|
+
You can stub this request with the following snippet:
|
26855
|
+
|
26856
|
+
stub_request(:get, "http://www.warwickshire.gov.uk/").
|
26857
|
+
with(:headers => {'Accept'=>'*/*', 'User-Agent'=>'Ruby'}).
|
26858
|
+
to_return(:status => 200, :body => "", :headers => {})
|
26859
|
+
|
26860
|
+
============================================================>
|
26861
|
+
-----------------------------------------------
|
26862
|
+
RemotePartialTest: test_define_with_string_keys
|
26863
|
+
-----------------------------------------------
|
26864
|
+
Unable to retrieve remote partial at http://www.warwickshire.gov.uk: #<WebMock::NetConnectNotAllowedError: Real HTTP connections are disabled. Unregistered request: GET http://www.warwickshire.gov.uk/ with headers {'Accept'=>'*/*', 'User-Agent'=>'Ruby'}
|
26865
|
+
|
26866
|
+
You can stub this request with the following snippet:
|
26867
|
+
|
26868
|
+
stub_request(:get, "http://www.warwickshire.gov.uk/").
|
26869
|
+
with(:headers => {'Accept'=>'*/*', 'User-Agent'=>'Ruby'}).
|
26870
|
+
to_return(:status => 200, :body => "", :headers => {})
|
26871
|
+
|
26872
|
+
============================================================>
|
26873
|
+
-----------------------------
|
26874
|
+
RemotePartialTest: test_truth
|
26875
|
+
-----------------------------
|
26876
|
+
Unable to retrieve remote partial at http://www.timeanddate.com/worldclock/city.html?n=136: #<WebMock::NetConnectNotAllowedError: Real HTTP connections are disabled. Unregistered request: GET http://www.timeanddate.com/worldclock/city.html?n=136 with headers {'Accept'=>'*/*', 'User-Agent'=>'Ruby'}
|
26877
|
+
|
26878
|
+
You can stub this request with the following snippet:
|
26879
|
+
|
26880
|
+
stub_request(:get, "http://www.timeanddate.com/worldclock/city.html?n=136").
|
26881
|
+
with(:headers => {'Accept'=>'*/*', 'User-Agent'=>'Ruby'}).
|
26882
|
+
to_return(:status => 200, :body => "", :headers => {})
|
26883
|
+
|
26884
|
+
============================================================>
|
26885
|
+
Unable to retrieve remote partial at http://www.ruby-lang.org/en/: #<WebMock::NetConnectNotAllowedError: Real HTTP connections are disabled. Unregistered request: GET http://www.ruby-lang.org/en/ with headers {'Accept'=>'*/*', 'User-Agent'=>'Ruby'}
|
26886
|
+
|
26887
|
+
You can stub this request with the following snippet:
|
26888
|
+
|
26889
|
+
stub_request(:get, "http://www.ruby-lang.org/en/").
|
26890
|
+
with(:headers => {'Accept'=>'*/*', 'User-Agent'=>'Ruby'}).
|
26891
|
+
to_return(:status => 200, :body => "", :headers => {})
|
26892
|
+
|
26893
|
+
============================================================>
|
26894
|
+
-------------------------------
|
26895
|
+
DemosControllerTest: test_index
|
26896
|
+
-------------------------------
|
26897
|
+
Processing by DemosController#index as HTML
|
26898
|
+
Rendered demos/index.html.erb within layouts/application (40.8ms)
|
26899
|
+
Completed 200 OK in 73ms (Views: 72.6ms)
|
26900
|
+
------------------------------------
|
26901
|
+
DemosControllerTest: test_show_fixed
|
26902
|
+
------------------------------------
|
26903
|
+
Processing by DemosController#show as HTML
|
26904
|
+
Parameters: {"id"=>"fixed"}
|
26905
|
+
Rendered remote_partials/_fixed.html.erb (0.3ms)
|
26906
|
+
Rendered demos/_fixed.html.erb (4.5ms)
|
26907
|
+
Completed 200 OK in 14ms (Views: 13.4ms)
|
26908
|
+
-----------------------------------------------------------
|
26909
|
+
DemosHelperTest: test_render_remote_partial_with_no_partial
|
26910
|
+
-----------------------------------------------------------
|
26911
|
+
--------------------------------------
|
26912
|
+
RemotePartial::BuilderTest: test_build
|
26913
|
+
--------------------------------------
|
26914
|
+
------------------------------------------------------------
|
26915
|
+
RemotePartial::BuilderTest: test_build_with_existing_partial
|
26916
|
+
------------------------------------------------------------
|
26917
|
+
------------------------------------------------------------------
|
26918
|
+
RemotePartial::BuilderTest: test_build_with_existing_stale_partial
|
26919
|
+
------------------------------------------------------------------
|
26920
|
+
------------------------------------------------------
|
26921
|
+
RemotePartial::BuilderTest: test_build_with_http_error
|
26922
|
+
------------------------------------------------------
|
26923
|
+
Unable to retrieve remote partial at http://www.warwickshire.gov.uk: #<Net::HTTPBadRequest 400 readbody=true>
|
26924
|
+
---------------------------------------------------------
|
26925
|
+
RemotePartial::BuilderTest: test_create_or_update_partial
|
26926
|
+
---------------------------------------------------------
|
26927
|
+
-----------------------------------------------------------------------------------
|
26928
|
+
RemotePartial::BuilderTest: test_create_or_update_partial_updates_if_partial_exists
|
26929
|
+
-----------------------------------------------------------------------------------
|
26930
|
+
----------------------------------------------------------------------------
|
26931
|
+
RemotePartial::BuilderTest: test_stale_at_not_modified_if_unable_to_retrieve
|
26932
|
+
----------------------------------------------------------------------------
|
26933
|
+
Unable to retrieve remote partial at http://www.warwickshire.gov.uk: #<Net::HTTPBadRequest 400 readbody=true>
|
26934
|
+
----------------------------------------------------------------
|
26935
|
+
RemotePartial::ExceptionTest: test_remote_partial_retrival_error
|
26936
|
+
----------------------------------------------------------------
|
26937
|
+
-------------------------------------------------
|
26938
|
+
RemotePartial::PartialTest: test_output_file_name
|
26939
|
+
-------------------------------------------------
|
26940
|
+
--------------------------------------------------------
|
26941
|
+
RemotePartial::PartialTest: test_stale_at_gets_into_file
|
26942
|
+
--------------------------------------------------------
|
26943
|
+
--------------------------------------------------------
|
26944
|
+
RemotePartial::PartialTest: test_stale_at_gets_into_hash
|
26945
|
+
--------------------------------------------------------
|
26946
|
+
------------------------------------------------------------------
|
26947
|
+
RemotePartial::PartialTest: test_stale_at_not_updated_unless_stale
|
26948
|
+
------------------------------------------------------------------
|
26949
|
+
--------------------------------------------------------
|
26950
|
+
RemotePartial::PartialTest: test_stale_at_reset_if_stale
|
26951
|
+
--------------------------------------------------------
|
26952
|
+
--------------------------------------------
|
26953
|
+
RemotePartial::PartialTest: test_update_file
|
26954
|
+
--------------------------------------------
|
26955
|
+
------------------------------------------------------------------------
|
26956
|
+
RemotePartial::PartialTest: test_update_file_not_affected_by_stale_state
|
26957
|
+
------------------------------------------------------------------------
|
26958
|
+
-----------------------------------------------------------------
|
26959
|
+
RemotePartial::PartialTest: test_update_file_with_output_modifier
|
26960
|
+
-----------------------------------------------------------------
|
26961
|
+
------------------------------------------------
|
26962
|
+
RemotePartial::PartialTest: test_update_stale_at
|
26963
|
+
------------------------------------------------
|
26964
|
+
--------------------------------------------------
|
26965
|
+
RemotePartial::PartialTest: test_update_stale_file
|
26966
|
+
--------------------------------------------------
|
26967
|
+
-----------------------------------------------------------------
|
26968
|
+
RemotePartial::PartialTest: test_update_stale_file_when_not_stale
|
26969
|
+
-----------------------------------------------------------------
|
26970
|
+
-----------------------------------------------------------
|
26971
|
+
RemotePartial::ResourceManagerTest: test_connection_failure
|
26972
|
+
-----------------------------------------------------------
|
26973
|
+
------------------------------------------------------------------------------
|
26974
|
+
RemotePartial::ResourceManagerTest: test_connection_failure_due_to_invalid_url
|
26975
|
+
------------------------------------------------------------------------------
|
26976
|
+
-------------------------------------------------
|
26977
|
+
RemotePartial::ResourceManagerTest: test_get_page
|
26978
|
+
-------------------------------------------------
|
26979
|
+
------------------------------------------------
|
26980
|
+
RemotePartial::ResourceManagerTest: test_get_raw
|
26981
|
+
------------------------------------------------
|
26982
|
+
---------------------------------------------
|
26983
|
+
RemotePartial::ResourceManagerTest: test_html
|
26984
|
+
---------------------------------------------
|
26985
|
+
--------------------------------------------------------
|
26986
|
+
RemotePartial::ResourceManagerTest: test_html_with_limit
|
26987
|
+
--------------------------------------------------------
|
26988
|
+
--------------------------------------------------------------------------------------
|
26989
|
+
RemotePartial::ResourceManagerTest: test_html_with_limit_that_returns_multiple_matches
|
26990
|
+
--------------------------------------------------------------------------------------
|
26991
|
+
-----------------------------------------------------------
|
26992
|
+
RemotePartial::ResourceManagerTest: test_html_with_proc_mod
|
26993
|
+
-----------------------------------------------------------
|
26994
|
+
--------------------------------------------------
|
26995
|
+
RemotePartial::ResourceManagerTest: test_output_to
|
26996
|
+
--------------------------------------------------
|
26997
|
+
---------------------------------------------
|
26998
|
+
RemotePartial::ResourceManagerTest: test_stub
|
26999
|
+
---------------------------------------------
|
27000
|
+
----------------------------------------
|
27001
|
+
RemotePartial::YamlStoreTest: test_count
|
27002
|
+
----------------------------------------
|
27003
|
+
-----------------------------------------
|
27004
|
+
RemotePartial::YamlStoreTest: test_create
|
27005
|
+
-----------------------------------------
|
27006
|
+
---------------------------------------------
|
27007
|
+
RemotePartial::YamlStoreTest: test_created_at
|
27008
|
+
---------------------------------------------
|
27009
|
+
-------------------------------------------------------------------
|
27010
|
+
RemotePartial::YamlStoreTest: test_created_at_not_updated_if_exists
|
27011
|
+
-------------------------------------------------------------------
|
27012
|
+
------------------------------------------
|
27013
|
+
RemotePartial::YamlStoreTest: test_db_path
|
27014
|
+
------------------------------------------
|
27015
|
+
--------------------------------------
|
27016
|
+
RemotePartial::YamlStoreTest: test_dir
|
27017
|
+
--------------------------------------
|
27018
|
+
---------------------------------------
|
27019
|
+
RemotePartial::YamlStoreTest: test_file
|
27020
|
+
---------------------------------------
|
27021
|
+
---------------------------------------
|
27022
|
+
RemotePartial::YamlStoreTest: test_find
|
27023
|
+
---------------------------------------
|
27024
|
+
-------------------------------------------------------
|
27025
|
+
RemotePartial::YamlStoreTest: test_find_when_none_exist
|
27026
|
+
-------------------------------------------------------
|
27027
|
+
---------------------------------------------------
|
27028
|
+
RemotePartial::YamlStoreTest: test_find_with_symbol
|
27029
|
+
---------------------------------------------------
|
27030
|
+
-----------------------------------------
|
27031
|
+
RemotePartial::YamlStoreTest: test_merge!
|
27032
|
+
-----------------------------------------
|
27033
|
+
--------------------------------------
|
27034
|
+
RemotePartial::YamlStoreTest: test_new
|
27035
|
+
--------------------------------------
|
27036
|
+
---------------------------------------
|
27037
|
+
RemotePartial::YamlStoreTest: test_read
|
27038
|
+
---------------------------------------
|
27039
|
+
-----------------------------------------------------------
|
27040
|
+
RemotePartial::YamlStoreTest: test_read_when_no_file_exists
|
27041
|
+
-----------------------------------------------------------
|
27042
|
+
---------------------------------------
|
27043
|
+
RemotePartial::YamlStoreTest: test_root
|
27044
|
+
---------------------------------------
|
27045
|
+
---------------------------------------
|
27046
|
+
RemotePartial::YamlStoreTest: test_save
|
27047
|
+
---------------------------------------
|
27048
|
+
------------------------------------------------------
|
27049
|
+
RemotePartial::YamlStoreTest: test_save_without_a_name
|
27050
|
+
------------------------------------------------------
|
27051
|
+
----------------------------------------------
|
27052
|
+
RemotePartial::YamlStoreTest: test_string_keys
|
27053
|
+
----------------------------------------------
|
27054
|
+
---------------------------------------------
|
27055
|
+
RemotePartial::YamlStoreTest: test_updated_at
|
27056
|
+
---------------------------------------------
|
27057
|
+
------------------------------------------------------------------
|
27058
|
+
RemotePartial::YamlStoreTest: test_updated_at_if_updated_if_exists
|
27059
|
+
------------------------------------------------------------------
|
27060
|
+
----------------------------------------
|
27061
|
+
RemotePartial::YamlStoreTest: test_write
|
27062
|
+
----------------------------------------
|
27063
|
+
------------------------------
|
27064
|
+
RemotePartialTest: test_define
|
27065
|
+
------------------------------
|
27066
|
+
Unable to retrieve remote partial at http://www.warwickshire.gov.uk: #<WebMock::NetConnectNotAllowedError: Real HTTP connections are disabled. Unregistered request: GET http://www.warwickshire.gov.uk/ with headers {'Accept'=>'*/*', 'User-Agent'=>'Ruby'}
|
27067
|
+
|
27068
|
+
You can stub this request with the following snippet:
|
27069
|
+
|
27070
|
+
stub_request(:get, "http://www.warwickshire.gov.uk/").
|
27071
|
+
with(:headers => {'Accept'=>'*/*', 'User-Agent'=>'Ruby'}).
|
27072
|
+
to_return(:status => 200, :body => "", :headers => {})
|
27073
|
+
|
27074
|
+
============================================================>
|
27075
|
+
-----------------------------------------------
|
27076
|
+
RemotePartialTest: test_define_with_string_keys
|
27077
|
+
-----------------------------------------------
|
27078
|
+
Unable to retrieve remote partial at http://www.warwickshire.gov.uk: #<WebMock::NetConnectNotAllowedError: Real HTTP connections are disabled. Unregistered request: GET http://www.warwickshire.gov.uk/ with headers {'Accept'=>'*/*', 'User-Agent'=>'Ruby'}
|
27079
|
+
|
27080
|
+
You can stub this request with the following snippet:
|
27081
|
+
|
27082
|
+
stub_request(:get, "http://www.warwickshire.gov.uk/").
|
27083
|
+
with(:headers => {'Accept'=>'*/*', 'User-Agent'=>'Ruby'}).
|
27084
|
+
to_return(:status => 200, :body => "", :headers => {})
|
27085
|
+
|
27086
|
+
============================================================>
|
27087
|
+
-----------------------------
|
27088
|
+
RemotePartialTest: test_truth
|
27089
|
+
-----------------------------
|
27090
|
+
Unable to retrieve remote partial at http://www.timeanddate.com/worldclock/city.html?n=136: #<WebMock::NetConnectNotAllowedError: Real HTTP connections are disabled. Unregistered request: GET http://www.timeanddate.com/worldclock/city.html?n=136 with headers {'Accept'=>'*/*', 'User-Agent'=>'Ruby'}
|
27091
|
+
|
27092
|
+
You can stub this request with the following snippet:
|
27093
|
+
|
27094
|
+
stub_request(:get, "http://www.timeanddate.com/worldclock/city.html?n=136").
|
27095
|
+
with(:headers => {'Accept'=>'*/*', 'User-Agent'=>'Ruby'}).
|
27096
|
+
to_return(:status => 200, :body => "", :headers => {})
|
27097
|
+
|
27098
|
+
============================================================>
|
27099
|
+
Unable to retrieve remote partial at http://www.ruby-lang.org/en/: #<WebMock::NetConnectNotAllowedError: Real HTTP connections are disabled. Unregistered request: GET http://www.ruby-lang.org/en/ with headers {'Accept'=>'*/*', 'User-Agent'=>'Ruby'}
|
27100
|
+
|
27101
|
+
You can stub this request with the following snippet:
|
27102
|
+
|
27103
|
+
stub_request(:get, "http://www.ruby-lang.org/en/").
|
27104
|
+
with(:headers => {'Accept'=>'*/*', 'User-Agent'=>'Ruby'}).
|
27105
|
+
to_return(:status => 200, :body => "", :headers => {})
|
27106
|
+
|
27107
|
+
============================================================>
|
27108
|
+
-------------------------------
|
27109
|
+
DemosControllerTest: test_index
|
27110
|
+
-------------------------------
|
27111
|
+
Processing by DemosController#index as HTML
|
27112
|
+
Rendered demos/index.html.erb within layouts/application (21.5ms)
|
27113
|
+
Completed 200 OK in 42ms (Views: 41.9ms)
|
27114
|
+
------------------------------------
|
27115
|
+
DemosControllerTest: test_show_fixed
|
27116
|
+
------------------------------------
|
27117
|
+
Processing by DemosController#show as HTML
|
27118
|
+
Parameters: {"id"=>"fixed"}
|
27119
|
+
Rendered remote_partials/_fixed.html.erb (0.3ms)
|
27120
|
+
Rendered demos/_fixed.html.erb (2.1ms)
|
27121
|
+
Completed 200 OK in 8ms (Views: 8.2ms)
|
27122
|
+
-----------------------------------------------------------
|
27123
|
+
DemosHelperTest: test_render_remote_partial_with_no_partial
|
27124
|
+
-----------------------------------------------------------
|
27125
|
+
--------------------------------------
|
27126
|
+
RemotePartial::BuilderTest: test_build
|
27127
|
+
--------------------------------------
|
27128
|
+
------------------------------------------------------------
|
27129
|
+
RemotePartial::BuilderTest: test_build_with_existing_partial
|
27130
|
+
------------------------------------------------------------
|
27131
|
+
------------------------------------------------------------------
|
27132
|
+
RemotePartial::BuilderTest: test_build_with_existing_stale_partial
|
27133
|
+
------------------------------------------------------------------
|
27134
|
+
------------------------------------------------------
|
27135
|
+
RemotePartial::BuilderTest: test_build_with_http_error
|
27136
|
+
------------------------------------------------------
|
27137
|
+
Unable to retrieve remote partial at http://www.warwickshire.gov.uk: #<Net::HTTPBadRequest 400 readbody=true>
|
27138
|
+
---------------------------------------------------------
|
27139
|
+
RemotePartial::BuilderTest: test_create_or_update_partial
|
27140
|
+
---------------------------------------------------------
|
27141
|
+
-----------------------------------------------------------------------------------
|
27142
|
+
RemotePartial::BuilderTest: test_create_or_update_partial_updates_if_partial_exists
|
27143
|
+
-----------------------------------------------------------------------------------
|
27144
|
+
----------------------------------------------------------------------------
|
27145
|
+
RemotePartial::BuilderTest: test_stale_at_not_modified_if_unable_to_retrieve
|
27146
|
+
----------------------------------------------------------------------------
|
27147
|
+
Unable to retrieve remote partial at http://www.warwickshire.gov.uk: #<Net::HTTPBadRequest 400 readbody=true>
|
27148
|
+
----------------------------------------------------------------
|
27149
|
+
RemotePartial::ExceptionTest: test_remote_partial_retrival_error
|
27150
|
+
----------------------------------------------------------------
|
27151
|
+
-------------------------------------------------
|
27152
|
+
RemotePartial::PartialTest: test_output_file_name
|
27153
|
+
-------------------------------------------------
|
27154
|
+
--------------------------------------------------------
|
27155
|
+
RemotePartial::PartialTest: test_stale_at_gets_into_file
|
27156
|
+
--------------------------------------------------------
|
27157
|
+
--------------------------------------------------------
|
27158
|
+
RemotePartial::PartialTest: test_stale_at_gets_into_hash
|
27159
|
+
--------------------------------------------------------
|
27160
|
+
------------------------------------------------------------------
|
27161
|
+
RemotePartial::PartialTest: test_stale_at_not_updated_unless_stale
|
27162
|
+
------------------------------------------------------------------
|
27163
|
+
--------------------------------------------------------
|
27164
|
+
RemotePartial::PartialTest: test_stale_at_reset_if_stale
|
27165
|
+
--------------------------------------------------------
|
27166
|
+
--------------------------------------------
|
27167
|
+
RemotePartial::PartialTest: test_update_file
|
27168
|
+
--------------------------------------------
|
27169
|
+
------------------------------------------------------------------------
|
27170
|
+
RemotePartial::PartialTest: test_update_file_not_affected_by_stale_state
|
27171
|
+
------------------------------------------------------------------------
|
27172
|
+
-----------------------------------------------------------------
|
27173
|
+
RemotePartial::PartialTest: test_update_file_with_output_modifier
|
27174
|
+
-----------------------------------------------------------------
|
27175
|
+
------------------------------------------------
|
27176
|
+
RemotePartial::PartialTest: test_update_stale_at
|
27177
|
+
------------------------------------------------
|
27178
|
+
--------------------------------------------------
|
27179
|
+
RemotePartial::PartialTest: test_update_stale_file
|
27180
|
+
--------------------------------------------------
|
27181
|
+
-----------------------------------------------------------------
|
27182
|
+
RemotePartial::PartialTest: test_update_stale_file_when_not_stale
|
27183
|
+
-----------------------------------------------------------------
|
27184
|
+
-----------------------------------------------------------
|
27185
|
+
RemotePartial::ResourceManagerTest: test_connection_failure
|
27186
|
+
-----------------------------------------------------------
|
27187
|
+
------------------------------------------------------------------------------
|
27188
|
+
RemotePartial::ResourceManagerTest: test_connection_failure_due_to_invalid_url
|
27189
|
+
------------------------------------------------------------------------------
|
27190
|
+
-------------------------------------------------
|
27191
|
+
RemotePartial::ResourceManagerTest: test_get_page
|
27192
|
+
-------------------------------------------------
|
27193
|
+
------------------------------------------------
|
27194
|
+
RemotePartial::ResourceManagerTest: test_get_raw
|
27195
|
+
------------------------------------------------
|
27196
|
+
---------------------------------------------
|
27197
|
+
RemotePartial::ResourceManagerTest: test_html
|
27198
|
+
---------------------------------------------
|
27199
|
+
--------------------------------------------------------
|
27200
|
+
RemotePartial::ResourceManagerTest: test_html_with_limit
|
27201
|
+
--------------------------------------------------------
|
27202
|
+
--------------------------------------------------------------------------------------
|
27203
|
+
RemotePartial::ResourceManagerTest: test_html_with_limit_that_returns_multiple_matches
|
27204
|
+
--------------------------------------------------------------------------------------
|
27205
|
+
-----------------------------------------------------------
|
27206
|
+
RemotePartial::ResourceManagerTest: test_html_with_proc_mod
|
27207
|
+
-----------------------------------------------------------
|
27208
|
+
--------------------------------------------------
|
27209
|
+
RemotePartial::ResourceManagerTest: test_output_to
|
27210
|
+
--------------------------------------------------
|
27211
|
+
---------------------------------------------
|
27212
|
+
RemotePartial::ResourceManagerTest: test_stub
|
27213
|
+
---------------------------------------------
|
27214
|
+
----------------------------------------
|
27215
|
+
RemotePartial::YamlStoreTest: test_count
|
27216
|
+
----------------------------------------
|
27217
|
+
-----------------------------------------
|
27218
|
+
RemotePartial::YamlStoreTest: test_create
|
27219
|
+
-----------------------------------------
|
27220
|
+
---------------------------------------------
|
27221
|
+
RemotePartial::YamlStoreTest: test_created_at
|
27222
|
+
---------------------------------------------
|
27223
|
+
-------------------------------------------------------------------
|
27224
|
+
RemotePartial::YamlStoreTest: test_created_at_not_updated_if_exists
|
27225
|
+
-------------------------------------------------------------------
|
27226
|
+
------------------------------------------
|
27227
|
+
RemotePartial::YamlStoreTest: test_db_path
|
27228
|
+
------------------------------------------
|
27229
|
+
--------------------------------------
|
27230
|
+
RemotePartial::YamlStoreTest: test_dir
|
27231
|
+
--------------------------------------
|
27232
|
+
---------------------------------------
|
27233
|
+
RemotePartial::YamlStoreTest: test_file
|
27234
|
+
---------------------------------------
|
27235
|
+
---------------------------------------
|
27236
|
+
RemotePartial::YamlStoreTest: test_find
|
27237
|
+
---------------------------------------
|
27238
|
+
-------------------------------------------------------
|
27239
|
+
RemotePartial::YamlStoreTest: test_find_when_none_exist
|
27240
|
+
-------------------------------------------------------
|
27241
|
+
---------------------------------------------------
|
27242
|
+
RemotePartial::YamlStoreTest: test_find_with_symbol
|
27243
|
+
---------------------------------------------------
|
27244
|
+
-----------------------------------------
|
27245
|
+
RemotePartial::YamlStoreTest: test_merge!
|
27246
|
+
-----------------------------------------
|
27247
|
+
--------------------------------------
|
27248
|
+
RemotePartial::YamlStoreTest: test_new
|
27249
|
+
--------------------------------------
|
27250
|
+
---------------------------------------
|
27251
|
+
RemotePartial::YamlStoreTest: test_read
|
27252
|
+
---------------------------------------
|
27253
|
+
-----------------------------------------------------------
|
27254
|
+
RemotePartial::YamlStoreTest: test_read_when_no_file_exists
|
27255
|
+
-----------------------------------------------------------
|
27256
|
+
---------------------------------------
|
27257
|
+
RemotePartial::YamlStoreTest: test_root
|
27258
|
+
---------------------------------------
|
27259
|
+
---------------------------------------
|
27260
|
+
RemotePartial::YamlStoreTest: test_save
|
27261
|
+
---------------------------------------
|
27262
|
+
------------------------------------------------------
|
27263
|
+
RemotePartial::YamlStoreTest: test_save_without_a_name
|
27264
|
+
------------------------------------------------------
|
27265
|
+
----------------------------------------------
|
27266
|
+
RemotePartial::YamlStoreTest: test_string_keys
|
27267
|
+
----------------------------------------------
|
27268
|
+
---------------------------------------------
|
27269
|
+
RemotePartial::YamlStoreTest: test_updated_at
|
27270
|
+
---------------------------------------------
|
27271
|
+
------------------------------------------------------------------
|
27272
|
+
RemotePartial::YamlStoreTest: test_updated_at_if_updated_if_exists
|
27273
|
+
------------------------------------------------------------------
|
27274
|
+
----------------------------------------
|
27275
|
+
RemotePartial::YamlStoreTest: test_write
|
27276
|
+
----------------------------------------
|
27277
|
+
------------------------------
|
27278
|
+
RemotePartialTest: test_define
|
27279
|
+
------------------------------
|
27280
|
+
Unable to retrieve remote partial at http://www.warwickshire.gov.uk: #<WebMock::NetConnectNotAllowedError: Real HTTP connections are disabled. Unregistered request: GET http://www.warwickshire.gov.uk/ with headers {'Accept'=>'*/*', 'User-Agent'=>'Ruby'}
|
27281
|
+
|
27282
|
+
You can stub this request with the following snippet:
|
27283
|
+
|
27284
|
+
stub_request(:get, "http://www.warwickshire.gov.uk/").
|
27285
|
+
with(:headers => {'Accept'=>'*/*', 'User-Agent'=>'Ruby'}).
|
27286
|
+
to_return(:status => 200, :body => "", :headers => {})
|
27287
|
+
|
27288
|
+
============================================================>
|
27289
|
+
-----------------------------------------------
|
27290
|
+
RemotePartialTest: test_define_with_string_keys
|
27291
|
+
-----------------------------------------------
|
27292
|
+
Unable to retrieve remote partial at http://www.warwickshire.gov.uk: #<WebMock::NetConnectNotAllowedError: Real HTTP connections are disabled. Unregistered request: GET http://www.warwickshire.gov.uk/ with headers {'Accept'=>'*/*', 'User-Agent'=>'Ruby'}
|
27293
|
+
|
27294
|
+
You can stub this request with the following snippet:
|
27295
|
+
|
27296
|
+
stub_request(:get, "http://www.warwickshire.gov.uk/").
|
27297
|
+
with(:headers => {'Accept'=>'*/*', 'User-Agent'=>'Ruby'}).
|
27298
|
+
to_return(:status => 200, :body => "", :headers => {})
|
27299
|
+
|
27300
|
+
============================================================>
|
27301
|
+
-----------------------------
|
27302
|
+
RemotePartialTest: test_truth
|
27303
|
+
-----------------------------
|
27304
|
+
Unable to retrieve remote partial at http://www.timeanddate.com/worldclock/city.html?n=136: #<WebMock::NetConnectNotAllowedError: Real HTTP connections are disabled. Unregistered request: GET http://www.timeanddate.com/worldclock/city.html?n=136 with headers {'Accept'=>'*/*', 'User-Agent'=>'Ruby'}
|
27305
|
+
|
27306
|
+
You can stub this request with the following snippet:
|
27307
|
+
|
27308
|
+
stub_request(:get, "http://www.timeanddate.com/worldclock/city.html?n=136").
|
27309
|
+
with(:headers => {'Accept'=>'*/*', 'User-Agent'=>'Ruby'}).
|
27310
|
+
to_return(:status => 200, :body => "", :headers => {})
|
27311
|
+
|
27312
|
+
============================================================>
|
27313
|
+
Unable to retrieve remote partial at http://www.ruby-lang.org/en/: #<WebMock::NetConnectNotAllowedError: Real HTTP connections are disabled. Unregistered request: GET http://www.ruby-lang.org/en/ with headers {'Accept'=>'*/*', 'User-Agent'=>'Ruby'}
|
27314
|
+
|
27315
|
+
You can stub this request with the following snippet:
|
27316
|
+
|
27317
|
+
stub_request(:get, "http://www.ruby-lang.org/en/").
|
27318
|
+
with(:headers => {'Accept'=>'*/*', 'User-Agent'=>'Ruby'}).
|
27319
|
+
to_return(:status => 200, :body => "", :headers => {})
|
27320
|
+
|
27321
|
+
============================================================>
|
27322
|
+
-------------------------------
|
27323
|
+
DemosControllerTest: test_index
|
27324
|
+
-------------------------------
|
27325
|
+
Processing by DemosController#index as HTML
|
27326
|
+
Rendered demos/index.html.erb within layouts/application (18.0ms)
|
27327
|
+
Completed 200 OK in 37ms (Views: 36.9ms)
|
27328
|
+
------------------------------------
|
27329
|
+
DemosControllerTest: test_show_fixed
|
27330
|
+
------------------------------------
|
27331
|
+
Processing by DemosController#show as HTML
|
27332
|
+
Parameters: {"id"=>"fixed"}
|
27333
|
+
Rendered remote_partials/_fixed.html.erb (0.3ms)
|
27334
|
+
Rendered demos/_fixed.html.erb (1.6ms)
|
27335
|
+
Completed 200 OK in 7ms (Views: 7.0ms)
|
27336
|
+
-----------------------------------------------------------
|
27337
|
+
DemosHelperTest: test_render_remote_partial_with_no_partial
|
27338
|
+
-----------------------------------------------------------
|
27339
|
+
--------------------------------------
|
27340
|
+
RemotePartial::BuilderTest: test_build
|
27341
|
+
--------------------------------------
|
27342
|
+
------------------------------------------------------------
|
27343
|
+
RemotePartial::BuilderTest: test_build_with_existing_partial
|
27344
|
+
------------------------------------------------------------
|
27345
|
+
------------------------------------------------------------------
|
27346
|
+
RemotePartial::BuilderTest: test_build_with_existing_stale_partial
|
27347
|
+
------------------------------------------------------------------
|
27348
|
+
------------------------------------------------------
|
27349
|
+
RemotePartial::BuilderTest: test_build_with_http_error
|
27350
|
+
------------------------------------------------------
|
27351
|
+
Unable to retrieve remote partial at http://www.warwickshire.gov.uk: #<Net::HTTPBadRequest 400 readbody=true>
|
27352
|
+
---------------------------------------------------------
|
27353
|
+
RemotePartial::BuilderTest: test_create_or_update_partial
|
27354
|
+
---------------------------------------------------------
|
27355
|
+
-----------------------------------------------------------------------------------
|
27356
|
+
RemotePartial::BuilderTest: test_create_or_update_partial_updates_if_partial_exists
|
27357
|
+
-----------------------------------------------------------------------------------
|
27358
|
+
----------------------------------------------------------------------------
|
27359
|
+
RemotePartial::BuilderTest: test_stale_at_not_modified_if_unable_to_retrieve
|
27360
|
+
----------------------------------------------------------------------------
|
27361
|
+
Unable to retrieve remote partial at http://www.warwickshire.gov.uk: #<Net::HTTPBadRequest 400 readbody=true>
|
27362
|
+
----------------------------------------------------------------
|
27363
|
+
RemotePartial::ExceptionTest: test_remote_partial_retrival_error
|
27364
|
+
----------------------------------------------------------------
|
27365
|
+
-------------------------------------------------
|
27366
|
+
RemotePartial::PartialTest: test_output_file_name
|
27367
|
+
-------------------------------------------------
|
27368
|
+
--------------------------------------------------------
|
27369
|
+
RemotePartial::PartialTest: test_stale_at_gets_into_file
|
27370
|
+
--------------------------------------------------------
|
27371
|
+
--------------------------------------------------------
|
27372
|
+
RemotePartial::PartialTest: test_stale_at_gets_into_hash
|
27373
|
+
--------------------------------------------------------
|
27374
|
+
------------------------------------------------------------------
|
27375
|
+
RemotePartial::PartialTest: test_stale_at_not_updated_unless_stale
|
27376
|
+
------------------------------------------------------------------
|
27377
|
+
--------------------------------------------------------
|
27378
|
+
RemotePartial::PartialTest: test_stale_at_reset_if_stale
|
27379
|
+
--------------------------------------------------------
|
27380
|
+
--------------------------------------------
|
27381
|
+
RemotePartial::PartialTest: test_update_file
|
27382
|
+
--------------------------------------------
|
27383
|
+
------------------------------------------------------------------------
|
27384
|
+
RemotePartial::PartialTest: test_update_file_not_affected_by_stale_state
|
27385
|
+
------------------------------------------------------------------------
|
27386
|
+
-----------------------------------------------------------------
|
27387
|
+
RemotePartial::PartialTest: test_update_file_with_output_modifier
|
27388
|
+
-----------------------------------------------------------------
|
27389
|
+
------------------------------------------------
|
27390
|
+
RemotePartial::PartialTest: test_update_stale_at
|
27391
|
+
------------------------------------------------
|
27392
|
+
--------------------------------------------------
|
27393
|
+
RemotePartial::PartialTest: test_update_stale_file
|
27394
|
+
--------------------------------------------------
|
27395
|
+
-----------------------------------------------------------------
|
27396
|
+
RemotePartial::PartialTest: test_update_stale_file_when_not_stale
|
27397
|
+
-----------------------------------------------------------------
|
27398
|
+
-----------------------------------------------------------
|
27399
|
+
RemotePartial::ResourceManagerTest: test_connection_failure
|
27400
|
+
-----------------------------------------------------------
|
27401
|
+
------------------------------------------------------------------------------
|
27402
|
+
RemotePartial::ResourceManagerTest: test_connection_failure_due_to_invalid_url
|
27403
|
+
------------------------------------------------------------------------------
|
27404
|
+
-------------------------------------------------
|
27405
|
+
RemotePartial::ResourceManagerTest: test_get_page
|
27406
|
+
-------------------------------------------------
|
27407
|
+
------------------------------------------------
|
27408
|
+
RemotePartial::ResourceManagerTest: test_get_raw
|
27409
|
+
------------------------------------------------
|
27410
|
+
---------------------------------------------
|
27411
|
+
RemotePartial::ResourceManagerTest: test_html
|
27412
|
+
---------------------------------------------
|
27413
|
+
--------------------------------------------------------
|
27414
|
+
RemotePartial::ResourceManagerTest: test_html_with_limit
|
27415
|
+
--------------------------------------------------------
|
27416
|
+
--------------------------------------------------------------------------------------
|
27417
|
+
RemotePartial::ResourceManagerTest: test_html_with_limit_that_returns_multiple_matches
|
27418
|
+
--------------------------------------------------------------------------------------
|
27419
|
+
-----------------------------------------------------------
|
27420
|
+
RemotePartial::ResourceManagerTest: test_html_with_proc_mod
|
27421
|
+
-----------------------------------------------------------
|
27422
|
+
--------------------------------------------------
|
27423
|
+
RemotePartial::ResourceManagerTest: test_output_to
|
27424
|
+
--------------------------------------------------
|
27425
|
+
---------------------------------------------
|
27426
|
+
RemotePartial::ResourceManagerTest: test_stub
|
27427
|
+
---------------------------------------------
|
27428
|
+
----------------------------------------
|
27429
|
+
RemotePartial::YamlStoreTest: test_count
|
27430
|
+
----------------------------------------
|
27431
|
+
-----------------------------------------
|
27432
|
+
RemotePartial::YamlStoreTest: test_create
|
27433
|
+
-----------------------------------------
|
27434
|
+
---------------------------------------------
|
27435
|
+
RemotePartial::YamlStoreTest: test_created_at
|
27436
|
+
---------------------------------------------
|
27437
|
+
-------------------------------------------------------------------
|
27438
|
+
RemotePartial::YamlStoreTest: test_created_at_not_updated_if_exists
|
27439
|
+
-------------------------------------------------------------------
|
27440
|
+
------------------------------------------
|
27441
|
+
RemotePartial::YamlStoreTest: test_db_path
|
27442
|
+
------------------------------------------
|
27443
|
+
--------------------------------------
|
27444
|
+
RemotePartial::YamlStoreTest: test_dir
|
27445
|
+
--------------------------------------
|
27446
|
+
---------------------------------------
|
27447
|
+
RemotePartial::YamlStoreTest: test_file
|
27448
|
+
---------------------------------------
|
27449
|
+
---------------------------------------
|
27450
|
+
RemotePartial::YamlStoreTest: test_find
|
27451
|
+
---------------------------------------
|
27452
|
+
-------------------------------------------------------
|
27453
|
+
RemotePartial::YamlStoreTest: test_find_when_none_exist
|
27454
|
+
-------------------------------------------------------
|
27455
|
+
---------------------------------------------------
|
27456
|
+
RemotePartial::YamlStoreTest: test_find_with_symbol
|
27457
|
+
---------------------------------------------------
|
27458
|
+
-----------------------------------------
|
27459
|
+
RemotePartial::YamlStoreTest: test_merge!
|
27460
|
+
-----------------------------------------
|
27461
|
+
--------------------------------------
|
27462
|
+
RemotePartial::YamlStoreTest: test_new
|
27463
|
+
--------------------------------------
|
27464
|
+
---------------------------------------
|
27465
|
+
RemotePartial::YamlStoreTest: test_read
|
27466
|
+
---------------------------------------
|
27467
|
+
-----------------------------------------------------------
|
27468
|
+
RemotePartial::YamlStoreTest: test_read_when_no_file_exists
|
27469
|
+
-----------------------------------------------------------
|
27470
|
+
---------------------------------------
|
27471
|
+
RemotePartial::YamlStoreTest: test_root
|
27472
|
+
---------------------------------------
|
27473
|
+
---------------------------------------
|
27474
|
+
RemotePartial::YamlStoreTest: test_save
|
27475
|
+
---------------------------------------
|
27476
|
+
------------------------------------------------------
|
27477
|
+
RemotePartial::YamlStoreTest: test_save_without_a_name
|
27478
|
+
------------------------------------------------------
|
27479
|
+
----------------------------------------------
|
27480
|
+
RemotePartial::YamlStoreTest: test_string_keys
|
27481
|
+
----------------------------------------------
|
27482
|
+
---------------------------------------------
|
27483
|
+
RemotePartial::YamlStoreTest: test_updated_at
|
27484
|
+
---------------------------------------------
|
27485
|
+
------------------------------------------------------------------
|
27486
|
+
RemotePartial::YamlStoreTest: test_updated_at_if_updated_if_exists
|
27487
|
+
------------------------------------------------------------------
|
27488
|
+
----------------------------------------
|
27489
|
+
RemotePartial::YamlStoreTest: test_write
|
27490
|
+
----------------------------------------
|
27491
|
+
------------------------------
|
27492
|
+
RemotePartialTest: test_define
|
27493
|
+
------------------------------
|
27494
|
+
Unable to retrieve remote partial at http://www.warwickshire.gov.uk: #<WebMock::NetConnectNotAllowedError: Real HTTP connections are disabled. Unregistered request: GET http://www.warwickshire.gov.uk/ with headers {'Accept'=>'*/*', 'User-Agent'=>'Ruby'}
|
27495
|
+
|
27496
|
+
You can stub this request with the following snippet:
|
27497
|
+
|
27498
|
+
stub_request(:get, "http://www.warwickshire.gov.uk/").
|
27499
|
+
with(:headers => {'Accept'=>'*/*', 'User-Agent'=>'Ruby'}).
|
27500
|
+
to_return(:status => 200, :body => "", :headers => {})
|
27501
|
+
|
27502
|
+
============================================================>
|
27503
|
+
-----------------------------------------------
|
27504
|
+
RemotePartialTest: test_define_with_string_keys
|
27505
|
+
-----------------------------------------------
|
27506
|
+
Unable to retrieve remote partial at http://www.warwickshire.gov.uk: #<WebMock::NetConnectNotAllowedError: Real HTTP connections are disabled. Unregistered request: GET http://www.warwickshire.gov.uk/ with headers {'Accept'=>'*/*', 'User-Agent'=>'Ruby'}
|
27507
|
+
|
27508
|
+
You can stub this request with the following snippet:
|
27509
|
+
|
27510
|
+
stub_request(:get, "http://www.warwickshire.gov.uk/").
|
27511
|
+
with(:headers => {'Accept'=>'*/*', 'User-Agent'=>'Ruby'}).
|
27512
|
+
to_return(:status => 200, :body => "", :headers => {})
|
27513
|
+
|
27514
|
+
============================================================>
|
27515
|
+
-----------------------------
|
27516
|
+
RemotePartialTest: test_truth
|
27517
|
+
-----------------------------
|
27518
|
+
Unable to retrieve remote partial at http://www.timeanddate.com/worldclock/city.html?n=136: #<WebMock::NetConnectNotAllowedError: Real HTTP connections are disabled. Unregistered request: GET http://www.timeanddate.com/worldclock/city.html?n=136 with headers {'Accept'=>'*/*', 'User-Agent'=>'Ruby'}
|
27519
|
+
|
27520
|
+
You can stub this request with the following snippet:
|
27521
|
+
|
27522
|
+
stub_request(:get, "http://www.timeanddate.com/worldclock/city.html?n=136").
|
27523
|
+
with(:headers => {'Accept'=>'*/*', 'User-Agent'=>'Ruby'}).
|
27524
|
+
to_return(:status => 200, :body => "", :headers => {})
|
27525
|
+
|
27526
|
+
============================================================>
|
27527
|
+
Unable to retrieve remote partial at http://www.ruby-lang.org/en/: #<WebMock::NetConnectNotAllowedError: Real HTTP connections are disabled. Unregistered request: GET http://www.ruby-lang.org/en/ with headers {'Accept'=>'*/*', 'User-Agent'=>'Ruby'}
|
27528
|
+
|
27529
|
+
You can stub this request with the following snippet:
|
27530
|
+
|
27531
|
+
stub_request(:get, "http://www.ruby-lang.org/en/").
|
27532
|
+
with(:headers => {'Accept'=>'*/*', 'User-Agent'=>'Ruby'}).
|
27533
|
+
to_return(:status => 200, :body => "", :headers => {})
|
27534
|
+
|
27535
|
+
============================================================>
|
27536
|
+
-------------------------------
|
27537
|
+
DemosControllerTest: test_index
|
27538
|
+
-------------------------------
|
27539
|
+
Processing by DemosController#index as HTML
|
27540
|
+
Rendered demos/index.html.erb within layouts/application (31.5ms)
|
27541
|
+
Completed 200 OK in 48ms (Views: 47.4ms)
|
27542
|
+
------------------------------------
|
27543
|
+
DemosControllerTest: test_show_fixed
|
27544
|
+
------------------------------------
|
27545
|
+
Processing by DemosController#show as HTML
|
27546
|
+
Parameters: {"id"=>"fixed"}
|
27547
|
+
Rendered remote_partials/_fixed.html.erb (0.3ms)
|
27548
|
+
Rendered demos/_fixed.html.erb (1.9ms)
|
27549
|
+
Completed 200 OK in 9ms (Views: 8.8ms)
|
27550
|
+
-----------------------------------------------------------
|
27551
|
+
DemosHelperTest: test_render_remote_partial_with_no_partial
|
27552
|
+
-----------------------------------------------------------
|
27553
|
+
--------------------------------------
|
27554
|
+
RemotePartial::BuilderTest: test_build
|
27555
|
+
--------------------------------------
|
27556
|
+
------------------------------------------------------------
|
27557
|
+
RemotePartial::BuilderTest: test_build_with_existing_partial
|
27558
|
+
------------------------------------------------------------
|
27559
|
+
------------------------------------------------------------------
|
27560
|
+
RemotePartial::BuilderTest: test_build_with_existing_stale_partial
|
27561
|
+
------------------------------------------------------------------
|
27562
|
+
------------------------------------------------------
|
27563
|
+
RemotePartial::BuilderTest: test_build_with_http_error
|
27564
|
+
------------------------------------------------------
|
27565
|
+
Unable to retrieve remote partial at http://www.warwickshire.gov.uk: #<Net::HTTPBadRequest 400 readbody=true>
|
27566
|
+
---------------------------------------------------------
|
27567
|
+
RemotePartial::BuilderTest: test_create_or_update_partial
|
27568
|
+
---------------------------------------------------------
|
27569
|
+
-----------------------------------------------------------------------------------
|
27570
|
+
RemotePartial::BuilderTest: test_create_or_update_partial_updates_if_partial_exists
|
27571
|
+
-----------------------------------------------------------------------------------
|
27572
|
+
----------------------------------------------------------------------------
|
27573
|
+
RemotePartial::BuilderTest: test_stale_at_not_modified_if_unable_to_retrieve
|
27574
|
+
----------------------------------------------------------------------------
|
27575
|
+
Unable to retrieve remote partial at http://www.warwickshire.gov.uk: #<Net::HTTPBadRequest 400 readbody=true>
|
27576
|
+
----------------------------------------------------------------
|
27577
|
+
RemotePartial::ExceptionTest: test_remote_partial_retrival_error
|
27578
|
+
----------------------------------------------------------------
|
27579
|
+
-------------------------------------------------
|
27580
|
+
RemotePartial::PartialTest: test_output_file_name
|
27581
|
+
-------------------------------------------------
|
27582
|
+
--------------------------------------------------------
|
27583
|
+
RemotePartial::PartialTest: test_stale_at_gets_into_file
|
27584
|
+
--------------------------------------------------------
|
27585
|
+
--------------------------------------------------------
|
27586
|
+
RemotePartial::PartialTest: test_stale_at_gets_into_hash
|
27587
|
+
--------------------------------------------------------
|
27588
|
+
------------------------------------------------------------------
|
27589
|
+
RemotePartial::PartialTest: test_stale_at_not_updated_unless_stale
|
27590
|
+
------------------------------------------------------------------
|
27591
|
+
--------------------------------------------------------
|
27592
|
+
RemotePartial::PartialTest: test_stale_at_reset_if_stale
|
27593
|
+
--------------------------------------------------------
|
27594
|
+
--------------------------------------------
|
27595
|
+
RemotePartial::PartialTest: test_update_file
|
27596
|
+
--------------------------------------------
|
27597
|
+
------------------------------------------------------------------------
|
27598
|
+
RemotePartial::PartialTest: test_update_file_not_affected_by_stale_state
|
27599
|
+
------------------------------------------------------------------------
|
27600
|
+
-----------------------------------------------------------------
|
27601
|
+
RemotePartial::PartialTest: test_update_file_with_output_modifier
|
27602
|
+
-----------------------------------------------------------------
|
27603
|
+
------------------------------------------------
|
27604
|
+
RemotePartial::PartialTest: test_update_stale_at
|
27605
|
+
------------------------------------------------
|
27606
|
+
--------------------------------------------------
|
27607
|
+
RemotePartial::PartialTest: test_update_stale_file
|
27608
|
+
--------------------------------------------------
|
27609
|
+
-----------------------------------------------------------------
|
27610
|
+
RemotePartial::PartialTest: test_update_stale_file_when_not_stale
|
27611
|
+
-----------------------------------------------------------------
|
27612
|
+
-----------------------------------------------------------
|
27613
|
+
RemotePartial::ResourceManagerTest: test_connection_failure
|
27614
|
+
-----------------------------------------------------------
|
27615
|
+
------------------------------------------------------------------------------
|
27616
|
+
RemotePartial::ResourceManagerTest: test_connection_failure_due_to_invalid_url
|
27617
|
+
------------------------------------------------------------------------------
|
27618
|
+
-------------------------------------------------
|
27619
|
+
RemotePartial::ResourceManagerTest: test_get_page
|
27620
|
+
-------------------------------------------------
|
27621
|
+
------------------------------------------------
|
27622
|
+
RemotePartial::ResourceManagerTest: test_get_raw
|
27623
|
+
------------------------------------------------
|
27624
|
+
---------------------------------------------
|
27625
|
+
RemotePartial::ResourceManagerTest: test_html
|
27626
|
+
---------------------------------------------
|
27627
|
+
--------------------------------------------------------
|
27628
|
+
RemotePartial::ResourceManagerTest: test_html_with_limit
|
27629
|
+
--------------------------------------------------------
|
27630
|
+
--------------------------------------------------------------------------------------
|
27631
|
+
RemotePartial::ResourceManagerTest: test_html_with_limit_that_returns_multiple_matches
|
27632
|
+
--------------------------------------------------------------------------------------
|
27633
|
+
-----------------------------------------------------------
|
27634
|
+
RemotePartial::ResourceManagerTest: test_html_with_proc_mod
|
27635
|
+
-----------------------------------------------------------
|
27636
|
+
--------------------------------------------------
|
27637
|
+
RemotePartial::ResourceManagerTest: test_output_to
|
27638
|
+
--------------------------------------------------
|
27639
|
+
---------------------------------------------
|
27640
|
+
RemotePartial::ResourceManagerTest: test_stub
|
27641
|
+
---------------------------------------------
|
27642
|
+
----------------------------------------
|
27643
|
+
RemotePartial::YamlStoreTest: test_count
|
27644
|
+
----------------------------------------
|
27645
|
+
-----------------------------------------
|
27646
|
+
RemotePartial::YamlStoreTest: test_create
|
27647
|
+
-----------------------------------------
|
27648
|
+
---------------------------------------------
|
27649
|
+
RemotePartial::YamlStoreTest: test_created_at
|
27650
|
+
---------------------------------------------
|
27651
|
+
-------------------------------------------------------------------
|
27652
|
+
RemotePartial::YamlStoreTest: test_created_at_not_updated_if_exists
|
27653
|
+
-------------------------------------------------------------------
|
27654
|
+
------------------------------------------
|
27655
|
+
RemotePartial::YamlStoreTest: test_db_path
|
27656
|
+
------------------------------------------
|
27657
|
+
--------------------------------------
|
27658
|
+
RemotePartial::YamlStoreTest: test_dir
|
27659
|
+
--------------------------------------
|
27660
|
+
---------------------------------------
|
27661
|
+
RemotePartial::YamlStoreTest: test_file
|
27662
|
+
---------------------------------------
|
27663
|
+
---------------------------------------
|
27664
|
+
RemotePartial::YamlStoreTest: test_find
|
27665
|
+
---------------------------------------
|
27666
|
+
-------------------------------------------------------
|
27667
|
+
RemotePartial::YamlStoreTest: test_find_when_none_exist
|
27668
|
+
-------------------------------------------------------
|
27669
|
+
---------------------------------------------------
|
27670
|
+
RemotePartial::YamlStoreTest: test_find_with_symbol
|
27671
|
+
---------------------------------------------------
|
27672
|
+
-----------------------------------------
|
27673
|
+
RemotePartial::YamlStoreTest: test_merge!
|
27674
|
+
-----------------------------------------
|
27675
|
+
--------------------------------------
|
27676
|
+
RemotePartial::YamlStoreTest: test_new
|
27677
|
+
--------------------------------------
|
27678
|
+
---------------------------------------
|
27679
|
+
RemotePartial::YamlStoreTest: test_read
|
27680
|
+
---------------------------------------
|
27681
|
+
-----------------------------------------------------------
|
27682
|
+
RemotePartial::YamlStoreTest: test_read_when_no_file_exists
|
27683
|
+
-----------------------------------------------------------
|
27684
|
+
---------------------------------------
|
27685
|
+
RemotePartial::YamlStoreTest: test_root
|
27686
|
+
---------------------------------------
|
27687
|
+
---------------------------------------
|
27688
|
+
RemotePartial::YamlStoreTest: test_save
|
27689
|
+
---------------------------------------
|
27690
|
+
------------------------------------------------------
|
27691
|
+
RemotePartial::YamlStoreTest: test_save_without_a_name
|
27692
|
+
------------------------------------------------------
|
27693
|
+
----------------------------------------------
|
27694
|
+
RemotePartial::YamlStoreTest: test_string_keys
|
27695
|
+
----------------------------------------------
|
27696
|
+
---------------------------------------------
|
27697
|
+
RemotePartial::YamlStoreTest: test_updated_at
|
27698
|
+
---------------------------------------------
|
27699
|
+
------------------------------------------------------------------
|
27700
|
+
RemotePartial::YamlStoreTest: test_updated_at_if_updated_if_exists
|
27701
|
+
------------------------------------------------------------------
|
27702
|
+
----------------------------------------
|
27703
|
+
RemotePartial::YamlStoreTest: test_write
|
27704
|
+
----------------------------------------
|
27705
|
+
------------------------------
|
27706
|
+
RemotePartialTest: test_define
|
27707
|
+
------------------------------
|
27708
|
+
Unable to retrieve remote partial at http://www.warwickshire.gov.uk: #<WebMock::NetConnectNotAllowedError: Real HTTP connections are disabled. Unregistered request: GET http://www.warwickshire.gov.uk/ with headers {'Accept'=>'*/*', 'User-Agent'=>'Ruby'}
|
27709
|
+
|
27710
|
+
You can stub this request with the following snippet:
|
27711
|
+
|
27712
|
+
stub_request(:get, "http://www.warwickshire.gov.uk/").
|
27713
|
+
with(:headers => {'Accept'=>'*/*', 'User-Agent'=>'Ruby'}).
|
27714
|
+
to_return(:status => 200, :body => "", :headers => {})
|
27715
|
+
|
27716
|
+
============================================================>
|
27717
|
+
-----------------------------------------------
|
27718
|
+
RemotePartialTest: test_define_with_string_keys
|
27719
|
+
-----------------------------------------------
|
27720
|
+
Unable to retrieve remote partial at http://www.warwickshire.gov.uk: #<WebMock::NetConnectNotAllowedError: Real HTTP connections are disabled. Unregistered request: GET http://www.warwickshire.gov.uk/ with headers {'Accept'=>'*/*', 'User-Agent'=>'Ruby'}
|
27721
|
+
|
27722
|
+
You can stub this request with the following snippet:
|
27723
|
+
|
27724
|
+
stub_request(:get, "http://www.warwickshire.gov.uk/").
|
27725
|
+
with(:headers => {'Accept'=>'*/*', 'User-Agent'=>'Ruby'}).
|
27726
|
+
to_return(:status => 200, :body => "", :headers => {})
|
27727
|
+
|
27728
|
+
============================================================>
|
27729
|
+
-----------------------------
|
27730
|
+
RemotePartialTest: test_truth
|
27731
|
+
-----------------------------
|
27732
|
+
Unable to retrieve remote partial at http://www.timeanddate.com/worldclock/city.html?n=136: #<WebMock::NetConnectNotAllowedError: Real HTTP connections are disabled. Unregistered request: GET http://www.timeanddate.com/worldclock/city.html?n=136 with headers {'Accept'=>'*/*', 'User-Agent'=>'Ruby'}
|
27733
|
+
|
27734
|
+
You can stub this request with the following snippet:
|
27735
|
+
|
27736
|
+
stub_request(:get, "http://www.timeanddate.com/worldclock/city.html?n=136").
|
27737
|
+
with(:headers => {'Accept'=>'*/*', 'User-Agent'=>'Ruby'}).
|
27738
|
+
to_return(:status => 200, :body => "", :headers => {})
|
27739
|
+
|
27740
|
+
============================================================>
|
27741
|
+
Unable to retrieve remote partial at http://www.ruby-lang.org/en/: #<WebMock::NetConnectNotAllowedError: Real HTTP connections are disabled. Unregistered request: GET http://www.ruby-lang.org/en/ with headers {'Accept'=>'*/*', 'User-Agent'=>'Ruby'}
|
27742
|
+
|
27743
|
+
You can stub this request with the following snippet:
|
27744
|
+
|
27745
|
+
stub_request(:get, "http://www.ruby-lang.org/en/").
|
27746
|
+
with(:headers => {'Accept'=>'*/*', 'User-Agent'=>'Ruby'}).
|
27747
|
+
to_return(:status => 200, :body => "", :headers => {})
|
27748
|
+
|
27749
|
+
============================================================>
|
27750
|
+
-------------------------------
|
27751
|
+
DemosControllerTest: test_index
|
27752
|
+
-------------------------------
|
27753
|
+
Processing by DemosController#index as HTML
|
27754
|
+
Rendered demos/index.html.erb within layouts/application (24.4ms)
|
27755
|
+
Completed 200 OK in 36ms (Views: 35.8ms)
|
27756
|
+
------------------------------------
|
27757
|
+
DemosControllerTest: test_show_fixed
|
27758
|
+
------------------------------------
|
27759
|
+
Processing by DemosController#show as HTML
|
27760
|
+
Parameters: {"id"=>"fixed"}
|
27761
|
+
Rendered remote_partials/_fixed.html.erb (0.3ms)
|
27762
|
+
Rendered demos/_fixed.html.erb (1.8ms)
|
27763
|
+
Completed 200 OK in 11ms (Views: 11.2ms)
|
27764
|
+
-----------------------------------------------------------
|
27765
|
+
DemosHelperTest: test_render_remote_partial_with_no_partial
|
27766
|
+
-----------------------------------------------------------
|
27767
|
+
--------------------------------------
|
27768
|
+
RemotePartial::BuilderTest: test_build
|
27769
|
+
--------------------------------------
|
27770
|
+
------------------------------------------------------------
|
27771
|
+
RemotePartial::BuilderTest: test_build_with_existing_partial
|
27772
|
+
------------------------------------------------------------
|
27773
|
+
------------------------------------------------------------------
|
27774
|
+
RemotePartial::BuilderTest: test_build_with_existing_stale_partial
|
27775
|
+
------------------------------------------------------------------
|
27776
|
+
------------------------------------------------------
|
27777
|
+
RemotePartial::BuilderTest: test_build_with_http_error
|
27778
|
+
------------------------------------------------------
|
27779
|
+
Unable to retrieve remote partial at http://www.warwickshire.gov.uk: #<Net::HTTPBadRequest 400 readbody=true>
|
27780
|
+
---------------------------------------------------------
|
27781
|
+
RemotePartial::BuilderTest: test_create_or_update_partial
|
27782
|
+
---------------------------------------------------------
|
27783
|
+
-----------------------------------------------------------------------------------
|
27784
|
+
RemotePartial::BuilderTest: test_create_or_update_partial_updates_if_partial_exists
|
27785
|
+
-----------------------------------------------------------------------------------
|
27786
|
+
----------------------------------------------------------------------------
|
27787
|
+
RemotePartial::BuilderTest: test_stale_at_not_modified_if_unable_to_retrieve
|
27788
|
+
----------------------------------------------------------------------------
|
27789
|
+
Unable to retrieve remote partial at http://www.warwickshire.gov.uk: #<Net::HTTPBadRequest 400 readbody=true>
|
27790
|
+
----------------------------------------------------------------
|
27791
|
+
RemotePartial::ExceptionTest: test_remote_partial_retrival_error
|
27792
|
+
----------------------------------------------------------------
|
27793
|
+
-------------------------------------------------
|
27794
|
+
RemotePartial::PartialTest: test_output_file_name
|
27795
|
+
-------------------------------------------------
|
27796
|
+
--------------------------------------------------------
|
27797
|
+
RemotePartial::PartialTest: test_stale_at_gets_into_file
|
27798
|
+
--------------------------------------------------------
|
27799
|
+
--------------------------------------------------------
|
27800
|
+
RemotePartial::PartialTest: test_stale_at_gets_into_hash
|
27801
|
+
--------------------------------------------------------
|
27802
|
+
------------------------------------------------------------------
|
27803
|
+
RemotePartial::PartialTest: test_stale_at_not_updated_unless_stale
|
27804
|
+
------------------------------------------------------------------
|
27805
|
+
--------------------------------------------------------
|
27806
|
+
RemotePartial::PartialTest: test_stale_at_reset_if_stale
|
27807
|
+
--------------------------------------------------------
|
27808
|
+
--------------------------------------------
|
27809
|
+
RemotePartial::PartialTest: test_update_file
|
27810
|
+
--------------------------------------------
|
27811
|
+
------------------------------------------------------------------------
|
27812
|
+
RemotePartial::PartialTest: test_update_file_not_affected_by_stale_state
|
27813
|
+
------------------------------------------------------------------------
|
27814
|
+
-----------------------------------------------------------------
|
27815
|
+
RemotePartial::PartialTest: test_update_file_with_output_modifier
|
27816
|
+
-----------------------------------------------------------------
|
27817
|
+
------------------------------------------------
|
27818
|
+
RemotePartial::PartialTest: test_update_stale_at
|
27819
|
+
------------------------------------------------
|
27820
|
+
--------------------------------------------------
|
27821
|
+
RemotePartial::PartialTest: test_update_stale_file
|
27822
|
+
--------------------------------------------------
|
27823
|
+
-----------------------------------------------------------------
|
27824
|
+
RemotePartial::PartialTest: test_update_stale_file_when_not_stale
|
27825
|
+
-----------------------------------------------------------------
|
27826
|
+
-----------------------------------------------------------
|
27827
|
+
RemotePartial::ResourceManagerTest: test_connection_failure
|
27828
|
+
-----------------------------------------------------------
|
27829
|
+
------------------------------------------------------------------------------
|
27830
|
+
RemotePartial::ResourceManagerTest: test_connection_failure_due_to_invalid_url
|
27831
|
+
------------------------------------------------------------------------------
|
27832
|
+
-------------------------------------------------
|
27833
|
+
RemotePartial::ResourceManagerTest: test_get_page
|
27834
|
+
-------------------------------------------------
|
27835
|
+
------------------------------------------------
|
27836
|
+
RemotePartial::ResourceManagerTest: test_get_raw
|
27837
|
+
------------------------------------------------
|
27838
|
+
---------------------------------------------
|
27839
|
+
RemotePartial::ResourceManagerTest: test_html
|
27840
|
+
---------------------------------------------
|
27841
|
+
--------------------------------------------------------
|
27842
|
+
RemotePartial::ResourceManagerTest: test_html_with_limit
|
27843
|
+
--------------------------------------------------------
|
27844
|
+
--------------------------------------------------------------------------------------
|
27845
|
+
RemotePartial::ResourceManagerTest: test_html_with_limit_that_returns_multiple_matches
|
27846
|
+
--------------------------------------------------------------------------------------
|
27847
|
+
-----------------------------------------------------------
|
27848
|
+
RemotePartial::ResourceManagerTest: test_html_with_proc_mod
|
27849
|
+
-----------------------------------------------------------
|
27850
|
+
--------------------------------------------------
|
27851
|
+
RemotePartial::ResourceManagerTest: test_output_to
|
27852
|
+
--------------------------------------------------
|
27853
|
+
---------------------------------------------
|
27854
|
+
RemotePartial::ResourceManagerTest: test_stub
|
27855
|
+
---------------------------------------------
|
27856
|
+
----------------------------------------
|
27857
|
+
RemotePartial::YamlStoreTest: test_count
|
27858
|
+
----------------------------------------
|
27859
|
+
-----------------------------------------
|
27860
|
+
RemotePartial::YamlStoreTest: test_create
|
27861
|
+
-----------------------------------------
|
27862
|
+
---------------------------------------------
|
27863
|
+
RemotePartial::YamlStoreTest: test_created_at
|
27864
|
+
---------------------------------------------
|
27865
|
+
-------------------------------------------------------------------
|
27866
|
+
RemotePartial::YamlStoreTest: test_created_at_not_updated_if_exists
|
27867
|
+
-------------------------------------------------------------------
|
27868
|
+
------------------------------------------
|
27869
|
+
RemotePartial::YamlStoreTest: test_db_path
|
27870
|
+
------------------------------------------
|
27871
|
+
--------------------------------------
|
27872
|
+
RemotePartial::YamlStoreTest: test_dir
|
27873
|
+
--------------------------------------
|
27874
|
+
---------------------------------------
|
27875
|
+
RemotePartial::YamlStoreTest: test_file
|
27876
|
+
---------------------------------------
|
27877
|
+
---------------------------------------
|
27878
|
+
RemotePartial::YamlStoreTest: test_find
|
27879
|
+
---------------------------------------
|
27880
|
+
-------------------------------------------------------
|
27881
|
+
RemotePartial::YamlStoreTest: test_find_when_none_exist
|
27882
|
+
-------------------------------------------------------
|
27883
|
+
---------------------------------------------------
|
27884
|
+
RemotePartial::YamlStoreTest: test_find_with_symbol
|
27885
|
+
---------------------------------------------------
|
27886
|
+
-----------------------------------------
|
27887
|
+
RemotePartial::YamlStoreTest: test_merge!
|
27888
|
+
-----------------------------------------
|
27889
|
+
--------------------------------------
|
27890
|
+
RemotePartial::YamlStoreTest: test_new
|
27891
|
+
--------------------------------------
|
27892
|
+
---------------------------------------
|
27893
|
+
RemotePartial::YamlStoreTest: test_read
|
27894
|
+
---------------------------------------
|
27895
|
+
-----------------------------------------------------------
|
27896
|
+
RemotePartial::YamlStoreTest: test_read_when_no_file_exists
|
27897
|
+
-----------------------------------------------------------
|
27898
|
+
---------------------------------------
|
27899
|
+
RemotePartial::YamlStoreTest: test_root
|
27900
|
+
---------------------------------------
|
27901
|
+
---------------------------------------
|
27902
|
+
RemotePartial::YamlStoreTest: test_save
|
27903
|
+
---------------------------------------
|
27904
|
+
------------------------------------------------------
|
27905
|
+
RemotePartial::YamlStoreTest: test_save_without_a_name
|
27906
|
+
------------------------------------------------------
|
27907
|
+
----------------------------------------------
|
27908
|
+
RemotePartial::YamlStoreTest: test_string_keys
|
27909
|
+
----------------------------------------------
|
27910
|
+
---------------------------------------------
|
27911
|
+
RemotePartial::YamlStoreTest: test_updated_at
|
27912
|
+
---------------------------------------------
|
27913
|
+
------------------------------------------------------------------
|
27914
|
+
RemotePartial::YamlStoreTest: test_updated_at_if_updated_if_exists
|
27915
|
+
------------------------------------------------------------------
|
27916
|
+
----------------------------------------
|
27917
|
+
RemotePartial::YamlStoreTest: test_write
|
27918
|
+
----------------------------------------
|
27919
|
+
------------------------------
|
27920
|
+
RemotePartialTest: test_define
|
27921
|
+
------------------------------
|
27922
|
+
Unable to retrieve remote partial at http://www.warwickshire.gov.uk: #<WebMock::NetConnectNotAllowedError: Real HTTP connections are disabled. Unregistered request: GET http://www.warwickshire.gov.uk/ with headers {'Accept'=>'*/*', 'User-Agent'=>'Ruby'}
|
27923
|
+
|
27924
|
+
You can stub this request with the following snippet:
|
27925
|
+
|
27926
|
+
stub_request(:get, "http://www.warwickshire.gov.uk/").
|
27927
|
+
with(:headers => {'Accept'=>'*/*', 'User-Agent'=>'Ruby'}).
|
27928
|
+
to_return(:status => 200, :body => "", :headers => {})
|
27929
|
+
|
27930
|
+
============================================================>
|
27931
|
+
-----------------------------------------------
|
27932
|
+
RemotePartialTest: test_define_with_string_keys
|
27933
|
+
-----------------------------------------------
|
27934
|
+
Unable to retrieve remote partial at http://www.warwickshire.gov.uk: #<WebMock::NetConnectNotAllowedError: Real HTTP connections are disabled. Unregistered request: GET http://www.warwickshire.gov.uk/ with headers {'Accept'=>'*/*', 'User-Agent'=>'Ruby'}
|
27935
|
+
|
27936
|
+
You can stub this request with the following snippet:
|
27937
|
+
|
27938
|
+
stub_request(:get, "http://www.warwickshire.gov.uk/").
|
27939
|
+
with(:headers => {'Accept'=>'*/*', 'User-Agent'=>'Ruby'}).
|
27940
|
+
to_return(:status => 200, :body => "", :headers => {})
|
27941
|
+
|
27942
|
+
============================================================>
|
27943
|
+
-----------------------------
|
27944
|
+
RemotePartialTest: test_truth
|
27945
|
+
-----------------------------
|
27946
|
+
Unable to retrieve remote partial at http://www.timeanddate.com/worldclock/city.html?n=136: #<WebMock::NetConnectNotAllowedError: Real HTTP connections are disabled. Unregistered request: GET http://www.timeanddate.com/worldclock/city.html?n=136 with headers {'Accept'=>'*/*', 'User-Agent'=>'Ruby'}
|
27947
|
+
|
27948
|
+
You can stub this request with the following snippet:
|
27949
|
+
|
27950
|
+
stub_request(:get, "http://www.timeanddate.com/worldclock/city.html?n=136").
|
27951
|
+
with(:headers => {'Accept'=>'*/*', 'User-Agent'=>'Ruby'}).
|
27952
|
+
to_return(:status => 200, :body => "", :headers => {})
|
27953
|
+
|
27954
|
+
============================================================>
|
27955
|
+
Unable to retrieve remote partial at http://www.ruby-lang.org/en/: #<WebMock::NetConnectNotAllowedError: Real HTTP connections are disabled. Unregistered request: GET http://www.ruby-lang.org/en/ with headers {'Accept'=>'*/*', 'User-Agent'=>'Ruby'}
|
27956
|
+
|
27957
|
+
You can stub this request with the following snippet:
|
27958
|
+
|
27959
|
+
stub_request(:get, "http://www.ruby-lang.org/en/").
|
27960
|
+
with(:headers => {'Accept'=>'*/*', 'User-Agent'=>'Ruby'}).
|
27961
|
+
to_return(:status => 200, :body => "", :headers => {})
|
27962
|
+
|
27963
|
+
============================================================>
|
27964
|
+
-------------------------------
|
27965
|
+
DemosControllerTest: test_index
|
27966
|
+
-------------------------------
|
27967
|
+
Processing by DemosController#index as HTML
|
27968
|
+
Rendered demos/index.html.erb within layouts/application (19.6ms)
|
27969
|
+
Completed 200 OK in 40ms (Views: 39.9ms)
|
27970
|
+
------------------------------------
|
27971
|
+
DemosControllerTest: test_show_fixed
|
27972
|
+
------------------------------------
|
27973
|
+
Processing by DemosController#show as HTML
|
27974
|
+
Parameters: {"id"=>"fixed"}
|
27975
|
+
Rendered remote_partials/_fixed.html.erb (0.3ms)
|
27976
|
+
Rendered demos/_fixed.html.erb (1.7ms)
|
27977
|
+
Completed 200 OK in 8ms (Views: 7.6ms)
|
27978
|
+
-----------------------------------------------------------
|
27979
|
+
DemosHelperTest: test_render_remote_partial_with_no_partial
|
27980
|
+
-----------------------------------------------------------
|
27981
|
+
--------------------------------------
|
27982
|
+
RemotePartial::BuilderTest: test_build
|
27983
|
+
--------------------------------------
|
27984
|
+
------------------------------------------------------------
|
27985
|
+
RemotePartial::BuilderTest: test_build_with_existing_partial
|
27986
|
+
------------------------------------------------------------
|
27987
|
+
------------------------------------------------------------------
|
27988
|
+
RemotePartial::BuilderTest: test_build_with_existing_stale_partial
|
27989
|
+
------------------------------------------------------------------
|
27990
|
+
------------------------------------------------------
|
27991
|
+
RemotePartial::BuilderTest: test_build_with_http_error
|
27992
|
+
------------------------------------------------------
|
27993
|
+
Unable to retrieve remote partial at http://www.warwickshire.gov.uk: #<Net::HTTPBadRequest 400 readbody=true>
|
27994
|
+
---------------------------------------------------------
|
27995
|
+
RemotePartial::BuilderTest: test_create_or_update_partial
|
27996
|
+
---------------------------------------------------------
|
27997
|
+
-----------------------------------------------------------------------------------
|
27998
|
+
RemotePartial::BuilderTest: test_create_or_update_partial_updates_if_partial_exists
|
27999
|
+
-----------------------------------------------------------------------------------
|
28000
|
+
----------------------------------------------------------------------------
|
28001
|
+
RemotePartial::BuilderTest: test_stale_at_not_modified_if_unable_to_retrieve
|
28002
|
+
----------------------------------------------------------------------------
|
28003
|
+
Unable to retrieve remote partial at http://www.warwickshire.gov.uk: #<Net::HTTPBadRequest 400 readbody=true>
|
28004
|
+
----------------------------------------------------------------
|
28005
|
+
RemotePartial::ExceptionTest: test_remote_partial_retrival_error
|
28006
|
+
----------------------------------------------------------------
|
28007
|
+
-------------------------------------------------
|
28008
|
+
RemotePartial::PartialTest: test_output_file_name
|
28009
|
+
-------------------------------------------------
|
28010
|
+
--------------------------------------------------------
|
28011
|
+
RemotePartial::PartialTest: test_stale_at_gets_into_file
|
28012
|
+
--------------------------------------------------------
|
28013
|
+
--------------------------------------------------------
|
28014
|
+
RemotePartial::PartialTest: test_stale_at_gets_into_hash
|
28015
|
+
--------------------------------------------------------
|
28016
|
+
------------------------------------------------------------------
|
28017
|
+
RemotePartial::PartialTest: test_stale_at_not_updated_unless_stale
|
28018
|
+
------------------------------------------------------------------
|
28019
|
+
--------------------------------------------------------
|
28020
|
+
RemotePartial::PartialTest: test_stale_at_reset_if_stale
|
28021
|
+
--------------------------------------------------------
|
28022
|
+
--------------------------------------------
|
28023
|
+
RemotePartial::PartialTest: test_update_file
|
28024
|
+
--------------------------------------------
|
28025
|
+
------------------------------------------------------------------------
|
28026
|
+
RemotePartial::PartialTest: test_update_file_not_affected_by_stale_state
|
28027
|
+
------------------------------------------------------------------------
|
28028
|
+
-----------------------------------------------------------------
|
28029
|
+
RemotePartial::PartialTest: test_update_file_with_output_modifier
|
28030
|
+
-----------------------------------------------------------------
|
28031
|
+
------------------------------------------------
|
28032
|
+
RemotePartial::PartialTest: test_update_stale_at
|
28033
|
+
------------------------------------------------
|
28034
|
+
--------------------------------------------------
|
28035
|
+
RemotePartial::PartialTest: test_update_stale_file
|
28036
|
+
--------------------------------------------------
|
28037
|
+
-----------------------------------------------------------------
|
28038
|
+
RemotePartial::PartialTest: test_update_stale_file_when_not_stale
|
28039
|
+
-----------------------------------------------------------------
|
28040
|
+
-----------------------------------------------------------
|
28041
|
+
RemotePartial::ResourceManagerTest: test_connection_failure
|
28042
|
+
-----------------------------------------------------------
|
28043
|
+
------------------------------------------------------------------------------
|
28044
|
+
RemotePartial::ResourceManagerTest: test_connection_failure_due_to_invalid_url
|
28045
|
+
------------------------------------------------------------------------------
|
28046
|
+
-------------------------------------------------
|
28047
|
+
RemotePartial::ResourceManagerTest: test_get_page
|
28048
|
+
-------------------------------------------------
|
28049
|
+
------------------------------------------------
|
28050
|
+
RemotePartial::ResourceManagerTest: test_get_raw
|
28051
|
+
------------------------------------------------
|
28052
|
+
---------------------------------------------
|
28053
|
+
RemotePartial::ResourceManagerTest: test_html
|
28054
|
+
---------------------------------------------
|
28055
|
+
--------------------------------------------------------
|
28056
|
+
RemotePartial::ResourceManagerTest: test_html_with_limit
|
28057
|
+
--------------------------------------------------------
|
28058
|
+
--------------------------------------------------------------------------------------
|
28059
|
+
RemotePartial::ResourceManagerTest: test_html_with_limit_that_returns_multiple_matches
|
28060
|
+
--------------------------------------------------------------------------------------
|
28061
|
+
-----------------------------------------------------------
|
28062
|
+
RemotePartial::ResourceManagerTest: test_html_with_proc_mod
|
28063
|
+
-----------------------------------------------------------
|
28064
|
+
--------------------------------------------------
|
28065
|
+
RemotePartial::ResourceManagerTest: test_output_to
|
28066
|
+
--------------------------------------------------
|
28067
|
+
---------------------------------------------
|
28068
|
+
RemotePartial::ResourceManagerTest: test_stub
|
28069
|
+
---------------------------------------------
|
28070
|
+
----------------------------------------
|
28071
|
+
RemotePartial::YamlStoreTest: test_count
|
28072
|
+
----------------------------------------
|
28073
|
+
-----------------------------------------
|
28074
|
+
RemotePartial::YamlStoreTest: test_create
|
28075
|
+
-----------------------------------------
|
28076
|
+
---------------------------------------------
|
28077
|
+
RemotePartial::YamlStoreTest: test_created_at
|
28078
|
+
---------------------------------------------
|
28079
|
+
-------------------------------------------------------------------
|
28080
|
+
RemotePartial::YamlStoreTest: test_created_at_not_updated_if_exists
|
28081
|
+
-------------------------------------------------------------------
|
28082
|
+
------------------------------------------
|
28083
|
+
RemotePartial::YamlStoreTest: test_db_path
|
28084
|
+
------------------------------------------
|
28085
|
+
--------------------------------------
|
28086
|
+
RemotePartial::YamlStoreTest: test_dir
|
28087
|
+
--------------------------------------
|
28088
|
+
---------------------------------------
|
28089
|
+
RemotePartial::YamlStoreTest: test_file
|
28090
|
+
---------------------------------------
|
28091
|
+
---------------------------------------
|
28092
|
+
RemotePartial::YamlStoreTest: test_find
|
28093
|
+
---------------------------------------
|
28094
|
+
-------------------------------------------------------
|
28095
|
+
RemotePartial::YamlStoreTest: test_find_when_none_exist
|
28096
|
+
-------------------------------------------------------
|
28097
|
+
---------------------------------------------------
|
28098
|
+
RemotePartial::YamlStoreTest: test_find_with_symbol
|
28099
|
+
---------------------------------------------------
|
28100
|
+
-----------------------------------------
|
28101
|
+
RemotePartial::YamlStoreTest: test_merge!
|
28102
|
+
-----------------------------------------
|
28103
|
+
--------------------------------------
|
28104
|
+
RemotePartial::YamlStoreTest: test_new
|
28105
|
+
--------------------------------------
|
28106
|
+
---------------------------------------
|
28107
|
+
RemotePartial::YamlStoreTest: test_read
|
28108
|
+
---------------------------------------
|
28109
|
+
-----------------------------------------------------------
|
28110
|
+
RemotePartial::YamlStoreTest: test_read_when_no_file_exists
|
28111
|
+
-----------------------------------------------------------
|
28112
|
+
---------------------------------------
|
28113
|
+
RemotePartial::YamlStoreTest: test_root
|
28114
|
+
---------------------------------------
|
28115
|
+
---------------------------------------
|
28116
|
+
RemotePartial::YamlStoreTest: test_save
|
28117
|
+
---------------------------------------
|
28118
|
+
------------------------------------------------------
|
28119
|
+
RemotePartial::YamlStoreTest: test_save_without_a_name
|
28120
|
+
------------------------------------------------------
|
28121
|
+
----------------------------------------------
|
28122
|
+
RemotePartial::YamlStoreTest: test_string_keys
|
28123
|
+
----------------------------------------------
|
28124
|
+
---------------------------------------------
|
28125
|
+
RemotePartial::YamlStoreTest: test_updated_at
|
28126
|
+
---------------------------------------------
|
28127
|
+
------------------------------------------------------------------
|
28128
|
+
RemotePartial::YamlStoreTest: test_updated_at_if_updated_if_exists
|
28129
|
+
------------------------------------------------------------------
|
28130
|
+
----------------------------------------
|
28131
|
+
RemotePartial::YamlStoreTest: test_write
|
28132
|
+
----------------------------------------
|
28133
|
+
------------------------------
|
28134
|
+
RemotePartialTest: test_define
|
28135
|
+
------------------------------
|
28136
|
+
Unable to retrieve remote partial at http://www.warwickshire.gov.uk: #<WebMock::NetConnectNotAllowedError: Real HTTP connections are disabled. Unregistered request: GET http://www.warwickshire.gov.uk/ with headers {'Accept'=>'*/*', 'User-Agent'=>'Ruby'}
|
28137
|
+
|
28138
|
+
You can stub this request with the following snippet:
|
28139
|
+
|
28140
|
+
stub_request(:get, "http://www.warwickshire.gov.uk/").
|
28141
|
+
with(:headers => {'Accept'=>'*/*', 'User-Agent'=>'Ruby'}).
|
28142
|
+
to_return(:status => 200, :body => "", :headers => {})
|
28143
|
+
|
28144
|
+
============================================================>
|
28145
|
+
-----------------------------------------------
|
28146
|
+
RemotePartialTest: test_define_with_string_keys
|
28147
|
+
-----------------------------------------------
|
28148
|
+
Unable to retrieve remote partial at http://www.warwickshire.gov.uk: #<WebMock::NetConnectNotAllowedError: Real HTTP connections are disabled. Unregistered request: GET http://www.warwickshire.gov.uk/ with headers {'Accept'=>'*/*', 'User-Agent'=>'Ruby'}
|
28149
|
+
|
28150
|
+
You can stub this request with the following snippet:
|
28151
|
+
|
28152
|
+
stub_request(:get, "http://www.warwickshire.gov.uk/").
|
28153
|
+
with(:headers => {'Accept'=>'*/*', 'User-Agent'=>'Ruby'}).
|
28154
|
+
to_return(:status => 200, :body => "", :headers => {})
|
28155
|
+
|
28156
|
+
============================================================>
|
28157
|
+
-----------------------------
|
28158
|
+
RemotePartialTest: test_truth
|
28159
|
+
-----------------------------
|
28160
|
+
Unable to retrieve remote partial at http://www.timeanddate.com/worldclock/city.html?n=136: #<WebMock::NetConnectNotAllowedError: Real HTTP connections are disabled. Unregistered request: GET http://www.timeanddate.com/worldclock/city.html?n=136 with headers {'Accept'=>'*/*', 'User-Agent'=>'Ruby'}
|
28161
|
+
|
28162
|
+
You can stub this request with the following snippet:
|
28163
|
+
|
28164
|
+
stub_request(:get, "http://www.timeanddate.com/worldclock/city.html?n=136").
|
28165
|
+
with(:headers => {'Accept'=>'*/*', 'User-Agent'=>'Ruby'}).
|
28166
|
+
to_return(:status => 200, :body => "", :headers => {})
|
28167
|
+
|
28168
|
+
============================================================>
|
28169
|
+
Unable to retrieve remote partial at http://www.ruby-lang.org/en/: #<WebMock::NetConnectNotAllowedError: Real HTTP connections are disabled. Unregistered request: GET http://www.ruby-lang.org/en/ with headers {'Accept'=>'*/*', 'User-Agent'=>'Ruby'}
|
28170
|
+
|
28171
|
+
You can stub this request with the following snippet:
|
28172
|
+
|
28173
|
+
stub_request(:get, "http://www.ruby-lang.org/en/").
|
28174
|
+
with(:headers => {'Accept'=>'*/*', 'User-Agent'=>'Ruby'}).
|
28175
|
+
to_return(:status => 200, :body => "", :headers => {})
|
28176
|
+
|
28177
|
+
============================================================>
|
28178
|
+
-------------------------------
|
28179
|
+
DemosControllerTest: test_index
|
28180
|
+
-------------------------------
|
28181
|
+
Processing by DemosController#index as HTML
|
28182
|
+
Rendered demos/index.html.erb within layouts/application (20.3ms)
|
28183
|
+
Completed 200 OK in 36ms (Views: 35.5ms)
|
28184
|
+
------------------------------------
|
28185
|
+
DemosControllerTest: test_show_fixed
|
28186
|
+
------------------------------------
|
28187
|
+
Processing by DemosController#show as HTML
|
28188
|
+
Parameters: {"id"=>"fixed"}
|
28189
|
+
Rendered remote_partials/_fixed.html.erb (0.3ms)
|
28190
|
+
Rendered demos/_fixed.html.erb (2.2ms)
|
28191
|
+
Completed 200 OK in 8ms (Views: 8.1ms)
|
28192
|
+
-----------------------------------------------------------
|
28193
|
+
DemosHelperTest: test_render_remote_partial_with_no_partial
|
28194
|
+
-----------------------------------------------------------
|
28195
|
+
--------------------------------------
|
28196
|
+
RemotePartial::BuilderTest: test_build
|
28197
|
+
--------------------------------------
|
28198
|
+
------------------------------------------------------------
|
28199
|
+
RemotePartial::BuilderTest: test_build_with_existing_partial
|
28200
|
+
------------------------------------------------------------
|
28201
|
+
------------------------------------------------------------------
|
28202
|
+
RemotePartial::BuilderTest: test_build_with_existing_stale_partial
|
28203
|
+
------------------------------------------------------------------
|
28204
|
+
------------------------------------------------------
|
28205
|
+
RemotePartial::BuilderTest: test_build_with_http_error
|
28206
|
+
------------------------------------------------------
|
28207
|
+
Unable to retrieve remote partial at http://www.warwickshire.gov.uk: #<Net::HTTPBadRequest 400 readbody=true>
|
28208
|
+
---------------------------------------------------------
|
28209
|
+
RemotePartial::BuilderTest: test_create_or_update_partial
|
28210
|
+
---------------------------------------------------------
|
28211
|
+
-----------------------------------------------------------------------------------
|
28212
|
+
RemotePartial::BuilderTest: test_create_or_update_partial_updates_if_partial_exists
|
28213
|
+
-----------------------------------------------------------------------------------
|
28214
|
+
----------------------------------------------------------------------------
|
28215
|
+
RemotePartial::BuilderTest: test_stale_at_not_modified_if_unable_to_retrieve
|
28216
|
+
----------------------------------------------------------------------------
|
28217
|
+
Unable to retrieve remote partial at http://www.warwickshire.gov.uk: #<Net::HTTPBadRequest 400 readbody=true>
|
28218
|
+
----------------------------------------------------------------
|
28219
|
+
RemotePartial::ExceptionTest: test_remote_partial_retrival_error
|
28220
|
+
----------------------------------------------------------------
|
28221
|
+
-------------------------------------------------
|
28222
|
+
RemotePartial::PartialTest: test_output_file_name
|
28223
|
+
-------------------------------------------------
|
28224
|
+
--------------------------------------------------------
|
28225
|
+
RemotePartial::PartialTest: test_stale_at_gets_into_file
|
28226
|
+
--------------------------------------------------------
|
28227
|
+
--------------------------------------------------------
|
28228
|
+
RemotePartial::PartialTest: test_stale_at_gets_into_hash
|
28229
|
+
--------------------------------------------------------
|
28230
|
+
------------------------------------------------------------------
|
28231
|
+
RemotePartial::PartialTest: test_stale_at_not_updated_unless_stale
|
28232
|
+
------------------------------------------------------------------
|
28233
|
+
--------------------------------------------------------
|
28234
|
+
RemotePartial::PartialTest: test_stale_at_reset_if_stale
|
28235
|
+
--------------------------------------------------------
|
28236
|
+
--------------------------------------------
|
28237
|
+
RemotePartial::PartialTest: test_update_file
|
28238
|
+
--------------------------------------------
|
28239
|
+
------------------------------------------------------------------------
|
28240
|
+
RemotePartial::PartialTest: test_update_file_not_affected_by_stale_state
|
28241
|
+
------------------------------------------------------------------------
|
28242
|
+
-----------------------------------------------------------------
|
28243
|
+
RemotePartial::PartialTest: test_update_file_with_output_modifier
|
28244
|
+
-----------------------------------------------------------------
|
28245
|
+
------------------------------------------------
|
28246
|
+
RemotePartial::PartialTest: test_update_stale_at
|
28247
|
+
------------------------------------------------
|
28248
|
+
--------------------------------------------------
|
28249
|
+
RemotePartial::PartialTest: test_update_stale_file
|
28250
|
+
--------------------------------------------------
|
28251
|
+
-----------------------------------------------------------------
|
28252
|
+
RemotePartial::PartialTest: test_update_stale_file_when_not_stale
|
28253
|
+
-----------------------------------------------------------------
|
28254
|
+
-----------------------------------------------------------
|
28255
|
+
RemotePartial::ResourceManagerTest: test_connection_failure
|
28256
|
+
-----------------------------------------------------------
|
28257
|
+
------------------------------------------------------------------------------
|
28258
|
+
RemotePartial::ResourceManagerTest: test_connection_failure_due_to_invalid_url
|
28259
|
+
------------------------------------------------------------------------------
|
28260
|
+
-------------------------------------------------
|
28261
|
+
RemotePartial::ResourceManagerTest: test_get_page
|
28262
|
+
-------------------------------------------------
|
28263
|
+
------------------------------------------------
|
28264
|
+
RemotePartial::ResourceManagerTest: test_get_raw
|
28265
|
+
------------------------------------------------
|
28266
|
+
---------------------------------------------
|
28267
|
+
RemotePartial::ResourceManagerTest: test_html
|
28268
|
+
---------------------------------------------
|
28269
|
+
--------------------------------------------------------
|
28270
|
+
RemotePartial::ResourceManagerTest: test_html_with_limit
|
28271
|
+
--------------------------------------------------------
|
28272
|
+
--------------------------------------------------------------------------------------
|
28273
|
+
RemotePartial::ResourceManagerTest: test_html_with_limit_that_returns_multiple_matches
|
28274
|
+
--------------------------------------------------------------------------------------
|
28275
|
+
-----------------------------------------------------------
|
28276
|
+
RemotePartial::ResourceManagerTest: test_html_with_proc_mod
|
28277
|
+
-----------------------------------------------------------
|
28278
|
+
--------------------------------------------------
|
28279
|
+
RemotePartial::ResourceManagerTest: test_output_to
|
28280
|
+
--------------------------------------------------
|
28281
|
+
---------------------------------------------
|
28282
|
+
RemotePartial::ResourceManagerTest: test_stub
|
28283
|
+
---------------------------------------------
|
28284
|
+
----------------------------------------
|
28285
|
+
RemotePartial::YamlStoreTest: test_count
|
28286
|
+
----------------------------------------
|
28287
|
+
-----------------------------------------
|
28288
|
+
RemotePartial::YamlStoreTest: test_create
|
28289
|
+
-----------------------------------------
|
28290
|
+
---------------------------------------------
|
28291
|
+
RemotePartial::YamlStoreTest: test_created_at
|
28292
|
+
---------------------------------------------
|
28293
|
+
-------------------------------------------------------------------
|
28294
|
+
RemotePartial::YamlStoreTest: test_created_at_not_updated_if_exists
|
28295
|
+
-------------------------------------------------------------------
|
28296
|
+
------------------------------------------
|
28297
|
+
RemotePartial::YamlStoreTest: test_db_path
|
28298
|
+
------------------------------------------
|
28299
|
+
--------------------------------------
|
28300
|
+
RemotePartial::YamlStoreTest: test_dir
|
28301
|
+
--------------------------------------
|
28302
|
+
---------------------------------------
|
28303
|
+
RemotePartial::YamlStoreTest: test_file
|
28304
|
+
---------------------------------------
|
28305
|
+
---------------------------------------
|
28306
|
+
RemotePartial::YamlStoreTest: test_find
|
28307
|
+
---------------------------------------
|
28308
|
+
-------------------------------------------------------
|
28309
|
+
RemotePartial::YamlStoreTest: test_find_when_none_exist
|
28310
|
+
-------------------------------------------------------
|
28311
|
+
---------------------------------------------------
|
28312
|
+
RemotePartial::YamlStoreTest: test_find_with_symbol
|
28313
|
+
---------------------------------------------------
|
28314
|
+
-----------------------------------------
|
28315
|
+
RemotePartial::YamlStoreTest: test_merge!
|
28316
|
+
-----------------------------------------
|
28317
|
+
--------------------------------------
|
28318
|
+
RemotePartial::YamlStoreTest: test_new
|
28319
|
+
--------------------------------------
|
28320
|
+
---------------------------------------
|
28321
|
+
RemotePartial::YamlStoreTest: test_read
|
28322
|
+
---------------------------------------
|
28323
|
+
-----------------------------------------------------------
|
28324
|
+
RemotePartial::YamlStoreTest: test_read_when_no_file_exists
|
28325
|
+
-----------------------------------------------------------
|
28326
|
+
---------------------------------------
|
28327
|
+
RemotePartial::YamlStoreTest: test_root
|
28328
|
+
---------------------------------------
|
28329
|
+
---------------------------------------
|
28330
|
+
RemotePartial::YamlStoreTest: test_save
|
28331
|
+
---------------------------------------
|
28332
|
+
------------------------------------------------------
|
28333
|
+
RemotePartial::YamlStoreTest: test_save_without_a_name
|
28334
|
+
------------------------------------------------------
|
28335
|
+
----------------------------------------------
|
28336
|
+
RemotePartial::YamlStoreTest: test_string_keys
|
28337
|
+
----------------------------------------------
|
28338
|
+
---------------------------------------------
|
28339
|
+
RemotePartial::YamlStoreTest: test_updated_at
|
28340
|
+
---------------------------------------------
|
28341
|
+
------------------------------------------------------------------
|
28342
|
+
RemotePartial::YamlStoreTest: test_updated_at_if_updated_if_exists
|
28343
|
+
------------------------------------------------------------------
|
28344
|
+
----------------------------------------
|
28345
|
+
RemotePartial::YamlStoreTest: test_write
|
28346
|
+
----------------------------------------
|
28347
|
+
------------------------------
|
28348
|
+
RemotePartialTest: test_define
|
28349
|
+
------------------------------
|
28350
|
+
Unable to retrieve remote partial at http://www.warwickshire.gov.uk: #<WebMock::NetConnectNotAllowedError: Real HTTP connections are disabled. Unregistered request: GET http://www.warwickshire.gov.uk/ with headers {'Accept'=>'*/*', 'User-Agent'=>'Ruby'}
|
28351
|
+
|
28352
|
+
You can stub this request with the following snippet:
|
28353
|
+
|
28354
|
+
stub_request(:get, "http://www.warwickshire.gov.uk/").
|
28355
|
+
with(:headers => {'Accept'=>'*/*', 'User-Agent'=>'Ruby'}).
|
28356
|
+
to_return(:status => 200, :body => "", :headers => {})
|
28357
|
+
|
28358
|
+
============================================================>
|
28359
|
+
-----------------------------------------------
|
28360
|
+
RemotePartialTest: test_define_with_string_keys
|
28361
|
+
-----------------------------------------------
|
28362
|
+
Unable to retrieve remote partial at http://www.warwickshire.gov.uk: #<WebMock::NetConnectNotAllowedError: Real HTTP connections are disabled. Unregistered request: GET http://www.warwickshire.gov.uk/ with headers {'Accept'=>'*/*', 'User-Agent'=>'Ruby'}
|
28363
|
+
|
28364
|
+
You can stub this request with the following snippet:
|
28365
|
+
|
28366
|
+
stub_request(:get, "http://www.warwickshire.gov.uk/").
|
28367
|
+
with(:headers => {'Accept'=>'*/*', 'User-Agent'=>'Ruby'}).
|
28368
|
+
to_return(:status => 200, :body => "", :headers => {})
|
28369
|
+
|
28370
|
+
============================================================>
|
28371
|
+
-----------------------------
|
28372
|
+
RemotePartialTest: test_truth
|
28373
|
+
-----------------------------
|
28374
|
+
Unable to retrieve remote partial at http://www.timeanddate.com/worldclock/city.html?n=136: #<WebMock::NetConnectNotAllowedError: Real HTTP connections are disabled. Unregistered request: GET http://www.timeanddate.com/worldclock/city.html?n=136 with headers {'Accept'=>'*/*', 'User-Agent'=>'Ruby'}
|
28375
|
+
|
28376
|
+
You can stub this request with the following snippet:
|
28377
|
+
|
28378
|
+
stub_request(:get, "http://www.timeanddate.com/worldclock/city.html?n=136").
|
28379
|
+
with(:headers => {'Accept'=>'*/*', 'User-Agent'=>'Ruby'}).
|
28380
|
+
to_return(:status => 200, :body => "", :headers => {})
|
28381
|
+
|
28382
|
+
============================================================>
|
28383
|
+
Unable to retrieve remote partial at http://www.ruby-lang.org/en/: #<WebMock::NetConnectNotAllowedError: Real HTTP connections are disabled. Unregistered request: GET http://www.ruby-lang.org/en/ with headers {'Accept'=>'*/*', 'User-Agent'=>'Ruby'}
|
28384
|
+
|
28385
|
+
You can stub this request with the following snippet:
|
28386
|
+
|
28387
|
+
stub_request(:get, "http://www.ruby-lang.org/en/").
|
28388
|
+
with(:headers => {'Accept'=>'*/*', 'User-Agent'=>'Ruby'}).
|
28389
|
+
to_return(:status => 200, :body => "", :headers => {})
|
28390
|
+
|
28391
|
+
============================================================>
|
28392
|
+
-------------------------------
|
28393
|
+
DemosControllerTest: test_index
|
28394
|
+
-------------------------------
|
28395
|
+
Processing by DemosController#index as HTML
|
28396
|
+
Rendered demos/index.html.erb within layouts/application (20.4ms)
|
28397
|
+
Completed 200 OK in 38ms (Views: 37.4ms)
|
28398
|
+
------------------------------------
|
28399
|
+
DemosControllerTest: test_show_fixed
|
28400
|
+
------------------------------------
|
28401
|
+
Processing by DemosController#show as HTML
|
28402
|
+
Parameters: {"id"=>"fixed"}
|
28403
|
+
Rendered remote_partials/_fixed.html.erb (0.4ms)
|
28404
|
+
Rendered demos/_fixed.html.erb (2.2ms)
|
28405
|
+
Completed 200 OK in 8ms (Views: 8.2ms)
|
28406
|
+
-----------------------------------------------------------
|
28407
|
+
DemosHelperTest: test_render_remote_partial_with_no_partial
|
28408
|
+
-----------------------------------------------------------
|
28409
|
+
--------------------------------------
|
28410
|
+
RemotePartial::BuilderTest: test_build
|
28411
|
+
--------------------------------------
|
28412
|
+
------------------------------------------------------------
|
28413
|
+
RemotePartial::BuilderTest: test_build_with_existing_partial
|
28414
|
+
------------------------------------------------------------
|
28415
|
+
------------------------------------------------------------------
|
28416
|
+
RemotePartial::BuilderTest: test_build_with_existing_stale_partial
|
28417
|
+
------------------------------------------------------------------
|
28418
|
+
------------------------------------------------------
|
28419
|
+
RemotePartial::BuilderTest: test_build_with_http_error
|
28420
|
+
------------------------------------------------------
|
28421
|
+
Unable to retrieve remote partial at http://www.warwickshire.gov.uk: #<Net::HTTPBadRequest 400 readbody=true>
|
28422
|
+
---------------------------------------------------------
|
28423
|
+
RemotePartial::BuilderTest: test_create_or_update_partial
|
28424
|
+
---------------------------------------------------------
|
28425
|
+
-----------------------------------------------------------------------------------
|
28426
|
+
RemotePartial::BuilderTest: test_create_or_update_partial_updates_if_partial_exists
|
28427
|
+
-----------------------------------------------------------------------------------
|
28428
|
+
----------------------------------------------------------------------------
|
28429
|
+
RemotePartial::BuilderTest: test_stale_at_not_modified_if_unable_to_retrieve
|
28430
|
+
----------------------------------------------------------------------------
|
28431
|
+
Unable to retrieve remote partial at http://www.warwickshire.gov.uk: #<Net::HTTPBadRequest 400 readbody=true>
|
28432
|
+
----------------------------------------------------------------
|
28433
|
+
RemotePartial::ExceptionTest: test_remote_partial_retrival_error
|
28434
|
+
----------------------------------------------------------------
|
28435
|
+
-------------------------------------------------
|
28436
|
+
RemotePartial::PartialTest: test_output_file_name
|
28437
|
+
-------------------------------------------------
|
28438
|
+
--------------------------------------------------------
|
28439
|
+
RemotePartial::PartialTest: test_stale_at_gets_into_file
|
28440
|
+
--------------------------------------------------------
|
28441
|
+
--------------------------------------------------------
|
28442
|
+
RemotePartial::PartialTest: test_stale_at_gets_into_hash
|
28443
|
+
--------------------------------------------------------
|
28444
|
+
------------------------------------------------------------------
|
28445
|
+
RemotePartial::PartialTest: test_stale_at_not_updated_unless_stale
|
28446
|
+
------------------------------------------------------------------
|
28447
|
+
--------------------------------------------------------
|
28448
|
+
RemotePartial::PartialTest: test_stale_at_reset_if_stale
|
28449
|
+
--------------------------------------------------------
|
28450
|
+
--------------------------------------------
|
28451
|
+
RemotePartial::PartialTest: test_update_file
|
28452
|
+
--------------------------------------------
|
28453
|
+
------------------------------------------------------------------------
|
28454
|
+
RemotePartial::PartialTest: test_update_file_not_affected_by_stale_state
|
28455
|
+
------------------------------------------------------------------------
|
28456
|
+
-----------------------------------------------------------------
|
28457
|
+
RemotePartial::PartialTest: test_update_file_with_output_modifier
|
28458
|
+
-----------------------------------------------------------------
|
28459
|
+
------------------------------------------------
|
28460
|
+
RemotePartial::PartialTest: test_update_stale_at
|
28461
|
+
------------------------------------------------
|
28462
|
+
--------------------------------------------------
|
28463
|
+
RemotePartial::PartialTest: test_update_stale_file
|
28464
|
+
--------------------------------------------------
|
28465
|
+
-----------------------------------------------------------------
|
28466
|
+
RemotePartial::PartialTest: test_update_stale_file_when_not_stale
|
28467
|
+
-----------------------------------------------------------------
|
28468
|
+
-----------------------------------------------------------
|
28469
|
+
RemotePartial::ResourceManagerTest: test_connection_failure
|
28470
|
+
-----------------------------------------------------------
|
28471
|
+
------------------------------------------------------------------------------
|
28472
|
+
RemotePartial::ResourceManagerTest: test_connection_failure_due_to_invalid_url
|
28473
|
+
------------------------------------------------------------------------------
|
28474
|
+
-------------------------------------------------
|
28475
|
+
RemotePartial::ResourceManagerTest: test_get_page
|
28476
|
+
-------------------------------------------------
|
28477
|
+
------------------------------------------------
|
28478
|
+
RemotePartial::ResourceManagerTest: test_get_raw
|
28479
|
+
------------------------------------------------
|
28480
|
+
---------------------------------------------
|
28481
|
+
RemotePartial::ResourceManagerTest: test_html
|
28482
|
+
---------------------------------------------
|
28483
|
+
--------------------------------------------------------
|
28484
|
+
RemotePartial::ResourceManagerTest: test_html_with_limit
|
28485
|
+
--------------------------------------------------------
|
28486
|
+
--------------------------------------------------------------------------------------
|
28487
|
+
RemotePartial::ResourceManagerTest: test_html_with_limit_that_returns_multiple_matches
|
28488
|
+
--------------------------------------------------------------------------------------
|
28489
|
+
-----------------------------------------------------------
|
28490
|
+
RemotePartial::ResourceManagerTest: test_html_with_proc_mod
|
28491
|
+
-----------------------------------------------------------
|
28492
|
+
--------------------------------------------------
|
28493
|
+
RemotePartial::ResourceManagerTest: test_output_to
|
28494
|
+
--------------------------------------------------
|
28495
|
+
---------------------------------------------
|
28496
|
+
RemotePartial::ResourceManagerTest: test_stub
|
28497
|
+
---------------------------------------------
|
28498
|
+
----------------------------------------
|
28499
|
+
RemotePartial::YamlStoreTest: test_count
|
28500
|
+
----------------------------------------
|
28501
|
+
-----------------------------------------
|
28502
|
+
RemotePartial::YamlStoreTest: test_create
|
28503
|
+
-----------------------------------------
|
28504
|
+
---------------------------------------------
|
28505
|
+
RemotePartial::YamlStoreTest: test_created_at
|
28506
|
+
---------------------------------------------
|
28507
|
+
-------------------------------------------------------------------
|
28508
|
+
RemotePartial::YamlStoreTest: test_created_at_not_updated_if_exists
|
28509
|
+
-------------------------------------------------------------------
|
28510
|
+
------------------------------------------
|
28511
|
+
RemotePartial::YamlStoreTest: test_db_path
|
28512
|
+
------------------------------------------
|
28513
|
+
--------------------------------------
|
28514
|
+
RemotePartial::YamlStoreTest: test_dir
|
28515
|
+
--------------------------------------
|
28516
|
+
---------------------------------------
|
28517
|
+
RemotePartial::YamlStoreTest: test_file
|
28518
|
+
---------------------------------------
|
28519
|
+
---------------------------------------
|
28520
|
+
RemotePartial::YamlStoreTest: test_find
|
28521
|
+
---------------------------------------
|
28522
|
+
-------------------------------------------------------
|
28523
|
+
RemotePartial::YamlStoreTest: test_find_when_none_exist
|
28524
|
+
-------------------------------------------------------
|
28525
|
+
---------------------------------------------------
|
28526
|
+
RemotePartial::YamlStoreTest: test_find_with_symbol
|
28527
|
+
---------------------------------------------------
|
28528
|
+
-----------------------------------------
|
28529
|
+
RemotePartial::YamlStoreTest: test_merge!
|
28530
|
+
-----------------------------------------
|
28531
|
+
--------------------------------------
|
28532
|
+
RemotePartial::YamlStoreTest: test_new
|
28533
|
+
--------------------------------------
|
28534
|
+
---------------------------------------
|
28535
|
+
RemotePartial::YamlStoreTest: test_read
|
28536
|
+
---------------------------------------
|
28537
|
+
-----------------------------------------------------------
|
28538
|
+
RemotePartial::YamlStoreTest: test_read_when_no_file_exists
|
28539
|
+
-----------------------------------------------------------
|
28540
|
+
---------------------------------------
|
28541
|
+
RemotePartial::YamlStoreTest: test_root
|
28542
|
+
---------------------------------------
|
28543
|
+
---------------------------------------
|
28544
|
+
RemotePartial::YamlStoreTest: test_save
|
28545
|
+
---------------------------------------
|
28546
|
+
------------------------------------------------------
|
28547
|
+
RemotePartial::YamlStoreTest: test_save_without_a_name
|
28548
|
+
------------------------------------------------------
|
28549
|
+
----------------------------------------------
|
28550
|
+
RemotePartial::YamlStoreTest: test_string_keys
|
28551
|
+
----------------------------------------------
|
28552
|
+
---------------------------------------------
|
28553
|
+
RemotePartial::YamlStoreTest: test_updated_at
|
28554
|
+
---------------------------------------------
|
28555
|
+
------------------------------------------------------------------
|
28556
|
+
RemotePartial::YamlStoreTest: test_updated_at_if_updated_if_exists
|
28557
|
+
------------------------------------------------------------------
|
28558
|
+
----------------------------------------
|
28559
|
+
RemotePartial::YamlStoreTest: test_write
|
28560
|
+
----------------------------------------
|
28561
|
+
------------------------------
|
28562
|
+
RemotePartialTest: test_define
|
28563
|
+
------------------------------
|
28564
|
+
Unable to retrieve remote partial at http://www.warwickshire.gov.uk: #<WebMock::NetConnectNotAllowedError: Real HTTP connections are disabled. Unregistered request: GET http://www.warwickshire.gov.uk/ with headers {'Accept'=>'*/*', 'User-Agent'=>'Ruby'}
|
28565
|
+
|
28566
|
+
You can stub this request with the following snippet:
|
28567
|
+
|
28568
|
+
stub_request(:get, "http://www.warwickshire.gov.uk/").
|
28569
|
+
with(:headers => {'Accept'=>'*/*', 'User-Agent'=>'Ruby'}).
|
28570
|
+
to_return(:status => 200, :body => "", :headers => {})
|
28571
|
+
|
28572
|
+
============================================================>
|
28573
|
+
-----------------------------------------------
|
28574
|
+
RemotePartialTest: test_define_with_string_keys
|
28575
|
+
-----------------------------------------------
|
28576
|
+
Unable to retrieve remote partial at http://www.warwickshire.gov.uk: #<WebMock::NetConnectNotAllowedError: Real HTTP connections are disabled. Unregistered request: GET http://www.warwickshire.gov.uk/ with headers {'Accept'=>'*/*', 'User-Agent'=>'Ruby'}
|
28577
|
+
|
28578
|
+
You can stub this request with the following snippet:
|
28579
|
+
|
28580
|
+
stub_request(:get, "http://www.warwickshire.gov.uk/").
|
28581
|
+
with(:headers => {'Accept'=>'*/*', 'User-Agent'=>'Ruby'}).
|
28582
|
+
to_return(:status => 200, :body => "", :headers => {})
|
28583
|
+
|
28584
|
+
============================================================>
|
28585
|
+
-----------------------------
|
28586
|
+
RemotePartialTest: test_truth
|
28587
|
+
-----------------------------
|
28588
|
+
Unable to retrieve remote partial at http://www.timeanddate.com/worldclock/city.html?n=136: #<WebMock::NetConnectNotAllowedError: Real HTTP connections are disabled. Unregistered request: GET http://www.timeanddate.com/worldclock/city.html?n=136 with headers {'Accept'=>'*/*', 'User-Agent'=>'Ruby'}
|
28589
|
+
|
28590
|
+
You can stub this request with the following snippet:
|
28591
|
+
|
28592
|
+
stub_request(:get, "http://www.timeanddate.com/worldclock/city.html?n=136").
|
28593
|
+
with(:headers => {'Accept'=>'*/*', 'User-Agent'=>'Ruby'}).
|
28594
|
+
to_return(:status => 200, :body => "", :headers => {})
|
28595
|
+
|
28596
|
+
============================================================>
|
28597
|
+
Unable to retrieve remote partial at http://www.ruby-lang.org/en/: #<WebMock::NetConnectNotAllowedError: Real HTTP connections are disabled. Unregistered request: GET http://www.ruby-lang.org/en/ with headers {'Accept'=>'*/*', 'User-Agent'=>'Ruby'}
|
28598
|
+
|
28599
|
+
You can stub this request with the following snippet:
|
28600
|
+
|
28601
|
+
stub_request(:get, "http://www.ruby-lang.org/en/").
|
28602
|
+
with(:headers => {'Accept'=>'*/*', 'User-Agent'=>'Ruby'}).
|
28603
|
+
to_return(:status => 200, :body => "", :headers => {})
|
28604
|
+
|
28605
|
+
============================================================>
|
28606
|
+
-------------------------------
|
28607
|
+
DemosControllerTest: test_index
|
28608
|
+
-------------------------------
|
28609
|
+
Processing by DemosController#index as HTML
|
28610
|
+
Rendered demos/index.html.erb within layouts/application (20.6ms)
|
28611
|
+
Completed 200 OK in 43ms (Views: 42.4ms)
|
28612
|
+
------------------------------------
|
28613
|
+
DemosControllerTest: test_show_fixed
|
28614
|
+
------------------------------------
|
28615
|
+
Processing by DemosController#show as HTML
|
28616
|
+
Parameters: {"id"=>"fixed"}
|
28617
|
+
Rendered remote_partials/_fixed.html.erb (0.3ms)
|
28618
|
+
Rendered demos/_fixed.html.erb (1.8ms)
|
28619
|
+
Completed 200 OK in 10ms (Views: 10.2ms)
|
28620
|
+
-----------------------------------------------------------
|
28621
|
+
DemosHelperTest: test_render_remote_partial_with_no_partial
|
28622
|
+
-----------------------------------------------------------
|
28623
|
+
--------------------------------------
|
28624
|
+
RemotePartial::BuilderTest: test_build
|
28625
|
+
--------------------------------------
|
28626
|
+
------------------------------------------------------------
|
28627
|
+
RemotePartial::BuilderTest: test_build_with_existing_partial
|
28628
|
+
------------------------------------------------------------
|
28629
|
+
------------------------------------------------------------------
|
28630
|
+
RemotePartial::BuilderTest: test_build_with_existing_stale_partial
|
28631
|
+
------------------------------------------------------------------
|
28632
|
+
------------------------------------------------------
|
28633
|
+
RemotePartial::BuilderTest: test_build_with_http_error
|
28634
|
+
------------------------------------------------------
|
28635
|
+
Unable to retrieve remote partial at http://www.warwickshire.gov.uk: #<Net::HTTPBadRequest 400 readbody=true>
|
28636
|
+
---------------------------------------------------------
|
28637
|
+
RemotePartial::BuilderTest: test_create_or_update_partial
|
28638
|
+
---------------------------------------------------------
|
28639
|
+
-----------------------------------------------------------------------------------
|
28640
|
+
RemotePartial::BuilderTest: test_create_or_update_partial_updates_if_partial_exists
|
28641
|
+
-----------------------------------------------------------------------------------
|
28642
|
+
----------------------------------------------------------------------------
|
28643
|
+
RemotePartial::BuilderTest: test_stale_at_not_modified_if_unable_to_retrieve
|
28644
|
+
----------------------------------------------------------------------------
|
28645
|
+
Unable to retrieve remote partial at http://www.warwickshire.gov.uk: #<Net::HTTPBadRequest 400 readbody=true>
|
28646
|
+
----------------------------------------------------------------
|
28647
|
+
RemotePartial::ExceptionTest: test_remote_partial_retrival_error
|
28648
|
+
----------------------------------------------------------------
|
28649
|
+
-------------------------------------------------
|
28650
|
+
RemotePartial::PartialTest: test_output_file_name
|
28651
|
+
-------------------------------------------------
|
28652
|
+
--------------------------------------------------------
|
28653
|
+
RemotePartial::PartialTest: test_stale_at_gets_into_file
|
28654
|
+
--------------------------------------------------------
|
28655
|
+
--------------------------------------------------------
|
28656
|
+
RemotePartial::PartialTest: test_stale_at_gets_into_hash
|
28657
|
+
--------------------------------------------------------
|
28658
|
+
------------------------------------------------------------------
|
28659
|
+
RemotePartial::PartialTest: test_stale_at_not_updated_unless_stale
|
28660
|
+
------------------------------------------------------------------
|
28661
|
+
--------------------------------------------------------
|
28662
|
+
RemotePartial::PartialTest: test_stale_at_reset_if_stale
|
28663
|
+
--------------------------------------------------------
|
28664
|
+
--------------------------------------------
|
28665
|
+
RemotePartial::PartialTest: test_update_file
|
28666
|
+
--------------------------------------------
|
28667
|
+
------------------------------------------------------------------------
|
28668
|
+
RemotePartial::PartialTest: test_update_file_not_affected_by_stale_state
|
28669
|
+
------------------------------------------------------------------------
|
28670
|
+
-----------------------------------------------------------------
|
28671
|
+
RemotePartial::PartialTest: test_update_file_with_output_modifier
|
28672
|
+
-----------------------------------------------------------------
|
28673
|
+
------------------------------------------------
|
28674
|
+
RemotePartial::PartialTest: test_update_stale_at
|
28675
|
+
------------------------------------------------
|
28676
|
+
--------------------------------------------------
|
28677
|
+
RemotePartial::PartialTest: test_update_stale_file
|
28678
|
+
--------------------------------------------------
|
28679
|
+
-----------------------------------------------------------------
|
28680
|
+
RemotePartial::PartialTest: test_update_stale_file_when_not_stale
|
28681
|
+
-----------------------------------------------------------------
|
28682
|
+
-----------------------------------------------------------
|
28683
|
+
RemotePartial::ResourceManagerTest: test_connection_failure
|
28684
|
+
-----------------------------------------------------------
|
28685
|
+
------------------------------------------------------------------------------
|
28686
|
+
RemotePartial::ResourceManagerTest: test_connection_failure_due_to_invalid_url
|
28687
|
+
------------------------------------------------------------------------------
|
28688
|
+
-------------------------------------------------
|
28689
|
+
RemotePartial::ResourceManagerTest: test_get_page
|
28690
|
+
-------------------------------------------------
|
28691
|
+
------------------------------------------------
|
28692
|
+
RemotePartial::ResourceManagerTest: test_get_raw
|
28693
|
+
------------------------------------------------
|
28694
|
+
---------------------------------------------
|
28695
|
+
RemotePartial::ResourceManagerTest: test_html
|
28696
|
+
---------------------------------------------
|
28697
|
+
--------------------------------------------------------
|
28698
|
+
RemotePartial::ResourceManagerTest: test_html_with_limit
|
28699
|
+
--------------------------------------------------------
|
28700
|
+
--------------------------------------------------------------------------------------
|
28701
|
+
RemotePartial::ResourceManagerTest: test_html_with_limit_that_returns_multiple_matches
|
28702
|
+
--------------------------------------------------------------------------------------
|
28703
|
+
-----------------------------------------------------------
|
28704
|
+
RemotePartial::ResourceManagerTest: test_html_with_proc_mod
|
28705
|
+
-----------------------------------------------------------
|
28706
|
+
--------------------------------------------------
|
28707
|
+
RemotePartial::ResourceManagerTest: test_output_to
|
28708
|
+
--------------------------------------------------
|
28709
|
+
---------------------------------------------
|
28710
|
+
RemotePartial::ResourceManagerTest: test_stub
|
28711
|
+
---------------------------------------------
|
28712
|
+
----------------------------------------
|
28713
|
+
RemotePartial::YamlStoreTest: test_count
|
28714
|
+
----------------------------------------
|
28715
|
+
-----------------------------------------
|
28716
|
+
RemotePartial::YamlStoreTest: test_create
|
28717
|
+
-----------------------------------------
|
28718
|
+
---------------------------------------------
|
28719
|
+
RemotePartial::YamlStoreTest: test_created_at
|
28720
|
+
---------------------------------------------
|
28721
|
+
-------------------------------------------------------------------
|
28722
|
+
RemotePartial::YamlStoreTest: test_created_at_not_updated_if_exists
|
28723
|
+
-------------------------------------------------------------------
|
28724
|
+
------------------------------------------
|
28725
|
+
RemotePartial::YamlStoreTest: test_db_path
|
28726
|
+
------------------------------------------
|
28727
|
+
--------------------------------------
|
28728
|
+
RemotePartial::YamlStoreTest: test_dir
|
28729
|
+
--------------------------------------
|
28730
|
+
---------------------------------------
|
28731
|
+
RemotePartial::YamlStoreTest: test_file
|
28732
|
+
---------------------------------------
|
28733
|
+
---------------------------------------
|
28734
|
+
RemotePartial::YamlStoreTest: test_find
|
28735
|
+
---------------------------------------
|
28736
|
+
-------------------------------------------------------
|
28737
|
+
RemotePartial::YamlStoreTest: test_find_when_none_exist
|
28738
|
+
-------------------------------------------------------
|
28739
|
+
---------------------------------------------------
|
28740
|
+
RemotePartial::YamlStoreTest: test_find_with_symbol
|
28741
|
+
---------------------------------------------------
|
28742
|
+
-----------------------------------------
|
28743
|
+
RemotePartial::YamlStoreTest: test_merge!
|
28744
|
+
-----------------------------------------
|
28745
|
+
--------------------------------------
|
28746
|
+
RemotePartial::YamlStoreTest: test_new
|
28747
|
+
--------------------------------------
|
28748
|
+
---------------------------------------
|
28749
|
+
RemotePartial::YamlStoreTest: test_read
|
28750
|
+
---------------------------------------
|
28751
|
+
-----------------------------------------------------------
|
28752
|
+
RemotePartial::YamlStoreTest: test_read_when_no_file_exists
|
28753
|
+
-----------------------------------------------------------
|
28754
|
+
---------------------------------------
|
28755
|
+
RemotePartial::YamlStoreTest: test_root
|
28756
|
+
---------------------------------------
|
28757
|
+
---------------------------------------
|
28758
|
+
RemotePartial::YamlStoreTest: test_save
|
28759
|
+
---------------------------------------
|
28760
|
+
------------------------------------------------------
|
28761
|
+
RemotePartial::YamlStoreTest: test_save_without_a_name
|
28762
|
+
------------------------------------------------------
|
28763
|
+
----------------------------------------------
|
28764
|
+
RemotePartial::YamlStoreTest: test_string_keys
|
28765
|
+
----------------------------------------------
|
28766
|
+
---------------------------------------------
|
28767
|
+
RemotePartial::YamlStoreTest: test_updated_at
|
28768
|
+
---------------------------------------------
|
28769
|
+
------------------------------------------------------------------
|
28770
|
+
RemotePartial::YamlStoreTest: test_updated_at_if_updated_if_exists
|
28771
|
+
------------------------------------------------------------------
|
28772
|
+
----------------------------------------
|
28773
|
+
RemotePartial::YamlStoreTest: test_write
|
28774
|
+
----------------------------------------
|
28775
|
+
------------------------------
|
28776
|
+
RemotePartialTest: test_define
|
28777
|
+
------------------------------
|
28778
|
+
Unable to retrieve remote partial at http://www.warwickshire.gov.uk: #<WebMock::NetConnectNotAllowedError: Real HTTP connections are disabled. Unregistered request: GET http://www.warwickshire.gov.uk/ with headers {'Accept'=>'*/*', 'User-Agent'=>'Ruby'}
|
28779
|
+
|
28780
|
+
You can stub this request with the following snippet:
|
28781
|
+
|
28782
|
+
stub_request(:get, "http://www.warwickshire.gov.uk/").
|
28783
|
+
with(:headers => {'Accept'=>'*/*', 'User-Agent'=>'Ruby'}).
|
28784
|
+
to_return(:status => 200, :body => "", :headers => {})
|
28785
|
+
|
28786
|
+
============================================================>
|
28787
|
+
-----------------------------------------------
|
28788
|
+
RemotePartialTest: test_define_with_string_keys
|
28789
|
+
-----------------------------------------------
|
28790
|
+
Unable to retrieve remote partial at http://www.warwickshire.gov.uk: #<WebMock::NetConnectNotAllowedError: Real HTTP connections are disabled. Unregistered request: GET http://www.warwickshire.gov.uk/ with headers {'Accept'=>'*/*', 'User-Agent'=>'Ruby'}
|
28791
|
+
|
28792
|
+
You can stub this request with the following snippet:
|
28793
|
+
|
28794
|
+
stub_request(:get, "http://www.warwickshire.gov.uk/").
|
28795
|
+
with(:headers => {'Accept'=>'*/*', 'User-Agent'=>'Ruby'}).
|
28796
|
+
to_return(:status => 200, :body => "", :headers => {})
|
28797
|
+
|
28798
|
+
============================================================>
|
28799
|
+
-----------------------------
|
28800
|
+
RemotePartialTest: test_truth
|
28801
|
+
-----------------------------
|
28802
|
+
Unable to retrieve remote partial at http://www.timeanddate.com/worldclock/city.html?n=136: #<WebMock::NetConnectNotAllowedError: Real HTTP connections are disabled. Unregistered request: GET http://www.timeanddate.com/worldclock/city.html?n=136 with headers {'Accept'=>'*/*', 'User-Agent'=>'Ruby'}
|
28803
|
+
|
28804
|
+
You can stub this request with the following snippet:
|
28805
|
+
|
28806
|
+
stub_request(:get, "http://www.timeanddate.com/worldclock/city.html?n=136").
|
28807
|
+
with(:headers => {'Accept'=>'*/*', 'User-Agent'=>'Ruby'}).
|
28808
|
+
to_return(:status => 200, :body => "", :headers => {})
|
28809
|
+
|
28810
|
+
============================================================>
|
28811
|
+
Unable to retrieve remote partial at http://www.ruby-lang.org/en/: #<WebMock::NetConnectNotAllowedError: Real HTTP connections are disabled. Unregistered request: GET http://www.ruby-lang.org/en/ with headers {'Accept'=>'*/*', 'User-Agent'=>'Ruby'}
|
28812
|
+
|
28813
|
+
You can stub this request with the following snippet:
|
28814
|
+
|
28815
|
+
stub_request(:get, "http://www.ruby-lang.org/en/").
|
28816
|
+
with(:headers => {'Accept'=>'*/*', 'User-Agent'=>'Ruby'}).
|
28817
|
+
to_return(:status => 200, :body => "", :headers => {})
|
28818
|
+
|
28819
|
+
============================================================>
|
28820
|
+
-------------------------------
|
28821
|
+
DemosControllerTest: test_index
|
28822
|
+
-------------------------------
|
28823
|
+
Processing by DemosController#index as HTML
|
28824
|
+
Rendered demos/index.html.erb within layouts/application (23.1ms)
|
28825
|
+
Completed 200 OK in 56ms (Views: 55.1ms)
|
28826
|
+
------------------------------------
|
28827
|
+
DemosControllerTest: test_show_fixed
|
28828
|
+
------------------------------------
|
28829
|
+
Processing by DemosController#show as HTML
|
28830
|
+
Parameters: {"id"=>"fixed"}
|
28831
|
+
Rendered remote_partials/_fixed.html.erb (4.7ms)
|
28832
|
+
Rendered demos/_fixed.html.erb (8.3ms)
|
28833
|
+
Completed 200 OK in 25ms (Views: 24.9ms)
|
28834
|
+
-----------------------------------------------------------
|
28835
|
+
DemosHelperTest: test_render_remote_partial_with_no_partial
|
28836
|
+
-----------------------------------------------------------
|
28837
|
+
--------------------------------------
|
28838
|
+
RemotePartial::BuilderTest: test_build
|
28839
|
+
--------------------------------------
|
28840
|
+
------------------------------------------------------------
|
28841
|
+
RemotePartial::BuilderTest: test_build_with_existing_partial
|
28842
|
+
------------------------------------------------------------
|
28843
|
+
------------------------------------------------------------------
|
28844
|
+
RemotePartial::BuilderTest: test_build_with_existing_stale_partial
|
28845
|
+
------------------------------------------------------------------
|
28846
|
+
------------------------------------------------------
|
28847
|
+
RemotePartial::BuilderTest: test_build_with_http_error
|
28848
|
+
------------------------------------------------------
|
28849
|
+
Unable to retrieve remote partial at http://www.warwickshire.gov.uk: #<Net::HTTPBadRequest 400 readbody=true>
|
28850
|
+
-------------------------------------------------------------
|
28851
|
+
RemotePartial::BuilderTest: test_builder_with_output_modifier
|
28852
|
+
-------------------------------------------------------------
|
28853
|
+
---------------------------------------------------------
|
28854
|
+
RemotePartial::BuilderTest: test_create_or_update_partial
|
28855
|
+
---------------------------------------------------------
|
28856
|
+
-----------------------------------------------------------------------------------
|
28857
|
+
RemotePartial::BuilderTest: test_create_or_update_partial_updates_if_partial_exists
|
28858
|
+
-----------------------------------------------------------------------------------
|
28859
|
+
----------------------------------------------------------------------------
|
28860
|
+
RemotePartial::BuilderTest: test_stale_at_not_modified_if_unable_to_retrieve
|
28861
|
+
----------------------------------------------------------------------------
|
28862
|
+
Unable to retrieve remote partial at http://www.warwickshire.gov.uk: #<Net::HTTPBadRequest 400 readbody=true>
|
28863
|
+
----------------------------------------------------------------
|
28864
|
+
RemotePartial::ExceptionTest: test_remote_partial_retrival_error
|
28865
|
+
----------------------------------------------------------------
|
28866
|
+
-------------------------------------------------
|
28867
|
+
RemotePartial::PartialTest: test_output_file_name
|
28868
|
+
-------------------------------------------------
|
28869
|
+
--------------------------------------------------------
|
28870
|
+
RemotePartial::PartialTest: test_stale_at_gets_into_file
|
28871
|
+
--------------------------------------------------------
|
28872
|
+
--------------------------------------------------------
|
28873
|
+
RemotePartial::PartialTest: test_stale_at_gets_into_hash
|
28874
|
+
--------------------------------------------------------
|
28875
|
+
------------------------------------------------------------------
|
28876
|
+
RemotePartial::PartialTest: test_stale_at_not_updated_unless_stale
|
28877
|
+
------------------------------------------------------------------
|
28878
|
+
--------------------------------------------------------
|
28879
|
+
RemotePartial::PartialTest: test_stale_at_reset_if_stale
|
28880
|
+
--------------------------------------------------------
|
28881
|
+
--------------------------------------------
|
28882
|
+
RemotePartial::PartialTest: test_update_file
|
28883
|
+
--------------------------------------------
|
28884
|
+
------------------------------------------------------------------------
|
28885
|
+
RemotePartial::PartialTest: test_update_file_not_affected_by_stale_state
|
28886
|
+
------------------------------------------------------------------------
|
28887
|
+
-----------------------------------------------------------------
|
28888
|
+
RemotePartial::PartialTest: test_update_file_with_output_modifier
|
28889
|
+
-----------------------------------------------------------------
|
28890
|
+
------------------------------------------------
|
28891
|
+
RemotePartial::PartialTest: test_update_stale_at
|
28892
|
+
------------------------------------------------
|
28893
|
+
--------------------------------------------------
|
28894
|
+
RemotePartial::PartialTest: test_update_stale_file
|
28895
|
+
--------------------------------------------------
|
28896
|
+
-----------------------------------------------------------------
|
28897
|
+
RemotePartial::PartialTest: test_update_stale_file_when_not_stale
|
28898
|
+
-----------------------------------------------------------------
|
28899
|
+
-----------------------------------------------------------
|
28900
|
+
RemotePartial::ResourceManagerTest: test_connection_failure
|
28901
|
+
-----------------------------------------------------------
|
28902
|
+
------------------------------------------------------------------------------
|
28903
|
+
RemotePartial::ResourceManagerTest: test_connection_failure_due_to_invalid_url
|
28904
|
+
------------------------------------------------------------------------------
|
28905
|
+
-------------------------------------------------
|
28906
|
+
RemotePartial::ResourceManagerTest: test_get_page
|
28907
|
+
-------------------------------------------------
|
28908
|
+
------------------------------------------------
|
28909
|
+
RemotePartial::ResourceManagerTest: test_get_raw
|
28910
|
+
------------------------------------------------
|
28911
|
+
---------------------------------------------
|
28912
|
+
RemotePartial::ResourceManagerTest: test_html
|
28913
|
+
---------------------------------------------
|
28914
|
+
--------------------------------------------------------
|
28915
|
+
RemotePartial::ResourceManagerTest: test_html_with_limit
|
28916
|
+
--------------------------------------------------------
|
28917
|
+
--------------------------------------------------------------------------------------
|
28918
|
+
RemotePartial::ResourceManagerTest: test_html_with_limit_that_returns_multiple_matches
|
28919
|
+
--------------------------------------------------------------------------------------
|
28920
|
+
-----------------------------------------------------------
|
28921
|
+
RemotePartial::ResourceManagerTest: test_html_with_proc_mod
|
28922
|
+
-----------------------------------------------------------
|
28923
|
+
--------------------------------------------------
|
28924
|
+
RemotePartial::ResourceManagerTest: test_output_to
|
28925
|
+
--------------------------------------------------
|
28926
|
+
---------------------------------------------
|
28927
|
+
RemotePartial::ResourceManagerTest: test_stub
|
28928
|
+
---------------------------------------------
|
28929
|
+
----------------------------------------
|
28930
|
+
RemotePartial::YamlStoreTest: test_count
|
28931
|
+
----------------------------------------
|
28932
|
+
-----------------------------------------
|
28933
|
+
RemotePartial::YamlStoreTest: test_create
|
28934
|
+
-----------------------------------------
|
28935
|
+
---------------------------------------------
|
28936
|
+
RemotePartial::YamlStoreTest: test_created_at
|
28937
|
+
---------------------------------------------
|
28938
|
+
-------------------------------------------------------------------
|
28939
|
+
RemotePartial::YamlStoreTest: test_created_at_not_updated_if_exists
|
28940
|
+
-------------------------------------------------------------------
|
28941
|
+
------------------------------------------
|
28942
|
+
RemotePartial::YamlStoreTest: test_db_path
|
28943
|
+
------------------------------------------
|
28944
|
+
--------------------------------------
|
28945
|
+
RemotePartial::YamlStoreTest: test_dir
|
28946
|
+
--------------------------------------
|
28947
|
+
---------------------------------------
|
28948
|
+
RemotePartial::YamlStoreTest: test_file
|
28949
|
+
---------------------------------------
|
28950
|
+
---------------------------------------
|
28951
|
+
RemotePartial::YamlStoreTest: test_find
|
28952
|
+
---------------------------------------
|
28953
|
+
-------------------------------------------------------
|
28954
|
+
RemotePartial::YamlStoreTest: test_find_when_none_exist
|
28955
|
+
-------------------------------------------------------
|
28956
|
+
---------------------------------------------------
|
28957
|
+
RemotePartial::YamlStoreTest: test_find_with_symbol
|
28958
|
+
---------------------------------------------------
|
28959
|
+
-----------------------------------------
|
28960
|
+
RemotePartial::YamlStoreTest: test_merge!
|
28961
|
+
-----------------------------------------
|
28962
|
+
--------------------------------------
|
28963
|
+
RemotePartial::YamlStoreTest: test_new
|
28964
|
+
--------------------------------------
|
28965
|
+
---------------------------------------
|
28966
|
+
RemotePartial::YamlStoreTest: test_read
|
28967
|
+
---------------------------------------
|
28968
|
+
-----------------------------------------------------------
|
28969
|
+
RemotePartial::YamlStoreTest: test_read_when_no_file_exists
|
28970
|
+
-----------------------------------------------------------
|
28971
|
+
---------------------------------------
|
28972
|
+
RemotePartial::YamlStoreTest: test_root
|
28973
|
+
---------------------------------------
|
28974
|
+
---------------------------------------
|
28975
|
+
RemotePartial::YamlStoreTest: test_save
|
28976
|
+
---------------------------------------
|
28977
|
+
------------------------------------------------------
|
28978
|
+
RemotePartial::YamlStoreTest: test_save_without_a_name
|
28979
|
+
------------------------------------------------------
|
28980
|
+
----------------------------------------------
|
28981
|
+
RemotePartial::YamlStoreTest: test_string_keys
|
28982
|
+
----------------------------------------------
|
28983
|
+
---------------------------------------------
|
28984
|
+
RemotePartial::YamlStoreTest: test_updated_at
|
28985
|
+
---------------------------------------------
|
28986
|
+
------------------------------------------------------------------
|
28987
|
+
RemotePartial::YamlStoreTest: test_updated_at_if_updated_if_exists
|
28988
|
+
------------------------------------------------------------------
|
28989
|
+
----------------------------------------
|
28990
|
+
RemotePartial::YamlStoreTest: test_write
|
28991
|
+
----------------------------------------
|
28992
|
+
------------------------------
|
28993
|
+
RemotePartialTest: test_define
|
28994
|
+
------------------------------
|
28995
|
+
Unable to retrieve remote partial at http://www.warwickshire.gov.uk: #<WebMock::NetConnectNotAllowedError: Real HTTP connections are disabled. Unregistered request: GET http://www.warwickshire.gov.uk/ with headers {'Accept'=>'*/*', 'User-Agent'=>'Ruby'}
|
28996
|
+
|
28997
|
+
You can stub this request with the following snippet:
|
28998
|
+
|
28999
|
+
stub_request(:get, "http://www.warwickshire.gov.uk/").
|
29000
|
+
with(:headers => {'Accept'=>'*/*', 'User-Agent'=>'Ruby'}).
|
29001
|
+
to_return(:status => 200, :body => "", :headers => {})
|
29002
|
+
|
29003
|
+
============================================================>
|
29004
|
+
-----------------------------------------------
|
29005
|
+
RemotePartialTest: test_define_with_string_keys
|
29006
|
+
-----------------------------------------------
|
29007
|
+
Unable to retrieve remote partial at http://www.warwickshire.gov.uk: #<WebMock::NetConnectNotAllowedError: Real HTTP connections are disabled. Unregistered request: GET http://www.warwickshire.gov.uk/ with headers {'Accept'=>'*/*', 'User-Agent'=>'Ruby'}
|
29008
|
+
|
29009
|
+
You can stub this request with the following snippet:
|
29010
|
+
|
29011
|
+
stub_request(:get, "http://www.warwickshire.gov.uk/").
|
29012
|
+
with(:headers => {'Accept'=>'*/*', 'User-Agent'=>'Ruby'}).
|
29013
|
+
to_return(:status => 200, :body => "", :headers => {})
|
29014
|
+
|
29015
|
+
============================================================>
|
29016
|
+
-----------------------------
|
29017
|
+
RemotePartialTest: test_truth
|
29018
|
+
-----------------------------
|
29019
|
+
Unable to retrieve remote partial at http://www.timeanddate.com/worldclock/city.html?n=136: #<WebMock::NetConnectNotAllowedError: Real HTTP connections are disabled. Unregistered request: GET http://www.timeanddate.com/worldclock/city.html?n=136 with headers {'Accept'=>'*/*', 'User-Agent'=>'Ruby'}
|
29020
|
+
|
29021
|
+
You can stub this request with the following snippet:
|
29022
|
+
|
29023
|
+
stub_request(:get, "http://www.timeanddate.com/worldclock/city.html?n=136").
|
29024
|
+
with(:headers => {'Accept'=>'*/*', 'User-Agent'=>'Ruby'}).
|
29025
|
+
to_return(:status => 200, :body => "", :headers => {})
|
29026
|
+
|
29027
|
+
============================================================>
|
29028
|
+
Unable to retrieve remote partial at http://www.ruby-lang.org/en/: #<WebMock::NetConnectNotAllowedError: Real HTTP connections are disabled. Unregistered request: GET http://www.ruby-lang.org/en/ with headers {'Accept'=>'*/*', 'User-Agent'=>'Ruby'}
|
29029
|
+
|
29030
|
+
You can stub this request with the following snippet:
|
29031
|
+
|
29032
|
+
stub_request(:get, "http://www.ruby-lang.org/en/").
|
29033
|
+
with(:headers => {'Accept'=>'*/*', 'User-Agent'=>'Ruby'}).
|
29034
|
+
to_return(:status => 200, :body => "", :headers => {})
|
29035
|
+
|
29036
|
+
============================================================>
|
29037
|
+
-------------------------------
|
29038
|
+
DemosControllerTest: test_index
|
29039
|
+
-------------------------------
|
29040
|
+
Processing by DemosController#index as HTML
|
29041
|
+
Rendered demos/index.html.erb within layouts/application (17.8ms)
|
29042
|
+
Completed 200 OK in 39ms (Views: 38.8ms)
|
29043
|
+
------------------------------------
|
29044
|
+
DemosControllerTest: test_show_fixed
|
29045
|
+
------------------------------------
|
29046
|
+
Processing by DemosController#show as HTML
|
29047
|
+
Parameters: {"id"=>"fixed"}
|
29048
|
+
Rendered remote_partials/_fixed.html.erb (0.9ms)
|
29049
|
+
Rendered demos/_fixed.html.erb (2.9ms)
|
29050
|
+
Completed 200 OK in 10ms (Views: 10.3ms)
|
29051
|
+
-----------------------------------------------------------
|
29052
|
+
DemosHelperTest: test_render_remote_partial_with_no_partial
|
29053
|
+
-----------------------------------------------------------
|
29054
|
+
--------------------------------------
|
29055
|
+
RemotePartial::BuilderTest: test_build
|
29056
|
+
--------------------------------------
|
29057
|
+
------------------------------------------------------------
|
29058
|
+
RemotePartial::BuilderTest: test_build_with_existing_partial
|
29059
|
+
------------------------------------------------------------
|
29060
|
+
------------------------------------------------------------------
|
29061
|
+
RemotePartial::BuilderTest: test_build_with_existing_stale_partial
|
29062
|
+
------------------------------------------------------------------
|
29063
|
+
------------------------------------------------------
|
29064
|
+
RemotePartial::BuilderTest: test_build_with_http_error
|
29065
|
+
------------------------------------------------------
|
29066
|
+
Unable to retrieve remote partial at http://www.warwickshire.gov.uk: #<Net::HTTPBadRequest 400 readbody=true>
|
29067
|
+
-------------------------------------------------------------
|
29068
|
+
RemotePartial::BuilderTest: test_builder_with_output_modifier
|
29069
|
+
-------------------------------------------------------------
|
29070
|
+
---------------------------------------------------------
|
29071
|
+
RemotePartial::BuilderTest: test_create_or_update_partial
|
29072
|
+
---------------------------------------------------------
|
29073
|
+
-----------------------------------------------------------------------------------
|
29074
|
+
RemotePartial::BuilderTest: test_create_or_update_partial_updates_if_partial_exists
|
29075
|
+
-----------------------------------------------------------------------------------
|
29076
|
+
----------------------------------------------------------------------------
|
29077
|
+
RemotePartial::BuilderTest: test_stale_at_not_modified_if_unable_to_retrieve
|
29078
|
+
----------------------------------------------------------------------------
|
29079
|
+
Unable to retrieve remote partial at http://www.warwickshire.gov.uk: #<Net::HTTPBadRequest 400 readbody=true>
|
29080
|
+
----------------------------------------------------------------
|
29081
|
+
RemotePartial::ExceptionTest: test_remote_partial_retrival_error
|
29082
|
+
----------------------------------------------------------------
|
29083
|
+
-------------------------------------------------
|
29084
|
+
RemotePartial::PartialTest: test_output_file_name
|
29085
|
+
-------------------------------------------------
|
29086
|
+
--------------------------------------------------------
|
29087
|
+
RemotePartial::PartialTest: test_stale_at_gets_into_file
|
29088
|
+
--------------------------------------------------------
|
29089
|
+
--------------------------------------------------------
|
29090
|
+
RemotePartial::PartialTest: test_stale_at_gets_into_hash
|
29091
|
+
--------------------------------------------------------
|
29092
|
+
------------------------------------------------------------------
|
29093
|
+
RemotePartial::PartialTest: test_stale_at_not_updated_unless_stale
|
29094
|
+
------------------------------------------------------------------
|
29095
|
+
--------------------------------------------------------
|
29096
|
+
RemotePartial::PartialTest: test_stale_at_reset_if_stale
|
29097
|
+
--------------------------------------------------------
|
29098
|
+
--------------------------------------------
|
29099
|
+
RemotePartial::PartialTest: test_update_file
|
29100
|
+
--------------------------------------------
|
29101
|
+
------------------------------------------------------------------------
|
29102
|
+
RemotePartial::PartialTest: test_update_file_not_affected_by_stale_state
|
29103
|
+
------------------------------------------------------------------------
|
29104
|
+
-----------------------------------------------------------------
|
29105
|
+
RemotePartial::PartialTest: test_update_file_with_output_modifier
|
29106
|
+
-----------------------------------------------------------------
|
29107
|
+
------------------------------------------------
|
29108
|
+
RemotePartial::PartialTest: test_update_stale_at
|
29109
|
+
------------------------------------------------
|
29110
|
+
--------------------------------------------------
|
29111
|
+
RemotePartial::PartialTest: test_update_stale_file
|
29112
|
+
--------------------------------------------------
|
29113
|
+
-----------------------------------------------------------------
|
29114
|
+
RemotePartial::PartialTest: test_update_stale_file_when_not_stale
|
29115
|
+
-----------------------------------------------------------------
|
29116
|
+
-----------------------------------------------------------
|
29117
|
+
RemotePartial::ResourceManagerTest: test_connection_failure
|
29118
|
+
-----------------------------------------------------------
|
29119
|
+
------------------------------------------------------------------------------
|
29120
|
+
RemotePartial::ResourceManagerTest: test_connection_failure_due_to_invalid_url
|
29121
|
+
------------------------------------------------------------------------------
|
29122
|
+
-------------------------------------------------
|
29123
|
+
RemotePartial::ResourceManagerTest: test_get_page
|
29124
|
+
-------------------------------------------------
|
29125
|
+
------------------------------------------------
|
29126
|
+
RemotePartial::ResourceManagerTest: test_get_raw
|
29127
|
+
------------------------------------------------
|
29128
|
+
---------------------------------------------
|
29129
|
+
RemotePartial::ResourceManagerTest: test_html
|
29130
|
+
---------------------------------------------
|
29131
|
+
--------------------------------------------------------
|
29132
|
+
RemotePartial::ResourceManagerTest: test_html_with_limit
|
29133
|
+
--------------------------------------------------------
|
29134
|
+
--------------------------------------------------------------------------------------
|
29135
|
+
RemotePartial::ResourceManagerTest: test_html_with_limit_that_returns_multiple_matches
|
29136
|
+
--------------------------------------------------------------------------------------
|
29137
|
+
-----------------------------------------------------------
|
29138
|
+
RemotePartial::ResourceManagerTest: test_html_with_proc_mod
|
29139
|
+
-----------------------------------------------------------
|
29140
|
+
--------------------------------------------------
|
29141
|
+
RemotePartial::ResourceManagerTest: test_output_to
|
29142
|
+
--------------------------------------------------
|
29143
|
+
---------------------------------------------
|
29144
|
+
RemotePartial::ResourceManagerTest: test_stub
|
29145
|
+
---------------------------------------------
|
29146
|
+
----------------------------------------
|
29147
|
+
RemotePartial::YamlStoreTest: test_count
|
29148
|
+
----------------------------------------
|
29149
|
+
-----------------------------------------
|
29150
|
+
RemotePartial::YamlStoreTest: test_create
|
29151
|
+
-----------------------------------------
|
29152
|
+
---------------------------------------------
|
29153
|
+
RemotePartial::YamlStoreTest: test_created_at
|
29154
|
+
---------------------------------------------
|
29155
|
+
-------------------------------------------------------------------
|
29156
|
+
RemotePartial::YamlStoreTest: test_created_at_not_updated_if_exists
|
29157
|
+
-------------------------------------------------------------------
|
29158
|
+
------------------------------------------
|
29159
|
+
RemotePartial::YamlStoreTest: test_db_path
|
29160
|
+
------------------------------------------
|
29161
|
+
--------------------------------------
|
29162
|
+
RemotePartial::YamlStoreTest: test_dir
|
29163
|
+
--------------------------------------
|
29164
|
+
---------------------------------------
|
29165
|
+
RemotePartial::YamlStoreTest: test_file
|
29166
|
+
---------------------------------------
|
29167
|
+
---------------------------------------
|
29168
|
+
RemotePartial::YamlStoreTest: test_find
|
29169
|
+
---------------------------------------
|
29170
|
+
-------------------------------------------------------
|
29171
|
+
RemotePartial::YamlStoreTest: test_find_when_none_exist
|
29172
|
+
-------------------------------------------------------
|
29173
|
+
---------------------------------------------------
|
29174
|
+
RemotePartial::YamlStoreTest: test_find_with_symbol
|
29175
|
+
---------------------------------------------------
|
29176
|
+
-----------------------------------------
|
29177
|
+
RemotePartial::YamlStoreTest: test_merge!
|
29178
|
+
-----------------------------------------
|
29179
|
+
--------------------------------------
|
29180
|
+
RemotePartial::YamlStoreTest: test_new
|
29181
|
+
--------------------------------------
|
29182
|
+
---------------------------------------
|
29183
|
+
RemotePartial::YamlStoreTest: test_read
|
29184
|
+
---------------------------------------
|
29185
|
+
-----------------------------------------------------------
|
29186
|
+
RemotePartial::YamlStoreTest: test_read_when_no_file_exists
|
29187
|
+
-----------------------------------------------------------
|
29188
|
+
---------------------------------------
|
29189
|
+
RemotePartial::YamlStoreTest: test_root
|
29190
|
+
---------------------------------------
|
29191
|
+
---------------------------------------
|
29192
|
+
RemotePartial::YamlStoreTest: test_save
|
29193
|
+
---------------------------------------
|
29194
|
+
------------------------------------------------------
|
29195
|
+
RemotePartial::YamlStoreTest: test_save_without_a_name
|
29196
|
+
------------------------------------------------------
|
29197
|
+
----------------------------------------------
|
29198
|
+
RemotePartial::YamlStoreTest: test_string_keys
|
29199
|
+
----------------------------------------------
|
29200
|
+
---------------------------------------------
|
29201
|
+
RemotePartial::YamlStoreTest: test_updated_at
|
29202
|
+
---------------------------------------------
|
29203
|
+
------------------------------------------------------------------
|
29204
|
+
RemotePartial::YamlStoreTest: test_updated_at_if_updated_if_exists
|
29205
|
+
------------------------------------------------------------------
|
29206
|
+
----------------------------------------
|
29207
|
+
RemotePartial::YamlStoreTest: test_write
|
29208
|
+
----------------------------------------
|
29209
|
+
------------------------------
|
29210
|
+
RemotePartialTest: test_define
|
29211
|
+
------------------------------
|
29212
|
+
Unable to retrieve remote partial at http://www.warwickshire.gov.uk: #<WebMock::NetConnectNotAllowedError: Real HTTP connections are disabled. Unregistered request: GET http://www.warwickshire.gov.uk/ with headers {'Accept'=>'*/*', 'User-Agent'=>'Ruby'}
|
29213
|
+
|
29214
|
+
You can stub this request with the following snippet:
|
29215
|
+
|
29216
|
+
stub_request(:get, "http://www.warwickshire.gov.uk/").
|
29217
|
+
with(:headers => {'Accept'=>'*/*', 'User-Agent'=>'Ruby'}).
|
29218
|
+
to_return(:status => 200, :body => "", :headers => {})
|
29219
|
+
|
29220
|
+
============================================================>
|
29221
|
+
-----------------------------------------------
|
29222
|
+
RemotePartialTest: test_define_with_string_keys
|
29223
|
+
-----------------------------------------------
|
29224
|
+
Unable to retrieve remote partial at http://www.warwickshire.gov.uk: #<WebMock::NetConnectNotAllowedError: Real HTTP connections are disabled. Unregistered request: GET http://www.warwickshire.gov.uk/ with headers {'Accept'=>'*/*', 'User-Agent'=>'Ruby'}
|
29225
|
+
|
29226
|
+
You can stub this request with the following snippet:
|
29227
|
+
|
29228
|
+
stub_request(:get, "http://www.warwickshire.gov.uk/").
|
29229
|
+
with(:headers => {'Accept'=>'*/*', 'User-Agent'=>'Ruby'}).
|
29230
|
+
to_return(:status => 200, :body => "", :headers => {})
|
29231
|
+
|
29232
|
+
============================================================>
|
29233
|
+
-----------------------------
|
29234
|
+
RemotePartialTest: test_truth
|
29235
|
+
-----------------------------
|
29236
|
+
Unable to retrieve remote partial at http://www.timeanddate.com/worldclock/city.html?n=136: #<WebMock::NetConnectNotAllowedError: Real HTTP connections are disabled. Unregistered request: GET http://www.timeanddate.com/worldclock/city.html?n=136 with headers {'Accept'=>'*/*', 'User-Agent'=>'Ruby'}
|
29237
|
+
|
29238
|
+
You can stub this request with the following snippet:
|
29239
|
+
|
29240
|
+
stub_request(:get, "http://www.timeanddate.com/worldclock/city.html?n=136").
|
29241
|
+
with(:headers => {'Accept'=>'*/*', 'User-Agent'=>'Ruby'}).
|
29242
|
+
to_return(:status => 200, :body => "", :headers => {})
|
29243
|
+
|
29244
|
+
============================================================>
|
29245
|
+
Unable to retrieve remote partial at http://www.ruby-lang.org/en/: #<WebMock::NetConnectNotAllowedError: Real HTTP connections are disabled. Unregistered request: GET http://www.ruby-lang.org/en/ with headers {'Accept'=>'*/*', 'User-Agent'=>'Ruby'}
|
29246
|
+
|
29247
|
+
You can stub this request with the following snippet:
|
29248
|
+
|
29249
|
+
stub_request(:get, "http://www.ruby-lang.org/en/").
|
29250
|
+
with(:headers => {'Accept'=>'*/*', 'User-Agent'=>'Ruby'}).
|
29251
|
+
to_return(:status => 200, :body => "", :headers => {})
|
29252
|
+
|
29253
|
+
============================================================>
|
29254
|
+
-------------------------------
|
29255
|
+
DemosControllerTest: test_index
|
29256
|
+
-------------------------------
|
29257
|
+
Processing by DemosController#index as HTML
|
29258
|
+
Rendered demos/index.html.erb within layouts/application (17.5ms)
|
29259
|
+
Completed 200 OK in 35ms (Views: 34.7ms)
|
29260
|
+
------------------------------------
|
29261
|
+
DemosControllerTest: test_show_fixed
|
29262
|
+
------------------------------------
|
29263
|
+
Processing by DemosController#show as HTML
|
29264
|
+
Parameters: {"id"=>"fixed"}
|
29265
|
+
Rendered remote_partials/_fixed.html.erb (0.3ms)
|
29266
|
+
Rendered demos/_fixed.html.erb (2.1ms)
|
29267
|
+
Completed 200 OK in 8ms (Views: 7.7ms)
|
29268
|
+
-----------------------------------------------------------
|
29269
|
+
DemosHelperTest: test_render_remote_partial_with_no_partial
|
29270
|
+
-----------------------------------------------------------
|
29271
|
+
--------------------------------------
|
29272
|
+
RemotePartial::BuilderTest: test_build
|
29273
|
+
--------------------------------------
|
29274
|
+
------------------------------------------------------------
|
29275
|
+
RemotePartial::BuilderTest: test_build_with_existing_partial
|
29276
|
+
------------------------------------------------------------
|
29277
|
+
------------------------------------------------------------------
|
29278
|
+
RemotePartial::BuilderTest: test_build_with_existing_stale_partial
|
29279
|
+
------------------------------------------------------------------
|
29280
|
+
------------------------------------------------------
|
29281
|
+
RemotePartial::BuilderTest: test_build_with_http_error
|
29282
|
+
------------------------------------------------------
|
29283
|
+
Unable to retrieve remote partial at http://www.warwickshire.gov.uk: #<Net::HTTPBadRequest 400 readbody=true>
|
29284
|
+
-------------------------------------------------------------
|
29285
|
+
RemotePartial::BuilderTest: test_builder_with_output_modifier
|
29286
|
+
-------------------------------------------------------------
|
29287
|
+
---------------------------------------------------------
|
29288
|
+
RemotePartial::BuilderTest: test_create_or_update_partial
|
29289
|
+
---------------------------------------------------------
|
29290
|
+
-----------------------------------------------------------------------------------
|
29291
|
+
RemotePartial::BuilderTest: test_create_or_update_partial_updates_if_partial_exists
|
29292
|
+
-----------------------------------------------------------------------------------
|
29293
|
+
----------------------------------------------------------------------------
|
29294
|
+
RemotePartial::BuilderTest: test_stale_at_not_modified_if_unable_to_retrieve
|
29295
|
+
----------------------------------------------------------------------------
|
29296
|
+
Unable to retrieve remote partial at http://www.warwickshire.gov.uk: #<Net::HTTPBadRequest 400 readbody=true>
|
29297
|
+
----------------------------------------------------------------
|
29298
|
+
RemotePartial::ExceptionTest: test_remote_partial_retrival_error
|
29299
|
+
----------------------------------------------------------------
|
29300
|
+
-------------------------------------------------
|
29301
|
+
RemotePartial::PartialTest: test_output_file_name
|
29302
|
+
-------------------------------------------------
|
29303
|
+
--------------------------------------------------------
|
29304
|
+
RemotePartial::PartialTest: test_stale_at_gets_into_file
|
29305
|
+
--------------------------------------------------------
|
29306
|
+
--------------------------------------------------------
|
29307
|
+
RemotePartial::PartialTest: test_stale_at_gets_into_hash
|
29308
|
+
--------------------------------------------------------
|
29309
|
+
------------------------------------------------------------------
|
29310
|
+
RemotePartial::PartialTest: test_stale_at_not_updated_unless_stale
|
29311
|
+
------------------------------------------------------------------
|
29312
|
+
--------------------------------------------------------
|
29313
|
+
RemotePartial::PartialTest: test_stale_at_reset_if_stale
|
29314
|
+
--------------------------------------------------------
|
29315
|
+
--------------------------------------------
|
29316
|
+
RemotePartial::PartialTest: test_update_file
|
29317
|
+
--------------------------------------------
|
29318
|
+
------------------------------------------------------------------------
|
29319
|
+
RemotePartial::PartialTest: test_update_file_not_affected_by_stale_state
|
29320
|
+
------------------------------------------------------------------------
|
29321
|
+
-----------------------------------------------------------------
|
29322
|
+
RemotePartial::PartialTest: test_update_file_with_output_modifier
|
29323
|
+
-----------------------------------------------------------------
|
29324
|
+
------------------------------------------------
|
29325
|
+
RemotePartial::PartialTest: test_update_stale_at
|
29326
|
+
------------------------------------------------
|
29327
|
+
--------------------------------------------------
|
29328
|
+
RemotePartial::PartialTest: test_update_stale_file
|
29329
|
+
--------------------------------------------------
|
29330
|
+
-----------------------------------------------------------------
|
29331
|
+
RemotePartial::PartialTest: test_update_stale_file_when_not_stale
|
29332
|
+
-----------------------------------------------------------------
|
29333
|
+
-----------------------------------------------------------
|
29334
|
+
RemotePartial::ResourceManagerTest: test_connection_failure
|
29335
|
+
-----------------------------------------------------------
|
29336
|
+
------------------------------------------------------------------------------
|
29337
|
+
RemotePartial::ResourceManagerTest: test_connection_failure_due_to_invalid_url
|
29338
|
+
------------------------------------------------------------------------------
|
29339
|
+
-------------------------------------------------
|
29340
|
+
RemotePartial::ResourceManagerTest: test_get_page
|
29341
|
+
-------------------------------------------------
|
29342
|
+
------------------------------------------------
|
29343
|
+
RemotePartial::ResourceManagerTest: test_get_raw
|
29344
|
+
------------------------------------------------
|
29345
|
+
---------------------------------------------
|
29346
|
+
RemotePartial::ResourceManagerTest: test_html
|
29347
|
+
---------------------------------------------
|
29348
|
+
--------------------------------------------------------
|
29349
|
+
RemotePartial::ResourceManagerTest: test_html_with_limit
|
29350
|
+
--------------------------------------------------------
|
29351
|
+
--------------------------------------------------------------------------------------
|
29352
|
+
RemotePartial::ResourceManagerTest: test_html_with_limit_that_returns_multiple_matches
|
29353
|
+
--------------------------------------------------------------------------------------
|
29354
|
+
-----------------------------------------------------------
|
29355
|
+
RemotePartial::ResourceManagerTest: test_html_with_proc_mod
|
29356
|
+
-----------------------------------------------------------
|
29357
|
+
--------------------------------------------------
|
29358
|
+
RemotePartial::ResourceManagerTest: test_output_to
|
29359
|
+
--------------------------------------------------
|
29360
|
+
---------------------------------------------
|
29361
|
+
RemotePartial::ResourceManagerTest: test_stub
|
29362
|
+
---------------------------------------------
|
29363
|
+
----------------------------------------
|
29364
|
+
RemotePartial::YamlStoreTest: test_count
|
29365
|
+
----------------------------------------
|
29366
|
+
-----------------------------------------
|
29367
|
+
RemotePartial::YamlStoreTest: test_create
|
29368
|
+
-----------------------------------------
|
29369
|
+
---------------------------------------------
|
29370
|
+
RemotePartial::YamlStoreTest: test_created_at
|
29371
|
+
---------------------------------------------
|
29372
|
+
-------------------------------------------------------------------
|
29373
|
+
RemotePartial::YamlStoreTest: test_created_at_not_updated_if_exists
|
29374
|
+
-------------------------------------------------------------------
|
29375
|
+
------------------------------------------
|
29376
|
+
RemotePartial::YamlStoreTest: test_db_path
|
29377
|
+
------------------------------------------
|
29378
|
+
--------------------------------------
|
29379
|
+
RemotePartial::YamlStoreTest: test_dir
|
29380
|
+
--------------------------------------
|
29381
|
+
---------------------------------------
|
29382
|
+
RemotePartial::YamlStoreTest: test_file
|
29383
|
+
---------------------------------------
|
29384
|
+
---------------------------------------
|
29385
|
+
RemotePartial::YamlStoreTest: test_find
|
29386
|
+
---------------------------------------
|
29387
|
+
-------------------------------------------------------
|
29388
|
+
RemotePartial::YamlStoreTest: test_find_when_none_exist
|
29389
|
+
-------------------------------------------------------
|
29390
|
+
---------------------------------------------------
|
29391
|
+
RemotePartial::YamlStoreTest: test_find_with_symbol
|
29392
|
+
---------------------------------------------------
|
29393
|
+
-----------------------------------------
|
29394
|
+
RemotePartial::YamlStoreTest: test_merge!
|
29395
|
+
-----------------------------------------
|
29396
|
+
--------------------------------------
|
29397
|
+
RemotePartial::YamlStoreTest: test_new
|
29398
|
+
--------------------------------------
|
29399
|
+
---------------------------------------
|
29400
|
+
RemotePartial::YamlStoreTest: test_read
|
29401
|
+
---------------------------------------
|
29402
|
+
-----------------------------------------------------------
|
29403
|
+
RemotePartial::YamlStoreTest: test_read_when_no_file_exists
|
29404
|
+
-----------------------------------------------------------
|
29405
|
+
---------------------------------------
|
29406
|
+
RemotePartial::YamlStoreTest: test_root
|
29407
|
+
---------------------------------------
|
29408
|
+
---------------------------------------
|
29409
|
+
RemotePartial::YamlStoreTest: test_save
|
29410
|
+
---------------------------------------
|
29411
|
+
------------------------------------------------------
|
29412
|
+
RemotePartial::YamlStoreTest: test_save_without_a_name
|
29413
|
+
------------------------------------------------------
|
29414
|
+
----------------------------------------------
|
29415
|
+
RemotePartial::YamlStoreTest: test_string_keys
|
29416
|
+
----------------------------------------------
|
29417
|
+
---------------------------------------------
|
29418
|
+
RemotePartial::YamlStoreTest: test_updated_at
|
29419
|
+
---------------------------------------------
|
29420
|
+
------------------------------------------------------------------
|
29421
|
+
RemotePartial::YamlStoreTest: test_updated_at_if_updated_if_exists
|
29422
|
+
------------------------------------------------------------------
|
29423
|
+
----------------------------------------
|
29424
|
+
RemotePartial::YamlStoreTest: test_write
|
29425
|
+
----------------------------------------
|
29426
|
+
------------------------------
|
29427
|
+
RemotePartialTest: test_define
|
29428
|
+
------------------------------
|
29429
|
+
Unable to retrieve remote partial at http://www.warwickshire.gov.uk: #<WebMock::NetConnectNotAllowedError: Real HTTP connections are disabled. Unregistered request: GET http://www.warwickshire.gov.uk/ with headers {'Accept'=>'*/*', 'User-Agent'=>'Ruby'}
|
29430
|
+
|
29431
|
+
You can stub this request with the following snippet:
|
29432
|
+
|
29433
|
+
stub_request(:get, "http://www.warwickshire.gov.uk/").
|
29434
|
+
with(:headers => {'Accept'=>'*/*', 'User-Agent'=>'Ruby'}).
|
29435
|
+
to_return(:status => 200, :body => "", :headers => {})
|
29436
|
+
|
29437
|
+
============================================================>
|
29438
|
+
-----------------------------------------------
|
29439
|
+
RemotePartialTest: test_define_with_string_keys
|
29440
|
+
-----------------------------------------------
|
29441
|
+
Unable to retrieve remote partial at http://www.warwickshire.gov.uk: #<WebMock::NetConnectNotAllowedError: Real HTTP connections are disabled. Unregistered request: GET http://www.warwickshire.gov.uk/ with headers {'Accept'=>'*/*', 'User-Agent'=>'Ruby'}
|
29442
|
+
|
29443
|
+
You can stub this request with the following snippet:
|
29444
|
+
|
29445
|
+
stub_request(:get, "http://www.warwickshire.gov.uk/").
|
29446
|
+
with(:headers => {'Accept'=>'*/*', 'User-Agent'=>'Ruby'}).
|
29447
|
+
to_return(:status => 200, :body => "", :headers => {})
|
29448
|
+
|
29449
|
+
============================================================>
|
29450
|
+
-----------------------------
|
29451
|
+
RemotePartialTest: test_truth
|
29452
|
+
-----------------------------
|
29453
|
+
Unable to retrieve remote partial at http://www.timeanddate.com/worldclock/city.html?n=136: #<WebMock::NetConnectNotAllowedError: Real HTTP connections are disabled. Unregistered request: GET http://www.timeanddate.com/worldclock/city.html?n=136 with headers {'Accept'=>'*/*', 'User-Agent'=>'Ruby'}
|
29454
|
+
|
29455
|
+
You can stub this request with the following snippet:
|
29456
|
+
|
29457
|
+
stub_request(:get, "http://www.timeanddate.com/worldclock/city.html?n=136").
|
29458
|
+
with(:headers => {'Accept'=>'*/*', 'User-Agent'=>'Ruby'}).
|
29459
|
+
to_return(:status => 200, :body => "", :headers => {})
|
29460
|
+
|
29461
|
+
============================================================>
|
29462
|
+
Unable to retrieve remote partial at http://www.ruby-lang.org/en/: #<WebMock::NetConnectNotAllowedError: Real HTTP connections are disabled. Unregistered request: GET http://www.ruby-lang.org/en/ with headers {'Accept'=>'*/*', 'User-Agent'=>'Ruby'}
|
29463
|
+
|
29464
|
+
You can stub this request with the following snippet:
|
29465
|
+
|
29466
|
+
stub_request(:get, "http://www.ruby-lang.org/en/").
|
29467
|
+
with(:headers => {'Accept'=>'*/*', 'User-Agent'=>'Ruby'}).
|
29468
|
+
to_return(:status => 200, :body => "", :headers => {})
|
29469
|
+
|
29470
|
+
============================================================>
|
29471
|
+
-------------------------------
|
29472
|
+
DemosControllerTest: test_index
|
29473
|
+
-------------------------------
|
29474
|
+
Processing by DemosController#index as HTML
|
29475
|
+
Rendered demos/index.html.erb within layouts/application (22.5ms)
|
29476
|
+
Completed 200 OK in 37ms (Views: 36.8ms)
|
29477
|
+
------------------------------------
|
29478
|
+
DemosControllerTest: test_show_fixed
|
29479
|
+
------------------------------------
|
29480
|
+
Processing by DemosController#show as HTML
|
29481
|
+
Parameters: {"id"=>"fixed"}
|
29482
|
+
Rendered remote_partials/_fixed.html.erb (0.9ms)
|
29483
|
+
Rendered demos/_fixed.html.erb (3.0ms)
|
29484
|
+
Completed 200 OK in 9ms (Views: 8.6ms)
|
29485
|
+
-----------------------------------------------------------
|
29486
|
+
DemosHelperTest: test_render_remote_partial_with_no_partial
|
29487
|
+
-----------------------------------------------------------
|
29488
|
+
--------------------------------------
|
29489
|
+
RemotePartial::BuilderTest: test_build
|
29490
|
+
--------------------------------------
|
29491
|
+
------------------------------------------------------------
|
29492
|
+
RemotePartial::BuilderTest: test_build_with_existing_partial
|
29493
|
+
------------------------------------------------------------
|
29494
|
+
------------------------------------------------------------------
|
29495
|
+
RemotePartial::BuilderTest: test_build_with_existing_stale_partial
|
29496
|
+
------------------------------------------------------------------
|
29497
|
+
------------------------------------------------------
|
29498
|
+
RemotePartial::BuilderTest: test_build_with_http_error
|
29499
|
+
------------------------------------------------------
|
29500
|
+
Unable to retrieve remote partial at http://www.warwickshire.gov.uk: #<Net::HTTPBadRequest 400 readbody=true>
|
29501
|
+
-------------------------------------------------------------
|
29502
|
+
RemotePartial::BuilderTest: test_builder_with_output_modifier
|
29503
|
+
-------------------------------------------------------------
|
29504
|
+
---------------------------------------------------------
|
29505
|
+
RemotePartial::BuilderTest: test_create_or_update_partial
|
29506
|
+
---------------------------------------------------------
|
29507
|
+
-----------------------------------------------------------------------------------
|
29508
|
+
RemotePartial::BuilderTest: test_create_or_update_partial_updates_if_partial_exists
|
29509
|
+
-----------------------------------------------------------------------------------
|
29510
|
+
----------------------------------------------------------------------------
|
29511
|
+
RemotePartial::BuilderTest: test_stale_at_not_modified_if_unable_to_retrieve
|
29512
|
+
----------------------------------------------------------------------------
|
29513
|
+
Unable to retrieve remote partial at http://www.warwickshire.gov.uk: #<Net::HTTPBadRequest 400 readbody=true>
|
29514
|
+
----------------------------------------------------------------
|
29515
|
+
RemotePartial::ExceptionTest: test_remote_partial_retrival_error
|
29516
|
+
----------------------------------------------------------------
|
29517
|
+
-------------------------------------------------
|
29518
|
+
RemotePartial::PartialTest: test_output_file_name
|
29519
|
+
-------------------------------------------------
|
29520
|
+
--------------------------------------------------------
|
29521
|
+
RemotePartial::PartialTest: test_stale_at_gets_into_file
|
29522
|
+
--------------------------------------------------------
|
29523
|
+
--------------------------------------------------------
|
29524
|
+
RemotePartial::PartialTest: test_stale_at_gets_into_hash
|
29525
|
+
--------------------------------------------------------
|
29526
|
+
------------------------------------------------------------------
|
29527
|
+
RemotePartial::PartialTest: test_stale_at_not_updated_unless_stale
|
29528
|
+
------------------------------------------------------------------
|
29529
|
+
--------------------------------------------------------
|
29530
|
+
RemotePartial::PartialTest: test_stale_at_reset_if_stale
|
29531
|
+
--------------------------------------------------------
|
29532
|
+
--------------------------------------------
|
29533
|
+
RemotePartial::PartialTest: test_update_file
|
29534
|
+
--------------------------------------------
|
29535
|
+
------------------------------------------------------------------------
|
29536
|
+
RemotePartial::PartialTest: test_update_file_not_affected_by_stale_state
|
29537
|
+
------------------------------------------------------------------------
|
29538
|
+
-----------------------------------------------------------------
|
29539
|
+
RemotePartial::PartialTest: test_update_file_with_output_modifier
|
29540
|
+
-----------------------------------------------------------------
|
29541
|
+
------------------------------------------------
|
29542
|
+
RemotePartial::PartialTest: test_update_stale_at
|
29543
|
+
------------------------------------------------
|
29544
|
+
--------------------------------------------------
|
29545
|
+
RemotePartial::PartialTest: test_update_stale_file
|
29546
|
+
--------------------------------------------------
|
29547
|
+
-----------------------------------------------------------------
|
29548
|
+
RemotePartial::PartialTest: test_update_stale_file_when_not_stale
|
29549
|
+
-----------------------------------------------------------------
|
29550
|
+
-----------------------------------------------------------
|
29551
|
+
RemotePartial::ResourceManagerTest: test_connection_failure
|
29552
|
+
-----------------------------------------------------------
|
29553
|
+
------------------------------------------------------------------------------
|
29554
|
+
RemotePartial::ResourceManagerTest: test_connection_failure_due_to_invalid_url
|
29555
|
+
------------------------------------------------------------------------------
|
29556
|
+
-------------------------------------------------
|
29557
|
+
RemotePartial::ResourceManagerTest: test_get_page
|
29558
|
+
-------------------------------------------------
|
29559
|
+
------------------------------------------------
|
29560
|
+
RemotePartial::ResourceManagerTest: test_get_raw
|
29561
|
+
------------------------------------------------
|
29562
|
+
---------------------------------------------
|
29563
|
+
RemotePartial::ResourceManagerTest: test_html
|
29564
|
+
---------------------------------------------
|
29565
|
+
--------------------------------------------------------
|
29566
|
+
RemotePartial::ResourceManagerTest: test_html_with_limit
|
29567
|
+
--------------------------------------------------------
|
29568
|
+
--------------------------------------------------------------------------------------
|
29569
|
+
RemotePartial::ResourceManagerTest: test_html_with_limit_that_returns_multiple_matches
|
29570
|
+
--------------------------------------------------------------------------------------
|
29571
|
+
-----------------------------------------------------------
|
29572
|
+
RemotePartial::ResourceManagerTest: test_html_with_proc_mod
|
29573
|
+
-----------------------------------------------------------
|
29574
|
+
--------------------------------------------------
|
29575
|
+
RemotePartial::ResourceManagerTest: test_output_to
|
29576
|
+
--------------------------------------------------
|
29577
|
+
---------------------------------------------
|
29578
|
+
RemotePartial::ResourceManagerTest: test_stub
|
29579
|
+
---------------------------------------------
|
29580
|
+
--------------------------------------
|
29581
|
+
RemotePartial::YamlStoreTest: test_all
|
29582
|
+
--------------------------------------
|
29583
|
+
----------------------------------------------------
|
29584
|
+
RemotePartial::YamlStoreTest: test_all_with_no_items
|
29585
|
+
----------------------------------------------------
|
29586
|
+
----------------------------------------
|
29587
|
+
RemotePartial::YamlStoreTest: test_count
|
29588
|
+
----------------------------------------
|
29589
|
+
-----------------------------------------
|
29590
|
+
RemotePartial::YamlStoreTest: test_create
|
29591
|
+
-----------------------------------------
|
29592
|
+
---------------------------------------------
|
29593
|
+
RemotePartial::YamlStoreTest: test_created_at
|
29594
|
+
---------------------------------------------
|
29595
|
+
-------------------------------------------------------------------
|
29596
|
+
RemotePartial::YamlStoreTest: test_created_at_not_updated_if_exists
|
29597
|
+
-------------------------------------------------------------------
|
29598
|
+
------------------------------------------
|
29599
|
+
RemotePartial::YamlStoreTest: test_db_path
|
29600
|
+
------------------------------------------
|
29601
|
+
--------------------------------------
|
29602
|
+
RemotePartial::YamlStoreTest: test_dir
|
29603
|
+
--------------------------------------
|
29604
|
+
---------------------------------------
|
29605
|
+
RemotePartial::YamlStoreTest: test_file
|
29606
|
+
---------------------------------------
|
29607
|
+
---------------------------------------
|
29608
|
+
RemotePartial::YamlStoreTest: test_find
|
29609
|
+
---------------------------------------
|
29610
|
+
-------------------------------------------------------
|
29611
|
+
RemotePartial::YamlStoreTest: test_find_when_none_exist
|
29612
|
+
-------------------------------------------------------
|
29613
|
+
---------------------------------------------------
|
29614
|
+
RemotePartial::YamlStoreTest: test_find_with_symbol
|
29615
|
+
---------------------------------------------------
|
29616
|
+
-----------------------------------------
|
29617
|
+
RemotePartial::YamlStoreTest: test_merge!
|
29618
|
+
-----------------------------------------
|
29619
|
+
--------------------------------------
|
29620
|
+
RemotePartial::YamlStoreTest: test_new
|
29621
|
+
--------------------------------------
|
29622
|
+
---------------------------------------
|
29623
|
+
RemotePartial::YamlStoreTest: test_read
|
29624
|
+
---------------------------------------
|
29625
|
+
-----------------------------------------------------------
|
29626
|
+
RemotePartial::YamlStoreTest: test_read_when_no_file_exists
|
29627
|
+
-----------------------------------------------------------
|
29628
|
+
---------------------------------------
|
29629
|
+
RemotePartial::YamlStoreTest: test_root
|
29630
|
+
---------------------------------------
|
29631
|
+
---------------------------------------
|
29632
|
+
RemotePartial::YamlStoreTest: test_save
|
29633
|
+
---------------------------------------
|
29634
|
+
------------------------------------------------------
|
29635
|
+
RemotePartial::YamlStoreTest: test_save_without_a_name
|
29636
|
+
------------------------------------------------------
|
29637
|
+
----------------------------------------------
|
29638
|
+
RemotePartial::YamlStoreTest: test_string_keys
|
29639
|
+
----------------------------------------------
|
29640
|
+
---------------------------------------------
|
29641
|
+
RemotePartial::YamlStoreTest: test_updated_at
|
29642
|
+
---------------------------------------------
|
29643
|
+
------------------------------------------------------------------
|
29644
|
+
RemotePartial::YamlStoreTest: test_updated_at_if_updated_if_exists
|
29645
|
+
------------------------------------------------------------------
|
29646
|
+
----------------------------------------
|
29647
|
+
RemotePartial::YamlStoreTest: test_write
|
29648
|
+
----------------------------------------
|
29649
|
+
------------------------------
|
29650
|
+
RemotePartialTest: test_define
|
29651
|
+
------------------------------
|
29652
|
+
Unable to retrieve remote partial at http://www.warwickshire.gov.uk: #<WebMock::NetConnectNotAllowedError: Real HTTP connections are disabled. Unregistered request: GET http://www.warwickshire.gov.uk/ with headers {'Accept'=>'*/*', 'User-Agent'=>'Ruby'}
|
29653
|
+
|
29654
|
+
You can stub this request with the following snippet:
|
29655
|
+
|
29656
|
+
stub_request(:get, "http://www.warwickshire.gov.uk/").
|
29657
|
+
with(:headers => {'Accept'=>'*/*', 'User-Agent'=>'Ruby'}).
|
29658
|
+
to_return(:status => 200, :body => "", :headers => {})
|
29659
|
+
|
29660
|
+
============================================================>
|
29661
|
+
-----------------------------------------------
|
29662
|
+
RemotePartialTest: test_define_with_string_keys
|
29663
|
+
-----------------------------------------------
|
29664
|
+
Unable to retrieve remote partial at http://www.warwickshire.gov.uk: #<WebMock::NetConnectNotAllowedError: Real HTTP connections are disabled. Unregistered request: GET http://www.warwickshire.gov.uk/ with headers {'Accept'=>'*/*', 'User-Agent'=>'Ruby'}
|
29665
|
+
|
29666
|
+
You can stub this request with the following snippet:
|
29667
|
+
|
29668
|
+
stub_request(:get, "http://www.warwickshire.gov.uk/").
|
29669
|
+
with(:headers => {'Accept'=>'*/*', 'User-Agent'=>'Ruby'}).
|
29670
|
+
to_return(:status => 200, :body => "", :headers => {})
|
29671
|
+
|
29672
|
+
============================================================>
|
29673
|
+
-----------------------------
|
29674
|
+
RemotePartialTest: test_truth
|
29675
|
+
-----------------------------
|
29676
|
+
Unable to retrieve remote partial at http://www.timeanddate.com/worldclock/city.html?n=136: #<WebMock::NetConnectNotAllowedError: Real HTTP connections are disabled. Unregistered request: GET http://www.timeanddate.com/worldclock/city.html?n=136 with headers {'Accept'=>'*/*', 'User-Agent'=>'Ruby'}
|
29677
|
+
|
29678
|
+
You can stub this request with the following snippet:
|
29679
|
+
|
29680
|
+
stub_request(:get, "http://www.timeanddate.com/worldclock/city.html?n=136").
|
29681
|
+
with(:headers => {'Accept'=>'*/*', 'User-Agent'=>'Ruby'}).
|
29682
|
+
to_return(:status => 200, :body => "", :headers => {})
|
29683
|
+
|
29684
|
+
============================================================>
|
29685
|
+
Unable to retrieve remote partial at http://www.ruby-lang.org/en/: #<WebMock::NetConnectNotAllowedError: Real HTTP connections are disabled. Unregistered request: GET http://www.ruby-lang.org/en/ with headers {'Accept'=>'*/*', 'User-Agent'=>'Ruby'}
|
29686
|
+
|
29687
|
+
You can stub this request with the following snippet:
|
29688
|
+
|
29689
|
+
stub_request(:get, "http://www.ruby-lang.org/en/").
|
29690
|
+
with(:headers => {'Accept'=>'*/*', 'User-Agent'=>'Ruby'}).
|
29691
|
+
to_return(:status => 200, :body => "", :headers => {})
|
29692
|
+
|
29693
|
+
============================================================>
|
29694
|
+
-------------------------------
|
29695
|
+
DemosControllerTest: test_index
|
29696
|
+
-------------------------------
|
29697
|
+
Processing by DemosController#index as HTML
|
29698
|
+
Rendered demos/index.html.erb within layouts/application (18.9ms)
|
29699
|
+
Completed 200 OK in 38ms (Views: 37.6ms)
|
29700
|
+
------------------------------------
|
29701
|
+
DemosControllerTest: test_show_fixed
|
29702
|
+
------------------------------------
|
29703
|
+
Processing by DemosController#show as HTML
|
29704
|
+
Parameters: {"id"=>"fixed"}
|
29705
|
+
Rendered remote_partials/_fixed.html.erb (0.6ms)
|
29706
|
+
Rendered demos/_fixed.html.erb (2.4ms)
|
29707
|
+
Completed 200 OK in 8ms (Views: 7.8ms)
|
29708
|
+
-----------------------------------------------------------
|
29709
|
+
DemosHelperTest: test_render_remote_partial_with_no_partial
|
29710
|
+
-----------------------------------------------------------
|
29711
|
+
--------------------------------------
|
29712
|
+
RemotePartial::BuilderTest: test_build
|
29713
|
+
--------------------------------------
|
29714
|
+
------------------------------------------------------------
|
29715
|
+
RemotePartial::BuilderTest: test_build_with_existing_partial
|
29716
|
+
------------------------------------------------------------
|
29717
|
+
------------------------------------------------------------------
|
29718
|
+
RemotePartial::BuilderTest: test_build_with_existing_stale_partial
|
29719
|
+
------------------------------------------------------------------
|
29720
|
+
------------------------------------------------------
|
29721
|
+
RemotePartial::BuilderTest: test_build_with_http_error
|
29722
|
+
------------------------------------------------------
|
29723
|
+
Unable to retrieve remote partial at http://www.warwickshire.gov.uk: #<Net::HTTPBadRequest 400 readbody=true>
|
29724
|
+
-------------------------------------------------------------
|
29725
|
+
RemotePartial::BuilderTest: test_builder_with_output_modifier
|
29726
|
+
-------------------------------------------------------------
|
29727
|
+
---------------------------------------------------------
|
29728
|
+
RemotePartial::BuilderTest: test_create_or_update_partial
|
29729
|
+
---------------------------------------------------------
|
29730
|
+
-----------------------------------------------------------------------------------
|
29731
|
+
RemotePartial::BuilderTest: test_create_or_update_partial_updates_if_partial_exists
|
29732
|
+
-----------------------------------------------------------------------------------
|
29733
|
+
----------------------------------------------------------------------------
|
29734
|
+
RemotePartial::BuilderTest: test_stale_at_not_modified_if_unable_to_retrieve
|
29735
|
+
----------------------------------------------------------------------------
|
29736
|
+
Unable to retrieve remote partial at http://www.warwickshire.gov.uk: #<Net::HTTPBadRequest 400 readbody=true>
|
29737
|
+
----------------------------------------------------------------
|
29738
|
+
RemotePartial::ExceptionTest: test_remote_partial_retrival_error
|
29739
|
+
----------------------------------------------------------------
|
29740
|
+
-------------------------------------------------
|
29741
|
+
RemotePartial::PartialTest: test_output_file_name
|
29742
|
+
-------------------------------------------------
|
29743
|
+
--------------------------------------------------------
|
29744
|
+
RemotePartial::PartialTest: test_stale_at_gets_into_file
|
29745
|
+
--------------------------------------------------------
|
29746
|
+
--------------------------------------------------------
|
29747
|
+
RemotePartial::PartialTest: test_stale_at_gets_into_hash
|
29748
|
+
--------------------------------------------------------
|
29749
|
+
------------------------------------------------------------------
|
29750
|
+
RemotePartial::PartialTest: test_stale_at_not_updated_unless_stale
|
29751
|
+
------------------------------------------------------------------
|
29752
|
+
--------------------------------------------------------
|
29753
|
+
RemotePartial::PartialTest: test_stale_at_reset_if_stale
|
29754
|
+
--------------------------------------------------------
|
29755
|
+
--------------------------------------------
|
29756
|
+
RemotePartial::PartialTest: test_update_file
|
29757
|
+
--------------------------------------------
|
29758
|
+
------------------------------------------------------------------------
|
29759
|
+
RemotePartial::PartialTest: test_update_file_not_affected_by_stale_state
|
29760
|
+
------------------------------------------------------------------------
|
29761
|
+
-----------------------------------------------------------------
|
29762
|
+
RemotePartial::PartialTest: test_update_file_with_output_modifier
|
29763
|
+
-----------------------------------------------------------------
|
29764
|
+
------------------------------------------------
|
29765
|
+
RemotePartial::PartialTest: test_update_stale_at
|
29766
|
+
------------------------------------------------
|
29767
|
+
--------------------------------------------------
|
29768
|
+
RemotePartial::PartialTest: test_update_stale_file
|
29769
|
+
--------------------------------------------------
|
29770
|
+
-----------------------------------------------------------------
|
29771
|
+
RemotePartial::PartialTest: test_update_stale_file_when_not_stale
|
29772
|
+
-----------------------------------------------------------------
|
29773
|
+
-----------------------------------------------------------
|
29774
|
+
RemotePartial::ResourceManagerTest: test_connection_failure
|
29775
|
+
-----------------------------------------------------------
|
29776
|
+
------------------------------------------------------------------------------
|
29777
|
+
RemotePartial::ResourceManagerTest: test_connection_failure_due_to_invalid_url
|
29778
|
+
------------------------------------------------------------------------------
|
29779
|
+
-------------------------------------------------
|
29780
|
+
RemotePartial::ResourceManagerTest: test_get_page
|
29781
|
+
-------------------------------------------------
|
29782
|
+
------------------------------------------------
|
29783
|
+
RemotePartial::ResourceManagerTest: test_get_raw
|
29784
|
+
------------------------------------------------
|
29785
|
+
---------------------------------------------
|
29786
|
+
RemotePartial::ResourceManagerTest: test_html
|
29787
|
+
---------------------------------------------
|
29788
|
+
--------------------------------------------------------
|
29789
|
+
RemotePartial::ResourceManagerTest: test_html_with_limit
|
29790
|
+
--------------------------------------------------------
|
29791
|
+
--------------------------------------------------------------------------------------
|
29792
|
+
RemotePartial::ResourceManagerTest: test_html_with_limit_that_returns_multiple_matches
|
29793
|
+
--------------------------------------------------------------------------------------
|
29794
|
+
-----------------------------------------------------------
|
29795
|
+
RemotePartial::ResourceManagerTest: test_html_with_proc_mod
|
29796
|
+
-----------------------------------------------------------
|
29797
|
+
--------------------------------------------------
|
29798
|
+
RemotePartial::ResourceManagerTest: test_output_to
|
29799
|
+
--------------------------------------------------
|
29800
|
+
---------------------------------------------
|
29801
|
+
RemotePartial::ResourceManagerTest: test_stub
|
29802
|
+
---------------------------------------------
|
29803
|
+
--------------------------------------
|
29804
|
+
RemotePartial::YamlStoreTest: test_all
|
29805
|
+
--------------------------------------
|
29806
|
+
----------------------------------------------------
|
29807
|
+
RemotePartial::YamlStoreTest: test_all_with_no_items
|
29808
|
+
----------------------------------------------------
|
29809
|
+
----------------------------------------
|
29810
|
+
RemotePartial::YamlStoreTest: test_count
|
29811
|
+
----------------------------------------
|
29812
|
+
-----------------------------------------
|
29813
|
+
RemotePartial::YamlStoreTest: test_create
|
29814
|
+
-----------------------------------------
|
29815
|
+
---------------------------------------------
|
29816
|
+
RemotePartial::YamlStoreTest: test_created_at
|
29817
|
+
---------------------------------------------
|
29818
|
+
-------------------------------------------------------------------
|
29819
|
+
RemotePartial::YamlStoreTest: test_created_at_not_updated_if_exists
|
29820
|
+
-------------------------------------------------------------------
|
29821
|
+
------------------------------------------
|
29822
|
+
RemotePartial::YamlStoreTest: test_db_path
|
29823
|
+
------------------------------------------
|
29824
|
+
--------------------------------------
|
29825
|
+
RemotePartial::YamlStoreTest: test_dir
|
29826
|
+
--------------------------------------
|
29827
|
+
---------------------------------------
|
29828
|
+
RemotePartial::YamlStoreTest: test_file
|
29829
|
+
---------------------------------------
|
29830
|
+
---------------------------------------
|
29831
|
+
RemotePartial::YamlStoreTest: test_find
|
29832
|
+
---------------------------------------
|
29833
|
+
-------------------------------------------------------
|
29834
|
+
RemotePartial::YamlStoreTest: test_find_when_none_exist
|
29835
|
+
-------------------------------------------------------
|
29836
|
+
---------------------------------------------------
|
29837
|
+
RemotePartial::YamlStoreTest: test_find_with_symbol
|
29838
|
+
---------------------------------------------------
|
29839
|
+
-----------------------------------------
|
29840
|
+
RemotePartial::YamlStoreTest: test_merge!
|
29841
|
+
-----------------------------------------
|
29842
|
+
--------------------------------------
|
29843
|
+
RemotePartial::YamlStoreTest: test_new
|
29844
|
+
--------------------------------------
|
29845
|
+
---------------------------------------
|
29846
|
+
RemotePartial::YamlStoreTest: test_read
|
29847
|
+
---------------------------------------
|
29848
|
+
-----------------------------------------------------------
|
29849
|
+
RemotePartial::YamlStoreTest: test_read_when_no_file_exists
|
29850
|
+
-----------------------------------------------------------
|
29851
|
+
---------------------------------------
|
29852
|
+
RemotePartial::YamlStoreTest: test_root
|
29853
|
+
---------------------------------------
|
29854
|
+
---------------------------------------
|
29855
|
+
RemotePartial::YamlStoreTest: test_save
|
29856
|
+
---------------------------------------
|
29857
|
+
------------------------------------------------------
|
29858
|
+
RemotePartial::YamlStoreTest: test_save_without_a_name
|
29859
|
+
------------------------------------------------------
|
29860
|
+
----------------------------------------------
|
29861
|
+
RemotePartial::YamlStoreTest: test_string_keys
|
29862
|
+
----------------------------------------------
|
29863
|
+
---------------------------------------------
|
29864
|
+
RemotePartial::YamlStoreTest: test_updated_at
|
29865
|
+
---------------------------------------------
|
29866
|
+
------------------------------------------------------------------
|
29867
|
+
RemotePartial::YamlStoreTest: test_updated_at_if_updated_if_exists
|
29868
|
+
------------------------------------------------------------------
|
29869
|
+
----------------------------------------
|
29870
|
+
RemotePartial::YamlStoreTest: test_write
|
29871
|
+
----------------------------------------
|
29872
|
+
------------------------------
|
29873
|
+
RemotePartialTest: test_define
|
29874
|
+
------------------------------
|
29875
|
+
Unable to retrieve remote partial at http://www.warwickshire.gov.uk: #<WebMock::NetConnectNotAllowedError: Real HTTP connections are disabled. Unregistered request: GET http://www.warwickshire.gov.uk/ with headers {'Accept'=>'*/*', 'User-Agent'=>'Ruby'}
|
29876
|
+
|
29877
|
+
You can stub this request with the following snippet:
|
29878
|
+
|
29879
|
+
stub_request(:get, "http://www.warwickshire.gov.uk/").
|
29880
|
+
with(:headers => {'Accept'=>'*/*', 'User-Agent'=>'Ruby'}).
|
29881
|
+
to_return(:status => 200, :body => "", :headers => {})
|
29882
|
+
|
29883
|
+
============================================================>
|
29884
|
+
-----------------------------------------------
|
29885
|
+
RemotePartialTest: test_define_with_string_keys
|
29886
|
+
-----------------------------------------------
|
29887
|
+
Unable to retrieve remote partial at http://www.warwickshire.gov.uk: #<WebMock::NetConnectNotAllowedError: Real HTTP connections are disabled. Unregistered request: GET http://www.warwickshire.gov.uk/ with headers {'Accept'=>'*/*', 'User-Agent'=>'Ruby'}
|
29888
|
+
|
29889
|
+
You can stub this request with the following snippet:
|
29890
|
+
|
29891
|
+
stub_request(:get, "http://www.warwickshire.gov.uk/").
|
29892
|
+
with(:headers => {'Accept'=>'*/*', 'User-Agent'=>'Ruby'}).
|
29893
|
+
to_return(:status => 200, :body => "", :headers => {})
|
29894
|
+
|
29895
|
+
============================================================>
|
29896
|
+
-----------------------------
|
29897
|
+
RemotePartialTest: test_truth
|
29898
|
+
-----------------------------
|