clean_pagination 0.0.3 → 0.0.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/lib/clean_pagination.rb +1 -1
- data/lib/clean_pagination/version.rb +1 -1
- data/test/clean_pagination_test.rb +10 -0
- data/test/dummy/log/test.log +4339 -0
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: c2f08b4adf87167a5c49bc33b0666a30f3679407
|
4
|
+
data.tar.gz: db0e200a6b5d456b6eabf39460fc7ffcf924069c
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: de3234c79aa3cd720c70f37e9c5f77e2c44251f8edeab7d60279a988ed6054b6ee902af66ee340fbab269cf585420c5af4bbdaa3bede1fc1368356cdfd61dffd
|
7
|
+
data.tar.gz: b216c1feca44e35433d78178851efcf1d972f8f23aa707a66f43acb6b38a9358c5b639251aae2a7c5039e80f97724565bb60af2bfe109d459c5760ca6065707d
|
data/lib/clean_pagination.rb
CHANGED
@@ -83,6 +83,16 @@ class ApplicationControllerTest < ActionController::TestCase
|
|
83
83
|
assert_equal '*/101', response.headers['Content-Range']
|
84
84
|
end
|
85
85
|
|
86
|
+
test "refuses range start past end" do
|
87
|
+
@request.headers['Range-Unit'] = 'items'
|
88
|
+
@request.headers['Range'] = "101-"
|
89
|
+
|
90
|
+
@controller.expects(:action).never
|
91
|
+
get :index
|
92
|
+
assert_equal 416, response.status
|
93
|
+
assert_equal '*/101', response.headers['Content-Range']
|
94
|
+
end
|
95
|
+
|
86
96
|
test "handles ranges beyond collection length via truncation" do
|
87
97
|
@request.headers['Range-Unit'] = 'items'
|
88
98
|
@request.headers['Range'] = "50-200"
|
data/test/dummy/log/test.log
CHANGED
@@ -27875,5 +27875,4344 @@ Completed 206 Partial Content in 1ms (Views: 1.0ms | ActiveRecord: 0.0ms)
|
|
27875
27875
|
ApplicationControllerTest: test_shifts_penultimate_page_to_beginning,_preserving_length
|
27876
27876
|
---------------------------------------------------------------------------------------
|
27877
27877
|
Processing by ApplicationController#index as HTML
|
27878
|
+
Completed 206 Partial Content in 1ms (Views: 1.0ms | ActiveRecord: 0.0ms)
|
27879
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
27880
|
+
[1m[36m (0.4ms)[0m [1mbegin transaction[0m
|
27881
|
+
------------------------------------------------------------
|
27882
|
+
ApplicationControllerTest: test_an_acceptable_range_succeeds
|
27883
|
+
------------------------------------------------------------
|
27884
|
+
Processing by ApplicationController#index as HTML
|
27885
|
+
Rendered application/index.html.erb within layouts/application (1.8ms)
|
27886
|
+
Completed 206 Partial Content in 20ms (Views: 19.3ms | ActiveRecord: 0.0ms)
|
27887
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
27888
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
27889
|
+
---------------------------------------------------------------
|
27890
|
+
ApplicationControllerTest: test_an_oversized_range_is_truncated
|
27891
|
+
---------------------------------------------------------------
|
27892
|
+
Processing by ApplicationController#index as HTML
|
27893
|
+
Completed 206 Partial Content in 1ms (Views: 1.2ms | ActiveRecord: 0.0ms)
|
27894
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
27895
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
27896
|
+
----------------------------------------------------------------------
|
27897
|
+
ApplicationControllerTest: test_first_page_range_always_starts_at_zero
|
27898
|
+
----------------------------------------------------------------------
|
27899
|
+
Processing by ApplicationController#index as HTML
|
27900
|
+
Completed 206 Partial Content in 1ms (Views: 1.0ms | ActiveRecord: 0.0ms)
|
27901
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
27902
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
27903
|
+
-------------------------------------------------------------------------------------
|
27904
|
+
ApplicationControllerTest: test_for_from_>_to-from,_next_is_the_right_inverse_of_prev
|
27905
|
+
-------------------------------------------------------------------------------------
|
27906
|
+
Processing by ApplicationController#index as HTML
|
27907
|
+
Completed 206 Partial Content in 1ms (Views: 1.2ms | ActiveRecord: 0.0ms)
|
27908
|
+
Processing by ApplicationController#index as HTML
|
27909
|
+
Completed 206 Partial Content in 1ms (Views: 1.0ms | ActiveRecord: 0.0ms)
|
27910
|
+
Processing by ApplicationController#index as HTML
|
27911
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
27912
|
+
Processing by ApplicationController#index as HTML
|
27913
|
+
Completed 206 Partial Content in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
27914
|
+
Processing by ApplicationController#index as HTML
|
27915
|
+
Completed 206 Partial Content in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
27916
|
+
Processing by ApplicationController#index as HTML
|
27917
|
+
Completed 206 Partial Content in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
27918
|
+
Processing by ApplicationController#index as HTML
|
27919
|
+
Completed 206 Partial Content in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
27920
|
+
Processing by ApplicationController#index as HTML
|
27921
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
27922
|
+
Processing by ApplicationController#index as HTML
|
27923
|
+
Completed 206 Partial Content in 6ms (Views: 5.5ms | ActiveRecord: 0.0ms)
|
27924
|
+
Processing by ApplicationController#index as HTML
|
27925
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
27926
|
+
Processing by ApplicationController#index as HTML
|
27927
|
+
Completed 200 OK in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
27928
|
+
Processing by ApplicationController#index as HTML
|
27929
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
27930
|
+
Processing by ApplicationController#index as HTML
|
27931
|
+
Completed 206 Partial Content in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
27932
|
+
Processing by ApplicationController#index as HTML
|
27933
|
+
Completed 200 OK in 1ms (Views: 1.0ms | ActiveRecord: 0.0ms)
|
27934
|
+
Processing by ApplicationController#index as HTML
|
27935
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
27936
|
+
Processing by ApplicationController#index as HTML
|
27937
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
27938
|
+
Processing by ApplicationController#index as HTML
|
27939
|
+
Completed 206 Partial Content in 2ms (Views: 1.4ms | ActiveRecord: 0.0ms)
|
27940
|
+
Processing by ApplicationController#index as HTML
|
27941
|
+
Completed 206 Partial Content in 1ms (Views: 1.0ms | ActiveRecord: 0.0ms)
|
27942
|
+
Processing by ApplicationController#index as HTML
|
27943
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
27944
|
+
Processing by ApplicationController#index as HTML
|
27945
|
+
Completed 206 Partial Content in 1ms (Views: 1.0ms | ActiveRecord: 0.0ms)
|
27946
|
+
Processing by ApplicationController#index as HTML
|
27947
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
27948
|
+
Processing by ApplicationController#index as HTML
|
27949
|
+
Completed 206 Partial Content in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
27950
|
+
Processing by ApplicationController#index as HTML
|
27951
|
+
Completed 200 OK in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
27952
|
+
Processing by ApplicationController#index as HTML
|
27953
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
27954
|
+
Processing by ApplicationController#index as HTML
|
27955
|
+
Completed 206 Partial Content in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
27956
|
+
Processing by ApplicationController#index as HTML
|
27957
|
+
Completed 206 Partial Content in 1ms (Views: 1.0ms | ActiveRecord: 0.0ms)
|
27958
|
+
Processing by ApplicationController#index as HTML
|
27959
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
27960
|
+
Processing by ApplicationController#index as HTML
|
27961
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
27962
|
+
Processing by ApplicationController#index as HTML
|
27963
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
27964
|
+
Processing by ApplicationController#index as HTML
|
27965
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
27966
|
+
Processing by ApplicationController#index as HTML
|
27967
|
+
Completed 200 OK in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
27968
|
+
Processing by ApplicationController#index as HTML
|
27969
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
27970
|
+
Processing by ApplicationController#index as HTML
|
27971
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
27972
|
+
Processing by ApplicationController#index as HTML
|
27973
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
27974
|
+
Processing by ApplicationController#index as HTML
|
27975
|
+
Completed 206 Partial Content in 1ms (Views: 1.0ms | ActiveRecord: 0.0ms)
|
27976
|
+
Processing by ApplicationController#index as HTML
|
27977
|
+
Completed 200 OK in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
27978
|
+
Processing by ApplicationController#index as HTML
|
27979
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
27980
|
+
Processing by ApplicationController#index as HTML
|
27981
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
27982
|
+
Processing by ApplicationController#index as HTML
|
27983
|
+
Completed 200 OK in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
27984
|
+
Processing by ApplicationController#index as HTML
|
27985
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
27986
|
+
Processing by ApplicationController#index as HTML
|
27987
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
27988
|
+
Processing by ApplicationController#index as HTML
|
27989
|
+
Completed 206 Partial Content in 1ms (Views: 1.0ms | ActiveRecord: 0.0ms)
|
27990
|
+
Processing by ApplicationController#index as HTML
|
27991
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
27992
|
+
Processing by ApplicationController#index as HTML
|
27993
|
+
Completed 206 Partial Content in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
27994
|
+
Processing by ApplicationController#index as HTML
|
27995
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
27996
|
+
Processing by ApplicationController#index as HTML
|
27997
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
27998
|
+
Processing by ApplicationController#index as HTML
|
27999
|
+
Completed 206 Partial Content in 3ms (Views: 2.9ms | ActiveRecord: 0.0ms)
|
28000
|
+
Processing by ApplicationController#index as HTML
|
28001
|
+
Completed 206 Partial Content in 1ms (Views: 1.1ms | ActiveRecord: 0.0ms)
|
28002
|
+
Processing by ApplicationController#index as HTML
|
28003
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
28004
|
+
Processing by ApplicationController#index as HTML
|
28005
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
28006
|
+
Processing by ApplicationController#index as HTML
|
28007
|
+
Completed 206 Partial Content in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
28008
|
+
Processing by ApplicationController#index as HTML
|
28009
|
+
Completed 200 OK in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
28010
|
+
Processing by ApplicationController#index as HTML
|
28011
|
+
Completed 206 Partial Content in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
28012
|
+
Processing by ApplicationController#index as HTML
|
28013
|
+
Completed 206 Partial Content in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
28014
|
+
Processing by ApplicationController#index as HTML
|
28015
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
28016
|
+
Processing by ApplicationController#index as HTML
|
28017
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
28018
|
+
Processing by ApplicationController#index as HTML
|
28019
|
+
Completed 206 Partial Content in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
28020
|
+
Processing by ApplicationController#index as HTML
|
28021
|
+
Completed 206 Partial Content in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
28022
|
+
Processing by ApplicationController#index as HTML
|
28023
|
+
Completed 206 Partial Content in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
28024
|
+
Processing by ApplicationController#index as HTML
|
28025
|
+
Completed 416 Requested Range Not Satisfiable in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
28026
|
+
Processing by ApplicationController#index as HTML
|
28027
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
28028
|
+
Processing by ApplicationController#index as HTML
|
28029
|
+
Completed 206 Partial Content in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
28030
|
+
Processing by ApplicationController#index as HTML
|
28031
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
28032
|
+
Processing by ApplicationController#index as HTML
|
28033
|
+
Completed 206 Partial Content in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
28034
|
+
Processing by ApplicationController#index as HTML
|
28035
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
28036
|
+
Processing by ApplicationController#index as HTML
|
28037
|
+
Completed 206 Partial Content in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
28038
|
+
Processing by ApplicationController#index as HTML
|
28039
|
+
Completed 206 Partial Content in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
28040
|
+
Processing by ApplicationController#index as HTML
|
28041
|
+
Completed 206 Partial Content in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
28042
|
+
Processing by ApplicationController#index as HTML
|
28043
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
28044
|
+
Processing by ApplicationController#index as HTML
|
28045
|
+
Completed 206 Partial Content in 1ms (Views: 1.0ms | ActiveRecord: 0.0ms)
|
28046
|
+
Processing by ApplicationController#index as HTML
|
28047
|
+
Completed 200 OK in 1ms (Views: 1.0ms | ActiveRecord: 0.0ms)
|
28048
|
+
Processing by ApplicationController#index as HTML
|
28049
|
+
Completed 416 Requested Range Not Satisfiable in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
28050
|
+
Processing by ApplicationController#index as HTML
|
28051
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
28052
|
+
Processing by ApplicationController#index as HTML
|
28053
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
28054
|
+
Processing by ApplicationController#index as HTML
|
28055
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
28056
|
+
Processing by ApplicationController#index as HTML
|
28057
|
+
Completed 200 OK in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
28058
|
+
Processing by ApplicationController#index as HTML
|
28059
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
28060
|
+
Processing by ApplicationController#index as HTML
|
28061
|
+
Completed 206 Partial Content in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
28062
|
+
Processing by ApplicationController#index as HTML
|
28063
|
+
Completed 200 OK in 1ms (Views: 1.1ms | ActiveRecord: 0.0ms)
|
28064
|
+
Processing by ApplicationController#index as HTML
|
28065
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
28066
|
+
Processing by ApplicationController#index as HTML
|
28067
|
+
Completed 206 Partial Content in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
28068
|
+
Processing by ApplicationController#index as HTML
|
28069
|
+
Completed 200 OK in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
28070
|
+
Processing by ApplicationController#index as HTML
|
28071
|
+
Completed 206 Partial Content in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
28072
|
+
Processing by ApplicationController#index as HTML
|
28073
|
+
Completed 206 Partial Content in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
28074
|
+
Processing by ApplicationController#index as HTML
|
28075
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
28076
|
+
Processing by ApplicationController#index as HTML
|
28077
|
+
Completed 206 Partial Content in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
28078
|
+
Processing by ApplicationController#index as HTML
|
28079
|
+
Completed 200 OK in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
28080
|
+
Processing by ApplicationController#index as HTML
|
28081
|
+
Completed 200 OK in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
28082
|
+
Processing by ApplicationController#index as HTML
|
28083
|
+
Completed 206 Partial Content in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
28084
|
+
Processing by ApplicationController#index as HTML
|
28085
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
28086
|
+
Processing by ApplicationController#index as HTML
|
28087
|
+
Completed 206 Partial Content in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
28088
|
+
Processing by ApplicationController#index as HTML
|
28089
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
28090
|
+
Processing by ApplicationController#index as HTML
|
28091
|
+
Completed 206 Partial Content in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
28092
|
+
Processing by ApplicationController#index as HTML
|
28093
|
+
Completed 206 Partial Content in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
28094
|
+
Processing by ApplicationController#index as HTML
|
28095
|
+
Completed 206 Partial Content in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
28096
|
+
Processing by ApplicationController#index as HTML
|
28097
|
+
Completed 206 Partial Content in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
28098
|
+
Processing by ApplicationController#index as HTML
|
28099
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
28100
|
+
Processing by ApplicationController#index as HTML
|
28101
|
+
Completed 200 OK in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
28102
|
+
Processing by ApplicationController#index as HTML
|
28103
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
28104
|
+
Processing by ApplicationController#index as HTML
|
28105
|
+
Completed 206 Partial Content in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
28106
|
+
Processing by ApplicationController#index as HTML
|
28107
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
28108
|
+
Processing by ApplicationController#index as HTML
|
28109
|
+
Completed 206 Partial Content in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
28110
|
+
Processing by ApplicationController#index as HTML
|
28111
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
28112
|
+
Processing by ApplicationController#index as HTML
|
28113
|
+
Completed 206 Partial Content in 1ms (Views: 1.0ms | ActiveRecord: 0.0ms)
|
28114
|
+
Processing by ApplicationController#index as HTML
|
28115
|
+
Completed 200 OK in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
28116
|
+
Processing by ApplicationController#index as HTML
|
28117
|
+
Completed 200 OK in 2ms (Views: 1.1ms | ActiveRecord: 0.0ms)
|
28118
|
+
Processing by ApplicationController#index as HTML
|
28119
|
+
Completed 206 Partial Content in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
28120
|
+
Processing by ApplicationController#index as HTML
|
28121
|
+
Completed 206 Partial Content in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
28122
|
+
Processing by ApplicationController#index as HTML
|
28123
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
28124
|
+
Processing by ApplicationController#index as HTML
|
28125
|
+
Completed 206 Partial Content in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
28126
|
+
Processing by ApplicationController#index as HTML
|
28127
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
28128
|
+
Processing by ApplicationController#index as HTML
|
28129
|
+
Completed 206 Partial Content in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
28130
|
+
Processing by ApplicationController#index as HTML
|
28131
|
+
Completed 206 Partial Content in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
28132
|
+
Processing by ApplicationController#index as HTML
|
28133
|
+
Completed 206 Partial Content in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
28134
|
+
Processing by ApplicationController#index as HTML
|
28135
|
+
Completed 200 OK in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
28136
|
+
Processing by ApplicationController#index as HTML
|
28137
|
+
Completed 200 OK in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
28138
|
+
Processing by ApplicationController#index as HTML
|
28139
|
+
Completed 206 Partial Content in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
28140
|
+
Processing by ApplicationController#index as HTML
|
28141
|
+
Completed 206 Partial Content in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
28142
|
+
Processing by ApplicationController#index as HTML
|
28143
|
+
Completed 206 Partial Content in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
28144
|
+
Processing by ApplicationController#index as HTML
|
28145
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
28146
|
+
Processing by ApplicationController#index as HTML
|
28147
|
+
Completed 206 Partial Content in 2ms (Views: 1.1ms | ActiveRecord: 0.0ms)
|
28148
|
+
Processing by ApplicationController#index as HTML
|
28149
|
+
Completed 206 Partial Content in 1ms (Views: 1.0ms | ActiveRecord: 0.0ms)
|
28150
|
+
Processing by ApplicationController#index as HTML
|
28151
|
+
Completed 206 Partial Content in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
28152
|
+
Processing by ApplicationController#index as HTML
|
28153
|
+
Completed 206 Partial Content in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
28154
|
+
Processing by ApplicationController#index as HTML
|
28155
|
+
Completed 206 Partial Content in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
28156
|
+
Processing by ApplicationController#index as HTML
|
28157
|
+
Completed 206 Partial Content in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
28158
|
+
Processing by ApplicationController#index as HTML
|
28159
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
28160
|
+
Processing by ApplicationController#index as HTML
|
28161
|
+
Completed 416 Requested Range Not Satisfiable in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
28162
|
+
Processing by ApplicationController#index as HTML
|
28163
|
+
Completed 206 Partial Content in 3ms (Views: 2.9ms | ActiveRecord: 0.0ms)
|
28164
|
+
Processing by ApplicationController#index as HTML
|
28165
|
+
Completed 206 Partial Content in 2ms (Views: 1.0ms | ActiveRecord: 0.0ms)
|
28166
|
+
Processing by ApplicationController#index as HTML
|
28167
|
+
Completed 206 Partial Content in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
28168
|
+
Processing by ApplicationController#index as HTML
|
28169
|
+
Completed 206 Partial Content in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
28170
|
+
Processing by ApplicationController#index as HTML
|
28171
|
+
Completed 206 Partial Content in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
28172
|
+
Processing by ApplicationController#index as HTML
|
28173
|
+
Completed 206 Partial Content in 1ms (Views: 1.0ms | ActiveRecord: 0.0ms)
|
28174
|
+
Processing by ApplicationController#index as HTML
|
28175
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
28176
|
+
Processing by ApplicationController#index as HTML
|
28177
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
28178
|
+
Processing by ApplicationController#index as HTML
|
28179
|
+
Completed 206 Partial Content in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
28180
|
+
Processing by ApplicationController#index as HTML
|
28181
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
28182
|
+
Processing by ApplicationController#index as HTML
|
28183
|
+
Completed 206 Partial Content in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
28184
|
+
Processing by ApplicationController#index as HTML
|
28185
|
+
Completed 206 Partial Content in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
28186
|
+
Processing by ApplicationController#index as HTML
|
28187
|
+
Completed 206 Partial Content in 2ms (Views: 1.0ms | ActiveRecord: 0.0ms)
|
28188
|
+
Processing by ApplicationController#index as HTML
|
28189
|
+
Completed 206 Partial Content in 2ms (Views: 1.5ms | ActiveRecord: 0.0ms)
|
28190
|
+
Processing by ApplicationController#index as HTML
|
28191
|
+
Completed 206 Partial Content in 2ms (Views: 1.6ms | ActiveRecord: 0.0ms)
|
28192
|
+
Processing by ApplicationController#index as HTML
|
28193
|
+
Completed 206 Partial Content in 2ms (Views: 1.2ms | ActiveRecord: 0.0ms)
|
28194
|
+
Processing by ApplicationController#index as HTML
|
28195
|
+
Completed 206 Partial Content in 2ms (Views: 1.2ms | ActiveRecord: 0.0ms)
|
28196
|
+
Processing by ApplicationController#index as HTML
|
28197
|
+
Completed 206 Partial Content in 2ms (Views: 1.0ms | ActiveRecord: 0.0ms)
|
28198
|
+
Processing by ApplicationController#index as HTML
|
28199
|
+
Completed 200 OK in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
28200
|
+
Processing by ApplicationController#index as HTML
|
28201
|
+
Completed 416 Requested Range Not Satisfiable in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
28202
|
+
Processing by ApplicationController#index as HTML
|
28203
|
+
Completed 200 OK in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
28204
|
+
Processing by ApplicationController#index as HTML
|
28205
|
+
Completed 206 Partial Content in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
28206
|
+
Processing by ApplicationController#index as HTML
|
28207
|
+
Completed 206 Partial Content in 4ms (Views: 1.1ms | ActiveRecord: 0.0ms)
|
28208
|
+
Processing by ApplicationController#index as HTML
|
28209
|
+
Completed 206 Partial Content in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
28210
|
+
Processing by ApplicationController#index as HTML
|
28211
|
+
Completed 206 Partial Content in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
28212
|
+
Processing by ApplicationController#index as HTML
|
28213
|
+
Completed 416 Requested Range Not Satisfiable in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
28214
|
+
Processing by ApplicationController#index as HTML
|
28215
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
28216
|
+
Processing by ApplicationController#index as HTML
|
28217
|
+
Completed 206 Partial Content in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
28218
|
+
Processing by ApplicationController#index as HTML
|
28219
|
+
Completed 200 OK in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
28220
|
+
Processing by ApplicationController#index as HTML
|
28221
|
+
Completed 206 Partial Content in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
28222
|
+
Processing by ApplicationController#index as HTML
|
28223
|
+
Completed 206 Partial Content in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
28224
|
+
Processing by ApplicationController#index as HTML
|
28225
|
+
Completed 206 Partial Content in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
28226
|
+
Processing by ApplicationController#index as HTML
|
28227
|
+
Completed 206 Partial Content in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
28228
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
28229
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
28230
|
+
--------------------------------------------------------------------------------------
|
28231
|
+
ApplicationControllerTest: test_handles_ranges_beyond_collection_length_via_truncation
|
28232
|
+
--------------------------------------------------------------------------------------
|
28233
|
+
Processing by ApplicationController#index as HTML
|
28234
|
+
Completed 206 Partial Content in 1ms (Views: 1.2ms | ActiveRecord: 0.0ms)
|
28235
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
28236
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
28237
|
+
-----------------------------------------------------
|
28238
|
+
ApplicationControllerTest: test_includes_link_headers
|
28239
|
+
-----------------------------------------------------
|
28240
|
+
Processing by ApplicationController#index as HTML
|
28241
|
+
Completed 206 Partial Content in 1ms (Views: 1.0ms | ActiveRecord: 0.0ms)
|
28242
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
28243
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
28244
|
+
----------------------------------------------------------------------
|
28245
|
+
ApplicationControllerTest: test_infinite_collections_have_no_last_page
|
28246
|
+
----------------------------------------------------------------------
|
28247
|
+
Processing by ApplicationController#index as HTML
|
28248
|
+
Completed 206 Partial Content in 1ms (Views: 1.0ms | ActiveRecord: 0.0ms)
|
28249
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
28250
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
28251
|
+
-------------------------------------------------------------------------------
|
28252
|
+
ApplicationControllerTest: test_last_page_range_can_extend_beyond_the_last_item
|
28253
|
+
-------------------------------------------------------------------------------
|
28254
|
+
Processing by ApplicationController#index as HTML
|
28255
|
+
Completed 206 Partial Content in 1ms (Views: 1.0ms | ActiveRecord: 0.0ms)
|
28256
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
28257
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
28258
|
+
------------------------------------------------------------------------------------
|
28259
|
+
ApplicationControllerTest: test_next_link_with_omitted_end_number_shifts_by_max_page
|
28260
|
+
------------------------------------------------------------------------------------
|
28261
|
+
Processing by ApplicationController#index as HTML
|
28262
|
+
Completed 206 Partial Content in 1ms (Views: 1.0ms | ActiveRecord: 0.0ms)
|
28263
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
28264
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
28265
|
+
---------------------------------------------------------------------------
|
28266
|
+
ApplicationControllerTest: test_next_page_range_can_extend_beyond_last_item
|
28267
|
+
---------------------------------------------------------------------------
|
28268
|
+
Processing by ApplicationController#index as HTML
|
28269
|
+
Completed 206 Partial Content in 1ms (Views: 1.0ms | ActiveRecord: 0.0ms)
|
28270
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
28271
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
28272
|
+
----------------------------------------------------------------
|
28273
|
+
ApplicationControllerTest: test_omits_next_and_last_links_at_end
|
28274
|
+
----------------------------------------------------------------
|
28275
|
+
Processing by ApplicationController#index as HTML
|
28276
|
+
Completed 206 Partial Content in 1ms (Views: 1.0ms | ActiveRecord: 0.0ms)
|
28277
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
28278
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
28279
|
+
-------------------------------------------------------------------
|
28280
|
+
ApplicationControllerTest: test_omits_prev_and_first_links_at_start
|
28281
|
+
-------------------------------------------------------------------
|
28282
|
+
Processing by ApplicationController#index as HTML
|
28283
|
+
Completed 206 Partial Content in 1ms (Views: 1.1ms | ActiveRecord: 0.0ms)
|
28284
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
28285
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
28286
|
+
---------------------------------------------------------------------------
|
28287
|
+
ApplicationControllerTest: test_omitting_the_end_number_asks_for_everything
|
28288
|
+
---------------------------------------------------------------------------
|
28289
|
+
Processing by ApplicationController#index as HTML
|
28290
|
+
Completed 206 Partial Content in 1ms (Views: 1.1ms | ActiveRecord: 0.0ms)
|
28291
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
28292
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
28293
|
+
-------------------------------------------------------------------------------
|
28294
|
+
ApplicationControllerTest: test_omitting_the_end_number_omits_in_first_link_too
|
28295
|
+
-------------------------------------------------------------------------------
|
28296
|
+
Processing by ApplicationController#index as HTML
|
28297
|
+
Completed 206 Partial Content in 1ms (Views: 1.0ms | ActiveRecord: 0.0ms)
|
28298
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
28299
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
28300
|
+
---------------------------------------------------------------------
|
28301
|
+
ApplicationControllerTest: test_passes_along_exceptional_status_codes
|
28302
|
+
---------------------------------------------------------------------
|
28303
|
+
Processing by ApplicationController#index as HTML
|
28304
|
+
Completed 100 Continue in 1ms (Views: 1.1ms | ActiveRecord: 0.0ms)
|
28305
|
+
Processing by ApplicationController#index as HTML
|
28306
|
+
Completed 301 Moved Permanently in 1ms (Views: 1.0ms | ActiveRecord: 0.0ms)
|
28307
|
+
Processing by ApplicationController#index as HTML
|
28308
|
+
Completed 404 Not Found in 3ms (Views: 3.0ms | ActiveRecord: 0.0ms)
|
28309
|
+
Processing by ApplicationController#index as HTML
|
28310
|
+
Completed 500 Internal Server Error in 2ms (Views: 1.5ms | ActiveRecord: 0.0ms)
|
28311
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
28312
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
28313
|
+
--------------------------------------------------------------------------
|
28314
|
+
ApplicationControllerTest: test_preserves_query_parameters_in_link_headers
|
28315
|
+
--------------------------------------------------------------------------
|
28316
|
+
Processing by ApplicationController#index as HTML
|
28317
|
+
Parameters: {"foo"=>"bar"}
|
28318
|
+
Completed 206 Partial Content in 1ms (Views: 1.2ms | ActiveRecord: 0.0ms)
|
28319
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
28320
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
28321
|
+
----------------------------------------------------------------
|
28322
|
+
ApplicationControllerTest: test_prev_is_the_left_inverse_of_next
|
28323
|
+
----------------------------------------------------------------
|
28324
|
+
Processing by ApplicationController#index as HTML
|
28325
|
+
Completed 206 Partial Content in 1ms (Views: 1.0ms | ActiveRecord: 0.0ms)
|
28326
|
+
Processing by ApplicationController#index as HTML
|
28327
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
28328
|
+
Processing by ApplicationController#index as HTML
|
28329
|
+
Completed 206 Partial Content in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
28330
|
+
Processing by ApplicationController#index as HTML
|
28331
|
+
Completed 206 Partial Content in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
28332
|
+
Processing by ApplicationController#index as HTML
|
28333
|
+
Completed 206 Partial Content in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
28334
|
+
Processing by ApplicationController#index as HTML
|
28335
|
+
Completed 200 OK in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
28336
|
+
Processing by ApplicationController#index as HTML
|
28337
|
+
Completed 206 Partial Content in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
28338
|
+
Processing by ApplicationController#index as HTML
|
28339
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
28340
|
+
Processing by ApplicationController#index as HTML
|
28341
|
+
Completed 200 OK in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
28342
|
+
Processing by ApplicationController#index as HTML
|
28343
|
+
Completed 206 Partial Content in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
28344
|
+
Processing by ApplicationController#index as HTML
|
28345
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
28346
|
+
Processing by ApplicationController#index as HTML
|
28347
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
28348
|
+
Processing by ApplicationController#index as HTML
|
28349
|
+
Completed 206 Partial Content in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
28350
|
+
Processing by ApplicationController#index as HTML
|
28351
|
+
Completed 206 Partial Content in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
28352
|
+
Processing by ApplicationController#index as HTML
|
28353
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
28354
|
+
Processing by ApplicationController#index as HTML
|
28355
|
+
Completed 206 Partial Content in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
28356
|
+
Processing by ApplicationController#index as HTML
|
28357
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
28358
|
+
Processing by ApplicationController#index as HTML
|
28359
|
+
Completed 206 Partial Content in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
28360
|
+
Processing by ApplicationController#index as HTML
|
28361
|
+
Completed 206 Partial Content in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
28362
|
+
Processing by ApplicationController#index as HTML
|
28363
|
+
Completed 206 Partial Content in 1ms (Views: 1.0ms | ActiveRecord: 0.0ms)
|
28364
|
+
Processing by ApplicationController#index as HTML
|
28365
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
28366
|
+
Processing by ApplicationController#index as HTML
|
28367
|
+
Completed 206 Partial Content in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
28368
|
+
Processing by ApplicationController#index as HTML
|
28369
|
+
Completed 206 Partial Content in 1ms (Views: 1.0ms | ActiveRecord: 0.0ms)
|
28370
|
+
Processing by ApplicationController#index as HTML
|
28371
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
28372
|
+
Processing by ApplicationController#index as HTML
|
28373
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
28374
|
+
Processing by ApplicationController#index as HTML
|
28375
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
28376
|
+
Processing by ApplicationController#index as HTML
|
28377
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
28378
|
+
Processing by ApplicationController#index as HTML
|
28379
|
+
Completed 206 Partial Content in 2ms (Views: 1.4ms | ActiveRecord: 0.0ms)
|
28380
|
+
Processing by ApplicationController#index as HTML
|
28381
|
+
Completed 206 Partial Content in 1ms (Views: 1.0ms | ActiveRecord: 0.0ms)
|
28382
|
+
Processing by ApplicationController#index as HTML
|
28383
|
+
Completed 206 Partial Content in 2ms (Views: 1.7ms | ActiveRecord: 0.0ms)
|
28384
|
+
Processing by ApplicationController#index as HTML
|
28385
|
+
Completed 206 Partial Content in 2ms (Views: 1.7ms | ActiveRecord: 0.0ms)
|
28386
|
+
Processing by ApplicationController#index as HTML
|
28387
|
+
Completed 206 Partial Content in 2ms (Views: 1.3ms | ActiveRecord: 0.0ms)
|
28388
|
+
Processing by ApplicationController#index as HTML
|
28389
|
+
Completed 206 Partial Content in 4ms (Views: 3.5ms | ActiveRecord: 0.0ms)
|
28390
|
+
Processing by ApplicationController#index as HTML
|
28391
|
+
Completed 206 Partial Content in 1ms (Views: 1.1ms | ActiveRecord: 0.0ms)
|
28392
|
+
Processing by ApplicationController#index as HTML
|
28393
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
28394
|
+
Processing by ApplicationController#index as HTML
|
28395
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
28396
|
+
Processing by ApplicationController#index as HTML
|
28397
|
+
Completed 206 Partial Content in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
28398
|
+
Processing by ApplicationController#index as HTML
|
28399
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
28400
|
+
Processing by ApplicationController#index as HTML
|
28401
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
28402
|
+
Processing by ApplicationController#index as HTML
|
28403
|
+
Completed 206 Partial Content in 1ms (Views: 1.0ms | ActiveRecord: 0.0ms)
|
28404
|
+
Processing by ApplicationController#index as HTML
|
28405
|
+
Completed 206 Partial Content in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
28406
|
+
Processing by ApplicationController#index as HTML
|
28407
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
28408
|
+
Processing by ApplicationController#index as HTML
|
28409
|
+
Completed 206 Partial Content in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
28410
|
+
Processing by ApplicationController#index as HTML
|
28411
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
28412
|
+
Processing by ApplicationController#index as HTML
|
28413
|
+
Completed 206 Partial Content in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
28414
|
+
Processing by ApplicationController#index as HTML
|
28415
|
+
Completed 200 OK in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
28416
|
+
Processing by ApplicationController#index as HTML
|
28417
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
28418
|
+
Processing by ApplicationController#index as HTML
|
28419
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
28420
|
+
Processing by ApplicationController#index as HTML
|
28421
|
+
Completed 206 Partial Content in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
28422
|
+
Processing by ApplicationController#index as HTML
|
28423
|
+
Completed 206 Partial Content in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
28424
|
+
Processing by ApplicationController#index as HTML
|
28425
|
+
Completed 200 OK in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
28426
|
+
Processing by ApplicationController#index as HTML
|
28427
|
+
Completed 200 OK in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
28428
|
+
Processing by ApplicationController#index as HTML
|
28429
|
+
Completed 206 Partial Content in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
28430
|
+
Processing by ApplicationController#index as HTML
|
28431
|
+
Completed 206 Partial Content in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
28432
|
+
Processing by ApplicationController#index as HTML
|
28433
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
28434
|
+
Processing by ApplicationController#index as HTML
|
28435
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
28436
|
+
Processing by ApplicationController#index as HTML
|
28437
|
+
Completed 206 Partial Content in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
28438
|
+
Processing by ApplicationController#index as HTML
|
28439
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
28440
|
+
Processing by ApplicationController#index as HTML
|
28441
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
28442
|
+
Processing by ApplicationController#index as HTML
|
28443
|
+
Completed 206 Partial Content in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
28444
|
+
Processing by ApplicationController#index as HTML
|
28445
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
28446
|
+
Processing by ApplicationController#index as HTML
|
28447
|
+
Completed 206 Partial Content in 1ms (Views: 1.0ms | ActiveRecord: 0.0ms)
|
28448
|
+
Processing by ApplicationController#index as HTML
|
28449
|
+
Completed 206 Partial Content in 3ms (Views: 3.1ms | ActiveRecord: 0.0ms)
|
28450
|
+
Processing by ApplicationController#index as HTML
|
28451
|
+
Completed 206 Partial Content in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
28452
|
+
Processing by ApplicationController#index as HTML
|
28453
|
+
Completed 206 Partial Content in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
28454
|
+
Processing by ApplicationController#index as HTML
|
28455
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
28456
|
+
Processing by ApplicationController#index as HTML
|
28457
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
28458
|
+
Processing by ApplicationController#index as HTML
|
28459
|
+
Completed 206 Partial Content in 2ms (Views: 1.6ms | ActiveRecord: 0.0ms)
|
28460
|
+
Processing by ApplicationController#index as HTML
|
28461
|
+
Completed 206 Partial Content in 2ms (Views: 1.6ms | ActiveRecord: 0.0ms)
|
28462
|
+
Processing by ApplicationController#index as HTML
|
28463
|
+
Completed 206 Partial Content in 2ms (Views: 1.4ms | ActiveRecord: 0.0ms)
|
28464
|
+
Processing by ApplicationController#index as HTML
|
28465
|
+
Completed 206 Partial Content in 2ms (Views: 1.1ms | ActiveRecord: 0.0ms)
|
28466
|
+
Processing by ApplicationController#index as HTML
|
28467
|
+
Completed 206 Partial Content in 2ms (Views: 1.3ms | ActiveRecord: 0.0ms)
|
28468
|
+
Processing by ApplicationController#index as HTML
|
28469
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
28470
|
+
Processing by ApplicationController#index as HTML
|
28471
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
28472
|
+
Processing by ApplicationController#index as HTML
|
28473
|
+
Completed 206 Partial Content in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
28474
|
+
Processing by ApplicationController#index as HTML
|
28475
|
+
Completed 206 Partial Content in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
28476
|
+
Processing by ApplicationController#index as HTML
|
28477
|
+
Completed 206 Partial Content in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
28478
|
+
Processing by ApplicationController#index as HTML
|
28479
|
+
Completed 206 Partial Content in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
28480
|
+
Processing by ApplicationController#index as HTML
|
28481
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
28482
|
+
Processing by ApplicationController#index as HTML
|
28483
|
+
Completed 206 Partial Content in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
28484
|
+
Processing by ApplicationController#index as HTML
|
28485
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
28486
|
+
Processing by ApplicationController#index as HTML
|
28487
|
+
Completed 206 Partial Content in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
28488
|
+
Processing by ApplicationController#index as HTML
|
28489
|
+
Completed 206 Partial Content in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
28490
|
+
Processing by ApplicationController#index as HTML
|
28491
|
+
Completed 206 Partial Content in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
28492
|
+
Processing by ApplicationController#index as HTML
|
28493
|
+
Completed 206 Partial Content in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
28494
|
+
Processing by ApplicationController#index as HTML
|
28495
|
+
Completed 206 Partial Content in 1ms (Views: 1.0ms | ActiveRecord: 0.0ms)
|
28496
|
+
Processing by ApplicationController#index as HTML
|
28497
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
28498
|
+
Processing by ApplicationController#index as HTML
|
28499
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
28500
|
+
Processing by ApplicationController#index as HTML
|
28501
|
+
Completed 206 Partial Content in 4ms (Views: 1.3ms | ActiveRecord: 0.0ms)
|
28502
|
+
Processing by ApplicationController#index as HTML
|
28503
|
+
Completed 206 Partial Content in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
28504
|
+
Processing by ApplicationController#index as HTML
|
28505
|
+
Completed 200 OK in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
28506
|
+
Processing by ApplicationController#index as HTML
|
28507
|
+
Completed 200 OK in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
28508
|
+
Processing by ApplicationController#index as HTML
|
28509
|
+
Completed 206 Partial Content in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
28510
|
+
Processing by ApplicationController#index as HTML
|
28511
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
28512
|
+
Processing by ApplicationController#index as HTML
|
28513
|
+
Completed 200 OK in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
28514
|
+
Processing by ApplicationController#index as HTML
|
28515
|
+
Completed 206 Partial Content in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
28516
|
+
Processing by ApplicationController#index as HTML
|
28517
|
+
Completed 206 Partial Content in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
28518
|
+
Processing by ApplicationController#index as HTML
|
28519
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
28520
|
+
Processing by ApplicationController#index as HTML
|
28521
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
28522
|
+
Processing by ApplicationController#index as HTML
|
28523
|
+
Completed 200 OK in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
28524
|
+
Processing by ApplicationController#index as HTML
|
28525
|
+
Completed 200 OK in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
28526
|
+
Processing by ApplicationController#index as HTML
|
28527
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
28528
|
+
Processing by ApplicationController#index as HTML
|
28529
|
+
Completed 206 Partial Content in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
28530
|
+
Processing by ApplicationController#index as HTML
|
28531
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
28532
|
+
Processing by ApplicationController#index as HTML
|
28533
|
+
Completed 206 Partial Content in 2ms (Views: 1.1ms | ActiveRecord: 0.0ms)
|
28534
|
+
Processing by ApplicationController#index as HTML
|
28535
|
+
Completed 206 Partial Content in 2ms (Views: 1.5ms | ActiveRecord: 0.0ms)
|
28536
|
+
Processing by ApplicationController#index as HTML
|
28537
|
+
Completed 206 Partial Content in 2ms (Views: 1.5ms | ActiveRecord: 0.0ms)
|
28538
|
+
Processing by ApplicationController#index as HTML
|
28539
|
+
Completed 206 Partial Content in 2ms (Views: 1.4ms | ActiveRecord: 0.0ms)
|
28540
|
+
Processing by ApplicationController#index as HTML
|
28541
|
+
Completed 206 Partial Content in 2ms (Views: 1.1ms | ActiveRecord: 0.0ms)
|
28542
|
+
Processing by ApplicationController#index as HTML
|
28543
|
+
Completed 200 OK in 2ms (Views: 1.6ms | ActiveRecord: 0.0ms)
|
28544
|
+
Processing by ApplicationController#index as HTML
|
28545
|
+
Completed 206 Partial Content in 2ms (Views: 1.7ms | ActiveRecord: 0.0ms)
|
28546
|
+
Processing by ApplicationController#index as HTML
|
28547
|
+
Completed 206 Partial Content in 4ms (Views: 1.4ms | ActiveRecord: 0.0ms)
|
28548
|
+
Processing by ApplicationController#index as HTML
|
28549
|
+
Completed 206 Partial Content in 2ms (Views: 1.8ms | ActiveRecord: 0.0ms)
|
28550
|
+
Processing by ApplicationController#index as HTML
|
28551
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
28552
|
+
Processing by ApplicationController#index as HTML
|
28553
|
+
Completed 206 Partial Content in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
28554
|
+
Processing by ApplicationController#index as HTML
|
28555
|
+
Completed 206 Partial Content in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
28556
|
+
Processing by ApplicationController#index as HTML
|
28557
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
28558
|
+
Processing by ApplicationController#index as HTML
|
28559
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
28560
|
+
Processing by ApplicationController#index as HTML
|
28561
|
+
Completed 206 Partial Content in 1ms (Views: 1.0ms | ActiveRecord: 0.0ms)
|
28562
|
+
Processing by ApplicationController#index as HTML
|
28563
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
28564
|
+
Processing by ApplicationController#index as HTML
|
28565
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
28566
|
+
Processing by ApplicationController#index as HTML
|
28567
|
+
Completed 206 Partial Content in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
28568
|
+
Processing by ApplicationController#index as HTML
|
28569
|
+
Completed 206 Partial Content in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
28570
|
+
Processing by ApplicationController#index as HTML
|
28571
|
+
Completed 206 Partial Content in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
28572
|
+
Processing by ApplicationController#index as HTML
|
28573
|
+
Completed 206 Partial Content in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
28574
|
+
Processing by ApplicationController#index as HTML
|
28575
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
28576
|
+
Processing by ApplicationController#index as HTML
|
28577
|
+
Completed 200 OK in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
28578
|
+
Processing by ApplicationController#index as HTML
|
28579
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
28580
|
+
Processing by ApplicationController#index as HTML
|
28581
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
28582
|
+
Processing by ApplicationController#index as HTML
|
28583
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
28584
|
+
Processing by ApplicationController#index as HTML
|
28585
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
28586
|
+
Processing by ApplicationController#index as HTML
|
28587
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
28588
|
+
Processing by ApplicationController#index as HTML
|
28589
|
+
Completed 206 Partial Content in 2ms (Views: 1.0ms | ActiveRecord: 0.0ms)
|
28590
|
+
Processing by ApplicationController#index as HTML
|
28591
|
+
Completed 206 Partial Content in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
28592
|
+
Processing by ApplicationController#index as HTML
|
28593
|
+
Completed 206 Partial Content in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
28594
|
+
Processing by ApplicationController#index as HTML
|
28595
|
+
Completed 206 Partial Content in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
28596
|
+
Processing by ApplicationController#index as HTML
|
28597
|
+
Completed 206 Partial Content in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
28598
|
+
Processing by ApplicationController#index as HTML
|
28599
|
+
Completed 206 Partial Content in 2ms (Views: 1.7ms | ActiveRecord: 0.0ms)
|
28600
|
+
Processing by ApplicationController#index as HTML
|
28601
|
+
Completed 206 Partial Content in 2ms (Views: 1.6ms | ActiveRecord: 0.0ms)
|
28602
|
+
Processing by ApplicationController#index as HTML
|
28603
|
+
Completed 206 Partial Content in 2ms (Views: 1.4ms | ActiveRecord: 0.0ms)
|
28604
|
+
Processing by ApplicationController#index as HTML
|
28605
|
+
Completed 206 Partial Content in 2ms (Views: 1.1ms | ActiveRecord: 0.0ms)
|
28606
|
+
Processing by ApplicationController#index as HTML
|
28607
|
+
Completed 206 Partial Content in 2ms (Views: 1.6ms | ActiveRecord: 0.0ms)
|
28608
|
+
Processing by ApplicationController#index as HTML
|
28609
|
+
Completed 206 Partial Content in 2ms (Views: 1.6ms | ActiveRecord: 0.0ms)
|
28610
|
+
Processing by ApplicationController#index as HTML
|
28611
|
+
Completed 206 Partial Content in 2ms (Views: 1.4ms | ActiveRecord: 0.0ms)
|
28612
|
+
Processing by ApplicationController#index as HTML
|
28613
|
+
Completed 206 Partial Content in 2ms (Views: 1.1ms | ActiveRecord: 0.0ms)
|
28614
|
+
Processing by ApplicationController#index as HTML
|
28615
|
+
Completed 206 Partial Content in 2ms (Views: 1.1ms | ActiveRecord: 0.0ms)
|
28616
|
+
Processing by ApplicationController#index as HTML
|
28617
|
+
Completed 206 Partial Content in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
28618
|
+
Processing by ApplicationController#index as HTML
|
28619
|
+
Completed 206 Partial Content in 2ms (Views: 1.0ms | ActiveRecord: 0.0ms)
|
28620
|
+
Processing by ApplicationController#index as HTML
|
28621
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
28622
|
+
Processing by ApplicationController#index as HTML
|
28623
|
+
Completed 206 Partial Content in 1ms (Views: 1.0ms | ActiveRecord: 0.0ms)
|
28624
|
+
Processing by ApplicationController#index as HTML
|
28625
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
28626
|
+
Processing by ApplicationController#index as HTML
|
28627
|
+
Completed 206 Partial Content in 2ms (Views: 1.1ms | ActiveRecord: 0.0ms)
|
28628
|
+
Processing by ApplicationController#index as HTML
|
28629
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
28630
|
+
Processing by ApplicationController#index as HTML
|
28631
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
28632
|
+
Processing by ApplicationController#index as HTML
|
28633
|
+
Completed 206 Partial Content in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
28634
|
+
Processing by ApplicationController#index as HTML
|
28635
|
+
Completed 206 Partial Content in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
28636
|
+
Processing by ApplicationController#index as HTML
|
28637
|
+
Completed 206 Partial Content in 2ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
28638
|
+
Processing by ApplicationController#index as HTML
|
28639
|
+
Completed 206 Partial Content in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
28640
|
+
Processing by ApplicationController#index as HTML
|
28641
|
+
Completed 206 Partial Content in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
28642
|
+
Processing by ApplicationController#index as HTML
|
28643
|
+
Completed 206 Partial Content in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
28644
|
+
Processing by ApplicationController#index as HTML
|
28645
|
+
Completed 206 Partial Content in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
28646
|
+
Processing by ApplicationController#index as HTML
|
28647
|
+
Completed 200 OK in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
28648
|
+
Processing by ApplicationController#index as HTML
|
28649
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
28650
|
+
Processing by ApplicationController#index as HTML
|
28651
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
28652
|
+
Processing by ApplicationController#index as HTML
|
28653
|
+
Completed 206 Partial Content in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
28654
|
+
Processing by ApplicationController#index as HTML
|
28655
|
+
Completed 200 OK in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
28656
|
+
Processing by ApplicationController#index as HTML
|
28657
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
28658
|
+
Processing by ApplicationController#index as HTML
|
28659
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
28660
|
+
Processing by ApplicationController#index as HTML
|
28661
|
+
Completed 206 Partial Content in 4ms (Views: 1.4ms | ActiveRecord: 0.0ms)
|
28662
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
28663
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
28664
|
+
------------------------------------------------------------------------------------
|
28665
|
+
ApplicationControllerTest: test_prev_link_with_omitted_end_number_shifts_by_max_page
|
28666
|
+
------------------------------------------------------------------------------------
|
28667
|
+
Processing by ApplicationController#index as HTML
|
28668
|
+
Completed 206 Partial Content in 1ms (Views: 1.2ms | ActiveRecord: 0.0ms)
|
28669
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
28670
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
28671
|
+
----------------------------------------------------------------------
|
28672
|
+
ApplicationControllerTest: test_previous_page_range_cannot_go_negative
|
28673
|
+
----------------------------------------------------------------------
|
28674
|
+
Processing by ApplicationController#index as HTML
|
28675
|
+
Completed 206 Partial Content in 1ms (Views: 1.1ms | ActiveRecord: 0.0ms)
|
28676
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
28677
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
28678
|
+
--------------------------------------------------------------------------------------------
|
28679
|
+
ApplicationControllerTest: test_rangeless_request_range_works_normally_if_max_range_>=_total
|
28680
|
+
--------------------------------------------------------------------------------------------
|
28681
|
+
Processing by ApplicationController#index as HTML
|
28682
|
+
Completed 200 OK in 1ms (Views: 1.1ms | ActiveRecord: 0.0ms)
|
28683
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
28684
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
28685
|
+
--------------------------------------------------------------------------------
|
28686
|
+
ApplicationControllerTest: test_rangeless_request_truncates_if_max_range_<_total
|
28687
|
+
--------------------------------------------------------------------------------
|
28688
|
+
Processing by ApplicationController#index as HTML
|
28689
|
+
Completed 206 Partial Content in 1ms (Views: 1.0ms | ActiveRecord: 0.0ms)
|
28690
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
28691
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
28692
|
+
------------------------------------------------------
|
28693
|
+
ApplicationControllerTest: test_refuses_offside_ranges
|
28694
|
+
------------------------------------------------------
|
28695
|
+
Processing by ApplicationController#index as HTML
|
28696
|
+
Completed 416 Requested Range Not Satisfiable in 1ms (Views: 1.0ms | ActiveRecord: 0.0ms)
|
28697
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
28698
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
28699
|
+
------------------------------------------------------------
|
28700
|
+
ApplicationControllerTest: test_refuses_range_start_past_end
|
28701
|
+
------------------------------------------------------------
|
28702
|
+
Processing by ApplicationController#index as HTML
|
28703
|
+
Completed 500 Internal Server Error in 3ms
|
28704
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
28705
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
28706
|
+
-------------------------------------------------------------------
|
28707
|
+
ApplicationControllerTest: test_reports_infinite/unknown_collection
|
28708
|
+
-------------------------------------------------------------------
|
28709
|
+
Processing by ApplicationController#index as HTML
|
28710
|
+
Completed 206 Partial Content in 1ms (Views: 1.1ms | ActiveRecord: 0.0ms)
|
28711
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
28712
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
28713
|
+
---------------------------------------------------------------------------------------
|
28714
|
+
ApplicationControllerTest: test_shifts_penultimate_page_to_beginning,_preserving_length
|
28715
|
+
---------------------------------------------------------------------------------------
|
28716
|
+
Processing by ApplicationController#index as HTML
|
28717
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
28718
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
28719
|
+
[1m[36m (0.3ms)[0m [1mbegin transaction[0m
|
28720
|
+
------------------------------------------------------------
|
28721
|
+
ApplicationControllerTest: test_an_acceptable_range_succeeds
|
28722
|
+
------------------------------------------------------------
|
28723
|
+
Processing by ApplicationController#index as HTML
|
28724
|
+
Rendered application/index.html.erb within layouts/application (0.8ms)
|
28725
|
+
Completed 206 Partial Content in 12ms (Views: 11.4ms | ActiveRecord: 0.0ms)
|
28726
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
28727
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
28728
|
+
---------------------------------------------------------------
|
28729
|
+
ApplicationControllerTest: test_an_oversized_range_is_truncated
|
28730
|
+
---------------------------------------------------------------
|
28731
|
+
Processing by ApplicationController#index as HTML
|
28732
|
+
Completed 206 Partial Content in 2ms (Views: 1.5ms | ActiveRecord: 0.0ms)
|
28733
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
28734
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
28735
|
+
----------------------------------------------------------------------
|
28736
|
+
ApplicationControllerTest: test_first_page_range_always_starts_at_zero
|
28737
|
+
----------------------------------------------------------------------
|
28738
|
+
Processing by ApplicationController#index as HTML
|
28739
|
+
Completed 206 Partial Content in 1ms (Views: 1.1ms | ActiveRecord: 0.0ms)
|
28740
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
28741
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
28742
|
+
-------------------------------------------------------------------------------------
|
28743
|
+
ApplicationControllerTest: test_for_from_>_to-from,_next_is_the_right_inverse_of_prev
|
28744
|
+
-------------------------------------------------------------------------------------
|
28745
|
+
Processing by ApplicationController#index as HTML
|
28746
|
+
Completed 206 Partial Content in 1ms (Views: 1.1ms | ActiveRecord: 0.0ms)
|
28747
|
+
Processing by ApplicationController#index as HTML
|
28748
|
+
Completed 206 Partial Content in 1ms (Views: 1.0ms | ActiveRecord: 0.0ms)
|
28749
|
+
Processing by ApplicationController#index as HTML
|
28750
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
28751
|
+
Processing by ApplicationController#index as HTML
|
28752
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
28753
|
+
Processing by ApplicationController#index as HTML
|
28754
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
28755
|
+
Processing by ApplicationController#index as HTML
|
28756
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
28757
|
+
Processing by ApplicationController#index as HTML
|
28758
|
+
Completed 206 Partial Content in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
28759
|
+
Processing by ApplicationController#index as HTML
|
28760
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
28761
|
+
Processing by ApplicationController#index as HTML
|
28762
|
+
Completed 206 Partial Content in 6ms (Views: 5.7ms | ActiveRecord: 0.0ms)
|
28763
|
+
Processing by ApplicationController#index as HTML
|
28764
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
28765
|
+
Processing by ApplicationController#index as HTML
|
28766
|
+
Completed 416 Requested Range Not Satisfiable in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
28767
|
+
Processing by ApplicationController#index as HTML
|
28768
|
+
Completed 206 Partial Content in 1ms (Views: 1.0ms | ActiveRecord: 0.0ms)
|
28769
|
+
Processing by ApplicationController#index as HTML
|
28770
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
28771
|
+
Processing by ApplicationController#index as HTML
|
28772
|
+
Completed 206 Partial Content in 1ms (Views: 1.0ms | ActiveRecord: 0.0ms)
|
28773
|
+
Processing by ApplicationController#index as HTML
|
28774
|
+
Completed 206 Partial Content in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
28775
|
+
Processing by ApplicationController#index as HTML
|
28776
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
28777
|
+
Processing by ApplicationController#index as HTML
|
28778
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
28779
|
+
Processing by ApplicationController#index as HTML
|
28780
|
+
Completed 206 Partial Content in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
28781
|
+
Processing by ApplicationController#index as HTML
|
28782
|
+
Completed 206 Partial Content in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
28783
|
+
Processing by ApplicationController#index as HTML
|
28784
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
28785
|
+
Processing by ApplicationController#index as HTML
|
28786
|
+
Completed 206 Partial Content in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
28787
|
+
Processing by ApplicationController#index as HTML
|
28788
|
+
Completed 206 Partial Content in 1ms (Views: 1.0ms | ActiveRecord: 0.0ms)
|
28789
|
+
Processing by ApplicationController#index as HTML
|
28790
|
+
Completed 206 Partial Content in 1ms (Views: 1.0ms | ActiveRecord: 0.0ms)
|
28791
|
+
Processing by ApplicationController#index as HTML
|
28792
|
+
Completed 206 Partial Content in 2ms (Views: 1.3ms | ActiveRecord: 0.0ms)
|
28793
|
+
Processing by ApplicationController#index as HTML
|
28794
|
+
Completed 206 Partial Content in 1ms (Views: 1.0ms | ActiveRecord: 0.0ms)
|
28795
|
+
Processing by ApplicationController#index as HTML
|
28796
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
28797
|
+
Processing by ApplicationController#index as HTML
|
28798
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
28799
|
+
Processing by ApplicationController#index as HTML
|
28800
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
28801
|
+
Processing by ApplicationController#index as HTML
|
28802
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
28803
|
+
Processing by ApplicationController#index as HTML
|
28804
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
28805
|
+
Processing by ApplicationController#index as HTML
|
28806
|
+
Completed 206 Partial Content in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
28807
|
+
Processing by ApplicationController#index as HTML
|
28808
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
28809
|
+
Processing by ApplicationController#index as HTML
|
28810
|
+
Completed 206 Partial Content in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
28811
|
+
Processing by ApplicationController#index as HTML
|
28812
|
+
Completed 206 Partial Content in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
28813
|
+
Processing by ApplicationController#index as HTML
|
28814
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
28815
|
+
Processing by ApplicationController#index as HTML
|
28816
|
+
Completed 206 Partial Content in 2ms (Views: 1.4ms | ActiveRecord: 0.0ms)
|
28817
|
+
Processing by ApplicationController#index as HTML
|
28818
|
+
Completed 206 Partial Content in 1ms (Views: 1.1ms | ActiveRecord: 0.0ms)
|
28819
|
+
Processing by ApplicationController#index as HTML
|
28820
|
+
Completed 206 Partial Content in 1ms (Views: 1.1ms | ActiveRecord: 0.0ms)
|
28821
|
+
Processing by ApplicationController#index as HTML
|
28822
|
+
Completed 206 Partial Content in 1ms (Views: 1.0ms | ActiveRecord: 0.0ms)
|
28823
|
+
Processing by ApplicationController#index as HTML
|
28824
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
28825
|
+
Processing by ApplicationController#index as HTML
|
28826
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
28827
|
+
Processing by ApplicationController#index as HTML
|
28828
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
28829
|
+
Processing by ApplicationController#index as HTML
|
28830
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
28831
|
+
Processing by ApplicationController#index as HTML
|
28832
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
28833
|
+
Processing by ApplicationController#index as HTML
|
28834
|
+
Completed 206 Partial Content in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
28835
|
+
Processing by ApplicationController#index as HTML
|
28836
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
28837
|
+
Processing by ApplicationController#index as HTML
|
28838
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
28839
|
+
Processing by ApplicationController#index as HTML
|
28840
|
+
Completed 206 Partial Content in 3ms (Views: 1.3ms | ActiveRecord: 0.0ms)
|
28841
|
+
Processing by ApplicationController#index as HTML
|
28842
|
+
Completed 416 Requested Range Not Satisfiable in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
28843
|
+
Processing by ApplicationController#index as HTML
|
28844
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
28845
|
+
Processing by ApplicationController#index as HTML
|
28846
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
28847
|
+
Processing by ApplicationController#index as HTML
|
28848
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
28849
|
+
Processing by ApplicationController#index as HTML
|
28850
|
+
Completed 206 Partial Content in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
28851
|
+
Processing by ApplicationController#index as HTML
|
28852
|
+
Completed 206 Partial Content in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
28853
|
+
Processing by ApplicationController#index as HTML
|
28854
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
28855
|
+
Processing by ApplicationController#index as HTML
|
28856
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
28857
|
+
Processing by ApplicationController#index as HTML
|
28858
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
28859
|
+
Processing by ApplicationController#index as HTML
|
28860
|
+
Completed 206 Partial Content in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
28861
|
+
Processing by ApplicationController#index as HTML
|
28862
|
+
Completed 206 Partial Content in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
28863
|
+
Processing by ApplicationController#index as HTML
|
28864
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
28865
|
+
Processing by ApplicationController#index as HTML
|
28866
|
+
Completed 206 Partial Content in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
28867
|
+
Processing by ApplicationController#index as HTML
|
28868
|
+
Completed 206 Partial Content in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
28869
|
+
Processing by ApplicationController#index as HTML
|
28870
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
28871
|
+
Processing by ApplicationController#index as HTML
|
28872
|
+
Completed 206 Partial Content in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
28873
|
+
Processing by ApplicationController#index as HTML
|
28874
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
28875
|
+
Processing by ApplicationController#index as HTML
|
28876
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
28877
|
+
Processing by ApplicationController#index as HTML
|
28878
|
+
Completed 206 Partial Content in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
28879
|
+
Processing by ApplicationController#index as HTML
|
28880
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
28881
|
+
Processing by ApplicationController#index as HTML
|
28882
|
+
Completed 206 Partial Content in 2ms (Views: 1.4ms | ActiveRecord: 0.0ms)
|
28883
|
+
Processing by ApplicationController#index as HTML
|
28884
|
+
Completed 206 Partial Content in 1ms (Views: 1.0ms | ActiveRecord: 0.0ms)
|
28885
|
+
Processing by ApplicationController#index as HTML
|
28886
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
28887
|
+
Processing by ApplicationController#index as HTML
|
28888
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
28889
|
+
Processing by ApplicationController#index as HTML
|
28890
|
+
Completed 206 Partial Content in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
28891
|
+
Processing by ApplicationController#index as HTML
|
28892
|
+
Completed 206 Partial Content in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
28893
|
+
Processing by ApplicationController#index as HTML
|
28894
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
28895
|
+
Processing by ApplicationController#index as HTML
|
28896
|
+
Completed 416 Requested Range Not Satisfiable in 2ms (Views: 1.6ms | ActiveRecord: 0.0ms)
|
28897
|
+
Processing by ApplicationController#index as HTML
|
28898
|
+
Completed 206 Partial Content in 2ms (Views: 1.7ms | ActiveRecord: 0.0ms)
|
28899
|
+
Processing by ApplicationController#index as HTML
|
28900
|
+
Completed 206 Partial Content in 2ms (Views: 1.6ms | ActiveRecord: 0.0ms)
|
28901
|
+
Processing by ApplicationController#index as HTML
|
28902
|
+
Completed 206 Partial Content in 2ms (Views: 1.1ms | ActiveRecord: 0.0ms)
|
28903
|
+
Processing by ApplicationController#index as HTML
|
28904
|
+
Completed 206 Partial Content in 4ms (Views: 3.2ms | ActiveRecord: 0.0ms)
|
28905
|
+
Processing by ApplicationController#index as HTML
|
28906
|
+
Completed 206 Partial Content in 1ms (Views: 1.0ms | ActiveRecord: 0.0ms)
|
28907
|
+
Processing by ApplicationController#index as HTML
|
28908
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
28909
|
+
Processing by ApplicationController#index as HTML
|
28910
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
28911
|
+
Processing by ApplicationController#index as HTML
|
28912
|
+
Completed 206 Partial Content in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
28913
|
+
Processing by ApplicationController#index as HTML
|
28914
|
+
Completed 206 Partial Content in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
28915
|
+
Processing by ApplicationController#index as HTML
|
28916
|
+
Completed 206 Partial Content in 1ms (Views: 1.0ms | ActiveRecord: 0.0ms)
|
28917
|
+
Processing by ApplicationController#index as HTML
|
28918
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
28919
|
+
Processing by ApplicationController#index as HTML
|
28920
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
28921
|
+
Processing by ApplicationController#index as HTML
|
28922
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
28923
|
+
Processing by ApplicationController#index as HTML
|
28924
|
+
Completed 206 Partial Content in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
28925
|
+
Processing by ApplicationController#index as HTML
|
28926
|
+
Completed 206 Partial Content in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
28927
|
+
Processing by ApplicationController#index as HTML
|
28928
|
+
Completed 416 Requested Range Not Satisfiable in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
28929
|
+
Processing by ApplicationController#index as HTML
|
28930
|
+
Completed 206 Partial Content in 1ms (Views: 1.0ms | ActiveRecord: 0.0ms)
|
28931
|
+
Processing by ApplicationController#index as HTML
|
28932
|
+
Completed 206 Partial Content in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
28933
|
+
Processing by ApplicationController#index as HTML
|
28934
|
+
Completed 200 OK in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
28935
|
+
Processing by ApplicationController#index as HTML
|
28936
|
+
Completed 206 Partial Content in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
28937
|
+
Processing by ApplicationController#index as HTML
|
28938
|
+
Completed 206 Partial Content in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
28939
|
+
Processing by ApplicationController#index as HTML
|
28940
|
+
Completed 206 Partial Content in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
28941
|
+
Processing by ApplicationController#index as HTML
|
28942
|
+
Completed 206 Partial Content in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
28943
|
+
Processing by ApplicationController#index as HTML
|
28944
|
+
Completed 206 Partial Content in 1ms (Views: 1.0ms | ActiveRecord: 0.0ms)
|
28945
|
+
Processing by ApplicationController#index as HTML
|
28946
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
28947
|
+
Processing by ApplicationController#index as HTML
|
28948
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
28949
|
+
Processing by ApplicationController#index as HTML
|
28950
|
+
Completed 206 Partial Content in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
28951
|
+
Processing by ApplicationController#index as HTML
|
28952
|
+
Completed 206 Partial Content in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
28953
|
+
Processing by ApplicationController#index as HTML
|
28954
|
+
Completed 206 Partial Content in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
28955
|
+
Processing by ApplicationController#index as HTML
|
28956
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
28957
|
+
Processing by ApplicationController#index as HTML
|
28958
|
+
Completed 206 Partial Content in 2ms (Views: 1.2ms | ActiveRecord: 0.0ms)
|
28959
|
+
Processing by ApplicationController#index as HTML
|
28960
|
+
Completed 200 OK in 5ms (Views: 1.9ms | ActiveRecord: 0.0ms)
|
28961
|
+
Processing by ApplicationController#index as HTML
|
28962
|
+
Completed 206 Partial Content in 2ms (Views: 1.1ms | ActiveRecord: 0.0ms)
|
28963
|
+
Processing by ApplicationController#index as HTML
|
28964
|
+
Completed 206 Partial Content in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
28965
|
+
Processing by ApplicationController#index as HTML
|
28966
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
28967
|
+
Processing by ApplicationController#index as HTML
|
28968
|
+
Completed 206 Partial Content in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
28969
|
+
Processing by ApplicationController#index as HTML
|
28970
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
28971
|
+
Processing by ApplicationController#index as HTML
|
28972
|
+
Completed 206 Partial Content in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
28973
|
+
Processing by ApplicationController#index as HTML
|
28974
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
28975
|
+
Processing by ApplicationController#index as HTML
|
28976
|
+
Completed 206 Partial Content in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
28977
|
+
Processing by ApplicationController#index as HTML
|
28978
|
+
Completed 200 OK in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
28979
|
+
Processing by ApplicationController#index as HTML
|
28980
|
+
Completed 206 Partial Content in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
28981
|
+
Processing by ApplicationController#index as HTML
|
28982
|
+
Completed 206 Partial Content in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
28983
|
+
Processing by ApplicationController#index as HTML
|
28984
|
+
Completed 200 OK in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
28985
|
+
Processing by ApplicationController#index as HTML
|
28986
|
+
Completed 200 OK in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
28987
|
+
Processing by ApplicationController#index as HTML
|
28988
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
28989
|
+
Processing by ApplicationController#index as HTML
|
28990
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
28991
|
+
Processing by ApplicationController#index as HTML
|
28992
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
28993
|
+
Processing by ApplicationController#index as HTML
|
28994
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
28995
|
+
Processing by ApplicationController#index as HTML
|
28996
|
+
Completed 206 Partial Content in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
28997
|
+
Processing by ApplicationController#index as HTML
|
28998
|
+
Completed 206 Partial Content in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
28999
|
+
Processing by ApplicationController#index as HTML
|
29000
|
+
Completed 200 OK in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
29001
|
+
Processing by ApplicationController#index as HTML
|
29002
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
29003
|
+
Processing by ApplicationController#index as HTML
|
29004
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
29005
|
+
Processing by ApplicationController#index as HTML
|
29006
|
+
Completed 206 Partial Content in 2ms (Views: 1.0ms | ActiveRecord: 0.0ms)
|
29007
|
+
Processing by ApplicationController#index as HTML
|
29008
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
29009
|
+
Processing by ApplicationController#index as HTML
|
29010
|
+
Completed 206 Partial Content in 4ms (Views: 1.3ms | ActiveRecord: 0.0ms)
|
29011
|
+
Processing by ApplicationController#index as HTML
|
29012
|
+
Completed 206 Partial Content in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
29013
|
+
Processing by ApplicationController#index as HTML
|
29014
|
+
Completed 206 Partial Content in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
29015
|
+
Processing by ApplicationController#index as HTML
|
29016
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
29017
|
+
Processing by ApplicationController#index as HTML
|
29018
|
+
Completed 206 Partial Content in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
29019
|
+
Processing by ApplicationController#index as HTML
|
29020
|
+
Completed 206 Partial Content in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
29021
|
+
Processing by ApplicationController#index as HTML
|
29022
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
29023
|
+
Processing by ApplicationController#index as HTML
|
29024
|
+
Completed 206 Partial Content in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
29025
|
+
Processing by ApplicationController#index as HTML
|
29026
|
+
Completed 200 OK in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
29027
|
+
Processing by ApplicationController#index as HTML
|
29028
|
+
Completed 206 Partial Content in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
29029
|
+
Processing by ApplicationController#index as HTML
|
29030
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
29031
|
+
Processing by ApplicationController#index as HTML
|
29032
|
+
Completed 206 Partial Content in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
29033
|
+
Processing by ApplicationController#index as HTML
|
29034
|
+
Completed 200 OK in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
29035
|
+
Processing by ApplicationController#index as HTML
|
29036
|
+
Completed 206 Partial Content in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
29037
|
+
Processing by ApplicationController#index as HTML
|
29038
|
+
Completed 206 Partial Content in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
29039
|
+
Processing by ApplicationController#index as HTML
|
29040
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
29041
|
+
Processing by ApplicationController#index as HTML
|
29042
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
29043
|
+
Processing by ApplicationController#index as HTML
|
29044
|
+
Completed 200 OK in 2ms (Views: 1.2ms | ActiveRecord: 0.0ms)
|
29045
|
+
Processing by ApplicationController#index as HTML
|
29046
|
+
Completed 206 Partial Content in 2ms (Views: 1.2ms | ActiveRecord: 0.0ms)
|
29047
|
+
Processing by ApplicationController#index as HTML
|
29048
|
+
Completed 206 Partial Content in 2ms (Views: 1.0ms | ActiveRecord: 0.0ms)
|
29049
|
+
Processing by ApplicationController#index as HTML
|
29050
|
+
Completed 206 Partial Content in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
29051
|
+
Processing by ApplicationController#index as HTML
|
29052
|
+
Completed 206 Partial Content in 2ms (Views: 1.0ms | ActiveRecord: 0.0ms)
|
29053
|
+
Processing by ApplicationController#index as HTML
|
29054
|
+
Completed 206 Partial Content in 4ms (Views: 3.1ms | ActiveRecord: 0.0ms)
|
29055
|
+
Processing by ApplicationController#index as HTML
|
29056
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
29057
|
+
Processing by ApplicationController#index as HTML
|
29058
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
29059
|
+
Processing by ApplicationController#index as HTML
|
29060
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
29061
|
+
Processing by ApplicationController#index as HTML
|
29062
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
29063
|
+
Processing by ApplicationController#index as HTML
|
29064
|
+
Completed 206 Partial Content in 2ms (Views: 1.2ms | ActiveRecord: 0.0ms)
|
29065
|
+
Processing by ApplicationController#index as HTML
|
29066
|
+
Completed 206 Partial Content in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
29067
|
+
Processing by ApplicationController#index as HTML
|
29068
|
+
Completed 206 Partial Content in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
29069
|
+
Processing by ApplicationController#index as HTML
|
29070
|
+
Completed 206 Partial Content in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
29071
|
+
Processing by ApplicationController#index as HTML
|
29072
|
+
Completed 206 Partial Content in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
29073
|
+
Processing by ApplicationController#index as HTML
|
29074
|
+
Completed 206 Partial Content in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
29075
|
+
Processing by ApplicationController#index as HTML
|
29076
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
29077
|
+
Processing by ApplicationController#index as HTML
|
29078
|
+
Completed 206 Partial Content in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
29079
|
+
Processing by ApplicationController#index as HTML
|
29080
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
29081
|
+
Processing by ApplicationController#index as HTML
|
29082
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
29083
|
+
Processing by ApplicationController#index as HTML
|
29084
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
29085
|
+
Processing by ApplicationController#index as HTML
|
29086
|
+
Completed 200 OK in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
29087
|
+
Processing by ApplicationController#index as HTML
|
29088
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
29089
|
+
Processing by ApplicationController#index as HTML
|
29090
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
29091
|
+
Processing by ApplicationController#index as HTML
|
29092
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
29093
|
+
Processing by ApplicationController#index as HTML
|
29094
|
+
Completed 206 Partial Content in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
29095
|
+
Processing by ApplicationController#index as HTML
|
29096
|
+
Completed 206 Partial Content in 4ms (Views: 1.2ms | ActiveRecord: 0.0ms)
|
29097
|
+
Processing by ApplicationController#index as HTML
|
29098
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
29099
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
29100
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
29101
|
+
--------------------------------------------------------------------------------------
|
29102
|
+
ApplicationControllerTest: test_handles_ranges_beyond_collection_length_via_truncation
|
29103
|
+
--------------------------------------------------------------------------------------
|
29104
|
+
Processing by ApplicationController#index as HTML
|
29105
|
+
Completed 206 Partial Content in 1ms (Views: 1.0ms | ActiveRecord: 0.0ms)
|
29106
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
29107
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
29108
|
+
-----------------------------------------------------
|
29109
|
+
ApplicationControllerTest: test_includes_link_headers
|
29110
|
+
-----------------------------------------------------
|
29111
|
+
Processing by ApplicationController#index as HTML
|
29112
|
+
Completed 206 Partial Content in 1ms (Views: 1.0ms | ActiveRecord: 0.0ms)
|
29113
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
29114
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
29115
|
+
----------------------------------------------------------------------
|
29116
|
+
ApplicationControllerTest: test_infinite_collections_have_no_last_page
|
29117
|
+
----------------------------------------------------------------------
|
29118
|
+
Processing by ApplicationController#index as HTML
|
29119
|
+
Completed 206 Partial Content in 1ms (Views: 1.0ms | ActiveRecord: 0.0ms)
|
29120
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
29121
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
29122
|
+
-------------------------------------------------------------------------------
|
29123
|
+
ApplicationControllerTest: test_last_page_range_can_extend_beyond_the_last_item
|
29124
|
+
-------------------------------------------------------------------------------
|
29125
|
+
Processing by ApplicationController#index as HTML
|
29126
|
+
Completed 206 Partial Content in 2ms (Views: 1.4ms | ActiveRecord: 0.0ms)
|
29127
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
29128
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
29129
|
+
------------------------------------------------------------------------------------
|
29130
|
+
ApplicationControllerTest: test_next_link_with_omitted_end_number_shifts_by_max_page
|
29131
|
+
------------------------------------------------------------------------------------
|
29132
|
+
Processing by ApplicationController#index as HTML
|
29133
|
+
Completed 206 Partial Content in 1ms (Views: 1.0ms | ActiveRecord: 0.0ms)
|
29134
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
29135
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
29136
|
+
---------------------------------------------------------------------------
|
29137
|
+
ApplicationControllerTest: test_next_page_range_can_extend_beyond_last_item
|
29138
|
+
---------------------------------------------------------------------------
|
29139
|
+
Processing by ApplicationController#index as HTML
|
29140
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
29141
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
29142
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
29143
|
+
----------------------------------------------------------------
|
29144
|
+
ApplicationControllerTest: test_omits_next_and_last_links_at_end
|
29145
|
+
----------------------------------------------------------------
|
29146
|
+
Processing by ApplicationController#index as HTML
|
29147
|
+
Completed 206 Partial Content in 1ms (Views: 1.1ms | ActiveRecord: 0.0ms)
|
29148
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
29149
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
29150
|
+
-------------------------------------------------------------------
|
29151
|
+
ApplicationControllerTest: test_omits_prev_and_first_links_at_start
|
29152
|
+
-------------------------------------------------------------------
|
29153
|
+
Processing by ApplicationController#index as HTML
|
29154
|
+
Completed 206 Partial Content in 1ms (Views: 1.0ms | ActiveRecord: 0.0ms)
|
29155
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
29156
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
29157
|
+
---------------------------------------------------------------------------
|
29158
|
+
ApplicationControllerTest: test_omitting_the_end_number_asks_for_everything
|
29159
|
+
---------------------------------------------------------------------------
|
29160
|
+
Processing by ApplicationController#index as HTML
|
29161
|
+
Completed 206 Partial Content in 1ms (Views: 1.0ms | ActiveRecord: 0.0ms)
|
29162
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
29163
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
29164
|
+
-------------------------------------------------------------------------------
|
29165
|
+
ApplicationControllerTest: test_omitting_the_end_number_omits_in_first_link_too
|
29166
|
+
-------------------------------------------------------------------------------
|
29167
|
+
Processing by ApplicationController#index as HTML
|
29168
|
+
Completed 206 Partial Content in 1ms (Views: 1.0ms | ActiveRecord: 0.0ms)
|
29169
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
29170
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
29171
|
+
---------------------------------------------------------------------
|
29172
|
+
ApplicationControllerTest: test_passes_along_exceptional_status_codes
|
29173
|
+
---------------------------------------------------------------------
|
29174
|
+
Processing by ApplicationController#index as HTML
|
29175
|
+
Completed 100 Continue in 1ms (Views: 1.1ms | ActiveRecord: 0.0ms)
|
29176
|
+
Processing by ApplicationController#index as HTML
|
29177
|
+
Completed 301 Moved Permanently in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
29178
|
+
Processing by ApplicationController#index as HTML
|
29179
|
+
Completed 404 Not Found in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
29180
|
+
Processing by ApplicationController#index as HTML
|
29181
|
+
Completed 500 Internal Server Error in 1ms (Views: 1.1ms | ActiveRecord: 0.0ms)
|
29182
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
29183
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
29184
|
+
--------------------------------------------------------------------------
|
29185
|
+
ApplicationControllerTest: test_preserves_query_parameters_in_link_headers
|
29186
|
+
--------------------------------------------------------------------------
|
29187
|
+
Processing by ApplicationController#index as HTML
|
29188
|
+
Parameters: {"foo"=>"bar"}
|
29189
|
+
Completed 206 Partial Content in 1ms (Views: 1.1ms | ActiveRecord: 0.0ms)
|
29190
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
29191
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
29192
|
+
----------------------------------------------------------------
|
29193
|
+
ApplicationControllerTest: test_prev_is_the_left_inverse_of_next
|
29194
|
+
----------------------------------------------------------------
|
29195
|
+
Processing by ApplicationController#index as HTML
|
29196
|
+
Completed 206 Partial Content in 1ms (Views: 1.2ms | ActiveRecord: 0.0ms)
|
29197
|
+
Processing by ApplicationController#index as HTML
|
29198
|
+
Completed 206 Partial Content in 1ms (Views: 1.0ms | ActiveRecord: 0.0ms)
|
29199
|
+
Processing by ApplicationController#index as HTML
|
29200
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
29201
|
+
Processing by ApplicationController#index as HTML
|
29202
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
29203
|
+
Processing by ApplicationController#index as HTML
|
29204
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
29205
|
+
Processing by ApplicationController#index as HTML
|
29206
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
29207
|
+
Processing by ApplicationController#index as HTML
|
29208
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
29209
|
+
Processing by ApplicationController#index as HTML
|
29210
|
+
Completed 206 Partial Content in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
29211
|
+
Processing by ApplicationController#index as HTML
|
29212
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
29213
|
+
Processing by ApplicationController#index as HTML
|
29214
|
+
Completed 206 Partial Content in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
29215
|
+
Processing by ApplicationController#index as HTML
|
29216
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
29217
|
+
Processing by ApplicationController#index as HTML
|
29218
|
+
Completed 206 Partial Content in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
29219
|
+
Processing by ApplicationController#index as HTML
|
29220
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
29221
|
+
Processing by ApplicationController#index as HTML
|
29222
|
+
Completed 206 Partial Content in 1ms (Views: 1.2ms | ActiveRecord: 0.0ms)
|
29223
|
+
Processing by ApplicationController#index as HTML
|
29224
|
+
Completed 206 Partial Content in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
29225
|
+
Processing by ApplicationController#index as HTML
|
29226
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
29227
|
+
Processing by ApplicationController#index as HTML
|
29228
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
29229
|
+
Processing by ApplicationController#index as HTML
|
29230
|
+
Completed 206 Partial Content in 1ms (Views: 1.0ms | ActiveRecord: 0.0ms)
|
29231
|
+
Processing by ApplicationController#index as HTML
|
29232
|
+
Completed 206 Partial Content in 2ms (Views: 1.3ms | ActiveRecord: 0.0ms)
|
29233
|
+
Processing by ApplicationController#index as HTML
|
29234
|
+
Completed 206 Partial Content in 2ms (Views: 1.2ms | ActiveRecord: 0.0ms)
|
29235
|
+
Processing by ApplicationController#index as HTML
|
29236
|
+
Completed 206 Partial Content in 1ms (Views: 1.0ms | ActiveRecord: 0.0ms)
|
29237
|
+
Processing by ApplicationController#index as HTML
|
29238
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
29239
|
+
Processing by ApplicationController#index as HTML
|
29240
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
29241
|
+
Processing by ApplicationController#index as HTML
|
29242
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
29243
|
+
Processing by ApplicationController#index as HTML
|
29244
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
29245
|
+
Processing by ApplicationController#index as HTML
|
29246
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
29247
|
+
Processing by ApplicationController#index as HTML
|
29248
|
+
Completed 206 Partial Content in 1ms (Views: 1.0ms | ActiveRecord: 0.0ms)
|
29249
|
+
Processing by ApplicationController#index as HTML
|
29250
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
29251
|
+
Processing by ApplicationController#index as HTML
|
29252
|
+
Completed 200 OK in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
29253
|
+
Processing by ApplicationController#index as HTML
|
29254
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
29255
|
+
Processing by ApplicationController#index as HTML
|
29256
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
29257
|
+
Processing by ApplicationController#index as HTML
|
29258
|
+
Completed 200 OK in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
29259
|
+
Processing by ApplicationController#index as HTML
|
29260
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
29261
|
+
Processing by ApplicationController#index as HTML
|
29262
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
29263
|
+
Processing by ApplicationController#index as HTML
|
29264
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
29265
|
+
Processing by ApplicationController#index as HTML
|
29266
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
29267
|
+
Processing by ApplicationController#index as HTML
|
29268
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
29269
|
+
Processing by ApplicationController#index as HTML
|
29270
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
29271
|
+
Processing by ApplicationController#index as HTML
|
29272
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
29273
|
+
Processing by ApplicationController#index as HTML
|
29274
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
29275
|
+
Processing by ApplicationController#index as HTML
|
29276
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
29277
|
+
Processing by ApplicationController#index as HTML
|
29278
|
+
Completed 206 Partial Content in 1ms (Views: 1.0ms | ActiveRecord: 0.0ms)
|
29279
|
+
Processing by ApplicationController#index as HTML
|
29280
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
29281
|
+
Processing by ApplicationController#index as HTML
|
29282
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
29283
|
+
Processing by ApplicationController#index as HTML
|
29284
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
29285
|
+
Processing by ApplicationController#index as HTML
|
29286
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
29287
|
+
Processing by ApplicationController#index as HTML
|
29288
|
+
Completed 206 Partial Content in 2ms (Views: 1.3ms | ActiveRecord: 0.0ms)
|
29289
|
+
Processing by ApplicationController#index as HTML
|
29290
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
29291
|
+
Processing by ApplicationController#index as HTML
|
29292
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
29293
|
+
Processing by ApplicationController#index as HTML
|
29294
|
+
Completed 206 Partial Content in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
29295
|
+
Processing by ApplicationController#index as HTML
|
29296
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
29297
|
+
Processing by ApplicationController#index as HTML
|
29298
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
29299
|
+
Processing by ApplicationController#index as HTML
|
29300
|
+
Completed 206 Partial Content in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
29301
|
+
Processing by ApplicationController#index as HTML
|
29302
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
29303
|
+
Processing by ApplicationController#index as HTML
|
29304
|
+
Completed 206 Partial Content in 1ms (Views: 1.0ms | ActiveRecord: 0.0ms)
|
29305
|
+
Processing by ApplicationController#index as HTML
|
29306
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
29307
|
+
Processing by ApplicationController#index as HTML
|
29308
|
+
Completed 206 Partial Content in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
29309
|
+
Processing by ApplicationController#index as HTML
|
29310
|
+
Completed 206 Partial Content in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
29311
|
+
Processing by ApplicationController#index as HTML
|
29312
|
+
Completed 206 Partial Content in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
29313
|
+
Processing by ApplicationController#index as HTML
|
29314
|
+
Completed 206 Partial Content in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
29315
|
+
Processing by ApplicationController#index as HTML
|
29316
|
+
Completed 206 Partial Content in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
29317
|
+
Processing by ApplicationController#index as HTML
|
29318
|
+
Completed 206 Partial Content in 1ms (Views: 1.0ms | ActiveRecord: 0.0ms)
|
29319
|
+
Processing by ApplicationController#index as HTML
|
29320
|
+
Completed 206 Partial Content in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
29321
|
+
Processing by ApplicationController#index as HTML
|
29322
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
29323
|
+
Processing by ApplicationController#index as HTML
|
29324
|
+
Completed 206 Partial Content in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
29325
|
+
Processing by ApplicationController#index as HTML
|
29326
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
29327
|
+
Processing by ApplicationController#index as HTML
|
29328
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
29329
|
+
Processing by ApplicationController#index as HTML
|
29330
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
29331
|
+
Processing by ApplicationController#index as HTML
|
29332
|
+
Completed 206 Partial Content in 1ms (Views: 1.0ms | ActiveRecord: 0.0ms)
|
29333
|
+
Processing by ApplicationController#index as HTML
|
29334
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
29335
|
+
Processing by ApplicationController#index as HTML
|
29336
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
29337
|
+
Processing by ApplicationController#index as HTML
|
29338
|
+
Completed 206 Partial Content in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
29339
|
+
Processing by ApplicationController#index as HTML
|
29340
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
29341
|
+
Processing by ApplicationController#index as HTML
|
29342
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
29343
|
+
Processing by ApplicationController#index as HTML
|
29344
|
+
Completed 206 Partial Content in 2ms (Views: 1.2ms | ActiveRecord: 0.0ms)
|
29345
|
+
Processing by ApplicationController#index as HTML
|
29346
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
29347
|
+
Processing by ApplicationController#index as HTML
|
29348
|
+
Completed 206 Partial Content in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
29349
|
+
Processing by ApplicationController#index as HTML
|
29350
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
29351
|
+
Processing by ApplicationController#index as HTML
|
29352
|
+
Completed 206 Partial Content in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
29353
|
+
Processing by ApplicationController#index as HTML
|
29354
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
29355
|
+
Processing by ApplicationController#index as HTML
|
29356
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
29357
|
+
Processing by ApplicationController#index as HTML
|
29358
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
29359
|
+
Processing by ApplicationController#index as HTML
|
29360
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
29361
|
+
Processing by ApplicationController#index as HTML
|
29362
|
+
Completed 206 Partial Content in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
29363
|
+
Processing by ApplicationController#index as HTML
|
29364
|
+
Completed 200 OK in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
29365
|
+
Processing by ApplicationController#index as HTML
|
29366
|
+
Completed 206 Partial Content in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
29367
|
+
Processing by ApplicationController#index as HTML
|
29368
|
+
Completed 206 Partial Content in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
29369
|
+
Processing by ApplicationController#index as HTML
|
29370
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
29371
|
+
Processing by ApplicationController#index as HTML
|
29372
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
29373
|
+
Processing by ApplicationController#index as HTML
|
29374
|
+
Completed 206 Partial Content in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
29375
|
+
Processing by ApplicationController#index as HTML
|
29376
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
29377
|
+
Processing by ApplicationController#index as HTML
|
29378
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
29379
|
+
Processing by ApplicationController#index as HTML
|
29380
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
29381
|
+
Processing by ApplicationController#index as HTML
|
29382
|
+
Completed 206 Partial Content in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
29383
|
+
Processing by ApplicationController#index as HTML
|
29384
|
+
Completed 206 Partial Content in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
29385
|
+
Processing by ApplicationController#index as HTML
|
29386
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
29387
|
+
Processing by ApplicationController#index as HTML
|
29388
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
29389
|
+
Processing by ApplicationController#index as HTML
|
29390
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
29391
|
+
Processing by ApplicationController#index as HTML
|
29392
|
+
Completed 206 Partial Content in 3ms (Views: 2.6ms | ActiveRecord: 0.0ms)
|
29393
|
+
Processing by ApplicationController#index as HTML
|
29394
|
+
Completed 206 Partial Content in 2ms (Views: 1.0ms | ActiveRecord: 0.0ms)
|
29395
|
+
Processing by ApplicationController#index as HTML
|
29396
|
+
Completed 206 Partial Content in 1ms (Views: 1.1ms | ActiveRecord: 0.0ms)
|
29397
|
+
Processing by ApplicationController#index as HTML
|
29398
|
+
Completed 206 Partial Content in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
29399
|
+
Processing by ApplicationController#index as HTML
|
29400
|
+
Completed 206 Partial Content in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
29401
|
+
Processing by ApplicationController#index as HTML
|
29402
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
29403
|
+
Processing by ApplicationController#index as HTML
|
29404
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
29405
|
+
Processing by ApplicationController#index as HTML
|
29406
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
29407
|
+
Processing by ApplicationController#index as HTML
|
29408
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
29409
|
+
Processing by ApplicationController#index as HTML
|
29410
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
29411
|
+
Processing by ApplicationController#index as HTML
|
29412
|
+
Completed 206 Partial Content in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
29413
|
+
Processing by ApplicationController#index as HTML
|
29414
|
+
Completed 206 Partial Content in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
29415
|
+
Processing by ApplicationController#index as HTML
|
29416
|
+
Completed 206 Partial Content in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
29417
|
+
Processing by ApplicationController#index as HTML
|
29418
|
+
Completed 206 Partial Content in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
29419
|
+
Processing by ApplicationController#index as HTML
|
29420
|
+
Completed 206 Partial Content in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
29421
|
+
Processing by ApplicationController#index as HTML
|
29422
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
29423
|
+
Processing by ApplicationController#index as HTML
|
29424
|
+
Completed 206 Partial Content in 1ms (Views: 1.0ms | ActiveRecord: 0.0ms)
|
29425
|
+
Processing by ApplicationController#index as HTML
|
29426
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
29427
|
+
Processing by ApplicationController#index as HTML
|
29428
|
+
Completed 206 Partial Content in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
29429
|
+
Processing by ApplicationController#index as HTML
|
29430
|
+
Completed 206 Partial Content in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
29431
|
+
Processing by ApplicationController#index as HTML
|
29432
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
29433
|
+
Processing by ApplicationController#index as HTML
|
29434
|
+
Completed 206 Partial Content in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
29435
|
+
Processing by ApplicationController#index as HTML
|
29436
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
29437
|
+
Processing by ApplicationController#index as HTML
|
29438
|
+
Completed 206 Partial Content in 3ms (Views: 1.2ms | ActiveRecord: 0.0ms)
|
29439
|
+
Processing by ApplicationController#index as HTML
|
29440
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
29441
|
+
Processing by ApplicationController#index as HTML
|
29442
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
29443
|
+
Processing by ApplicationController#index as HTML
|
29444
|
+
Completed 200 OK in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
29445
|
+
Processing by ApplicationController#index as HTML
|
29446
|
+
Completed 200 OK in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
29447
|
+
Processing by ApplicationController#index as HTML
|
29448
|
+
Completed 206 Partial Content in 1ms (Views: 1.0ms | ActiveRecord: 0.0ms)
|
29449
|
+
Processing by ApplicationController#index as HTML
|
29450
|
+
Completed 206 Partial Content in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
29451
|
+
Processing by ApplicationController#index as HTML
|
29452
|
+
Completed 200 OK in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
29453
|
+
Processing by ApplicationController#index as HTML
|
29454
|
+
Completed 206 Partial Content in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
29455
|
+
Processing by ApplicationController#index as HTML
|
29456
|
+
Completed 206 Partial Content in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
29457
|
+
Processing by ApplicationController#index as HTML
|
29458
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
29459
|
+
Processing by ApplicationController#index as HTML
|
29460
|
+
Completed 206 Partial Content in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
29461
|
+
Processing by ApplicationController#index as HTML
|
29462
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
29463
|
+
Processing by ApplicationController#index as HTML
|
29464
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
29465
|
+
Processing by ApplicationController#index as HTML
|
29466
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
29467
|
+
Processing by ApplicationController#index as HTML
|
29468
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
29469
|
+
Processing by ApplicationController#index as HTML
|
29470
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
29471
|
+
Processing by ApplicationController#index as HTML
|
29472
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
29473
|
+
Processing by ApplicationController#index as HTML
|
29474
|
+
Completed 206 Partial Content in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
29475
|
+
Processing by ApplicationController#index as HTML
|
29476
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
29477
|
+
Processing by ApplicationController#index as HTML
|
29478
|
+
Completed 206 Partial Content in 4ms (Views: 1.2ms | ActiveRecord: 0.0ms)
|
29479
|
+
Processing by ApplicationController#index as HTML
|
29480
|
+
Completed 206 Partial Content in 2ms (Views: 1.1ms | ActiveRecord: 0.0ms)
|
29481
|
+
Processing by ApplicationController#index as HTML
|
29482
|
+
Completed 206 Partial Content in 2ms (Views: 1.1ms | ActiveRecord: 0.0ms)
|
29483
|
+
Processing by ApplicationController#index as HTML
|
29484
|
+
Completed 200 OK in 2ms (Views: 1.2ms | ActiveRecord: 0.0ms)
|
29485
|
+
Processing by ApplicationController#index as HTML
|
29486
|
+
Completed 200 OK in 2ms (Views: 1.1ms | ActiveRecord: 0.0ms)
|
29487
|
+
Processing by ApplicationController#index as HTML
|
29488
|
+
Completed 206 Partial Content in 2ms (Views: 1.1ms | ActiveRecord: 0.0ms)
|
29489
|
+
Processing by ApplicationController#index as HTML
|
29490
|
+
Completed 206 Partial Content in 2ms (Views: 1.1ms | ActiveRecord: 0.0ms)
|
29491
|
+
Processing by ApplicationController#index as HTML
|
29492
|
+
Completed 206 Partial Content in 2ms (Views: 1.1ms | ActiveRecord: 0.0ms)
|
29493
|
+
Processing by ApplicationController#index as HTML
|
29494
|
+
Completed 206 Partial Content in 3ms (Views: 1.5ms | ActiveRecord: 0.0ms)
|
29495
|
+
Processing by ApplicationController#index as HTML
|
29496
|
+
Completed 206 Partial Content in 2ms (Views: 1.3ms | ActiveRecord: 0.0ms)
|
29497
|
+
Processing by ApplicationController#index as HTML
|
29498
|
+
Completed 206 Partial Content in 2ms (Views: 1.3ms | ActiveRecord: 0.0ms)
|
29499
|
+
Processing by ApplicationController#index as HTML
|
29500
|
+
Completed 206 Partial Content in 2ms (Views: 1.4ms | ActiveRecord: 0.0ms)
|
29501
|
+
Processing by ApplicationController#index as HTML
|
29502
|
+
Completed 206 Partial Content in 2ms (Views: 1.5ms | ActiveRecord: 0.0ms)
|
29503
|
+
Processing by ApplicationController#index as HTML
|
29504
|
+
Completed 206 Partial Content in 2ms (Views: 1.5ms | ActiveRecord: 0.0ms)
|
29505
|
+
Processing by ApplicationController#index as HTML
|
29506
|
+
Completed 206 Partial Content in 2ms (Views: 1.5ms | ActiveRecord: 0.0ms)
|
29507
|
+
Processing by ApplicationController#index as HTML
|
29508
|
+
Completed 200 OK in 2ms (Views: 1.6ms | ActiveRecord: 0.0ms)
|
29509
|
+
Processing by ApplicationController#index as HTML
|
29510
|
+
Completed 206 Partial Content in 2ms (Views: 1.5ms | ActiveRecord: 0.0ms)
|
29511
|
+
Processing by ApplicationController#index as HTML
|
29512
|
+
Completed 206 Partial Content in 2ms (Views: 1.5ms | ActiveRecord: 0.0ms)
|
29513
|
+
Processing by ApplicationController#index as HTML
|
29514
|
+
Completed 206 Partial Content in 2ms (Views: 1.4ms | ActiveRecord: 0.0ms)
|
29515
|
+
Processing by ApplicationController#index as HTML
|
29516
|
+
Completed 206 Partial Content in 5ms (Views: 1.6ms | ActiveRecord: 0.0ms)
|
29517
|
+
Processing by ApplicationController#index as HTML
|
29518
|
+
Completed 206 Partial Content in 2ms (Views: 1.5ms | ActiveRecord: 0.0ms)
|
29519
|
+
Processing by ApplicationController#index as HTML
|
29520
|
+
Completed 206 Partial Content in 2ms (Views: 1.4ms | ActiveRecord: 0.0ms)
|
29521
|
+
Processing by ApplicationController#index as HTML
|
29522
|
+
Completed 206 Partial Content in 2ms (Views: 1.2ms | ActiveRecord: 0.0ms)
|
29523
|
+
Processing by ApplicationController#index as HTML
|
29524
|
+
Completed 206 Partial Content in 2ms (Views: 1.1ms | ActiveRecord: 0.0ms)
|
29525
|
+
Processing by ApplicationController#index as HTML
|
29526
|
+
Completed 206 Partial Content in 2ms (Views: 1.0ms | ActiveRecord: 0.0ms)
|
29527
|
+
Processing by ApplicationController#index as HTML
|
29528
|
+
Completed 206 Partial Content in 2ms (Views: 1.1ms | ActiveRecord: 0.0ms)
|
29529
|
+
Processing by ApplicationController#index as HTML
|
29530
|
+
Completed 206 Partial Content in 2ms (Views: 1.1ms | ActiveRecord: 0.0ms)
|
29531
|
+
Processing by ApplicationController#index as HTML
|
29532
|
+
Completed 206 Partial Content in 2ms (Views: 1.2ms | ActiveRecord: 0.0ms)
|
29533
|
+
Processing by ApplicationController#index as HTML
|
29534
|
+
Completed 206 Partial Content in 2ms (Views: 1.3ms | ActiveRecord: 0.0ms)
|
29535
|
+
Processing by ApplicationController#index as HTML
|
29536
|
+
Completed 206 Partial Content in 2ms (Views: 1.1ms | ActiveRecord: 0.0ms)
|
29537
|
+
Processing by ApplicationController#index as HTML
|
29538
|
+
Completed 200 OK in 2ms (Views: 1.1ms | ActiveRecord: 0.0ms)
|
29539
|
+
Processing by ApplicationController#index as HTML
|
29540
|
+
Completed 206 Partial Content in 2ms (Views: 1.3ms | ActiveRecord: 0.0ms)
|
29541
|
+
Processing by ApplicationController#index as HTML
|
29542
|
+
Completed 206 Partial Content in 2ms (Views: 1.1ms | ActiveRecord: 0.0ms)
|
29543
|
+
Processing by ApplicationController#index as HTML
|
29544
|
+
Completed 206 Partial Content in 2ms (Views: 1.3ms | ActiveRecord: 0.0ms)
|
29545
|
+
Processing by ApplicationController#index as HTML
|
29546
|
+
Completed 206 Partial Content in 2ms (Views: 1.1ms | ActiveRecord: 0.0ms)
|
29547
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
29548
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
29549
|
+
------------------------------------------------------------------------------------
|
29550
|
+
ApplicationControllerTest: test_prev_link_with_omitted_end_number_shifts_by_max_page
|
29551
|
+
------------------------------------------------------------------------------------
|
29552
|
+
Processing by ApplicationController#index as HTML
|
29553
|
+
Completed 206 Partial Content in 2ms (Views: 1.3ms | ActiveRecord: 0.0ms)
|
29554
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
29555
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
29556
|
+
----------------------------------------------------------------------
|
29557
|
+
ApplicationControllerTest: test_previous_page_range_cannot_go_negative
|
29558
|
+
----------------------------------------------------------------------
|
29559
|
+
Processing by ApplicationController#index as HTML
|
29560
|
+
Completed 206 Partial Content in 2ms (Views: 1.3ms | ActiveRecord: 0.0ms)
|
29561
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
29562
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
29563
|
+
--------------------------------------------------------------------------------------------
|
29564
|
+
ApplicationControllerTest: test_rangeless_request_range_works_normally_if_max_range_>=_total
|
29565
|
+
--------------------------------------------------------------------------------------------
|
29566
|
+
Processing by ApplicationController#index as HTML
|
29567
|
+
Completed 200 OK in 2ms (Views: 1.4ms | ActiveRecord: 0.0ms)
|
29568
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
29569
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
29570
|
+
--------------------------------------------------------------------------------
|
29571
|
+
ApplicationControllerTest: test_rangeless_request_truncates_if_max_range_<_total
|
29572
|
+
--------------------------------------------------------------------------------
|
29573
|
+
Processing by ApplicationController#index as HTML
|
29574
|
+
Completed 206 Partial Content in 1ms (Views: 1.3ms | ActiveRecord: 0.0ms)
|
29575
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
29576
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
29577
|
+
------------------------------------------------------
|
29578
|
+
ApplicationControllerTest: test_refuses_offside_ranges
|
29579
|
+
------------------------------------------------------
|
29580
|
+
Processing by ApplicationController#index as HTML
|
29581
|
+
Completed 416 Requested Range Not Satisfiable in 1ms (Views: 1.2ms | ActiveRecord: 0.0ms)
|
29582
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
29583
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
29584
|
+
------------------------------------------------------------
|
29585
|
+
ApplicationControllerTest: test_refuses_range_start_past_end
|
29586
|
+
------------------------------------------------------------
|
29587
|
+
Processing by ApplicationController#index as HTML
|
29588
|
+
Completed 500 Internal Server Error in 3ms
|
29589
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
29590
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
29591
|
+
-------------------------------------------------------------------
|
29592
|
+
ApplicationControllerTest: test_reports_infinite/unknown_collection
|
29593
|
+
-------------------------------------------------------------------
|
29594
|
+
Processing by ApplicationController#index as HTML
|
29595
|
+
Completed 206 Partial Content in 2ms (Views: 1.3ms | ActiveRecord: 0.0ms)
|
29596
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
29597
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
29598
|
+
---------------------------------------------------------------------------------------
|
29599
|
+
ApplicationControllerTest: test_shifts_penultimate_page_to_beginning,_preserving_length
|
29600
|
+
---------------------------------------------------------------------------------------
|
29601
|
+
Processing by ApplicationController#index as HTML
|
29602
|
+
Completed 206 Partial Content in 2ms (Views: 1.9ms | ActiveRecord: 0.0ms)
|
29603
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
29604
|
+
[1m[36m (0.3ms)[0m [1mbegin transaction[0m
|
29605
|
+
------------------------------------------------------------
|
29606
|
+
ApplicationControllerTest: test_an_acceptable_range_succeeds
|
29607
|
+
------------------------------------------------------------
|
29608
|
+
Processing by ApplicationController#index as HTML
|
29609
|
+
Rendered application/index.html.erb within layouts/application (0.8ms)
|
29610
|
+
Completed 206 Partial Content in 10ms (Views: 9.3ms | ActiveRecord: 0.0ms)
|
29611
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
29612
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
29613
|
+
---------------------------------------------------------------
|
29614
|
+
ApplicationControllerTest: test_an_oversized_range_is_truncated
|
29615
|
+
---------------------------------------------------------------
|
29616
|
+
Processing by ApplicationController#index as HTML
|
29617
|
+
Completed 206 Partial Content in 1ms (Views: 1.2ms | ActiveRecord: 0.0ms)
|
29618
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
29619
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
29620
|
+
----------------------------------------------------------------------
|
29621
|
+
ApplicationControllerTest: test_first_page_range_always_starts_at_zero
|
29622
|
+
----------------------------------------------------------------------
|
29623
|
+
Processing by ApplicationController#index as HTML
|
29624
|
+
Completed 206 Partial Content in 1ms (Views: 1.1ms | ActiveRecord: 0.0ms)
|
29625
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
29626
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
29627
|
+
-------------------------------------------------------------------------------------
|
29628
|
+
ApplicationControllerTest: test_for_from_>_to-from,_next_is_the_right_inverse_of_prev
|
29629
|
+
-------------------------------------------------------------------------------------
|
29630
|
+
Processing by ApplicationController#index as HTML
|
29631
|
+
Completed 206 Partial Content in 1ms (Views: 1.1ms | ActiveRecord: 0.0ms)
|
29632
|
+
Processing by ApplicationController#index as HTML
|
29633
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
29634
|
+
Processing by ApplicationController#index as HTML
|
29635
|
+
Completed 206 Partial Content in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
29636
|
+
Processing by ApplicationController#index as HTML
|
29637
|
+
Completed 206 Partial Content in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
29638
|
+
Processing by ApplicationController#index as HTML
|
29639
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
29640
|
+
Processing by ApplicationController#index as HTML
|
29641
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
29642
|
+
Processing by ApplicationController#index as HTML
|
29643
|
+
Completed 200 OK in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
29644
|
+
Processing by ApplicationController#index as HTML
|
29645
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
29646
|
+
Processing by ApplicationController#index as HTML
|
29647
|
+
Completed 206 Partial Content in 6ms (Views: 5.6ms | ActiveRecord: 0.0ms)
|
29648
|
+
Processing by ApplicationController#index as HTML
|
29649
|
+
Completed 206 Partial Content in 2ms (Views: 1.3ms | ActiveRecord: 0.0ms)
|
29650
|
+
Processing by ApplicationController#index as HTML
|
29651
|
+
Completed 206 Partial Content in 2ms (Views: 1.6ms | ActiveRecord: 0.0ms)
|
29652
|
+
Processing by ApplicationController#index as HTML
|
29653
|
+
Completed 206 Partial Content in 2ms (Views: 1.6ms | ActiveRecord: 0.0ms)
|
29654
|
+
Processing by ApplicationController#index as HTML
|
29655
|
+
Completed 206 Partial Content in 2ms (Views: 1.4ms | ActiveRecord: 0.0ms)
|
29656
|
+
Processing by ApplicationController#index as HTML
|
29657
|
+
Completed 206 Partial Content in 1ms (Views: 1.1ms | ActiveRecord: 0.0ms)
|
29658
|
+
Processing by ApplicationController#index as HTML
|
29659
|
+
Completed 206 Partial Content in 1ms (Views: 1.1ms | ActiveRecord: 0.0ms)
|
29660
|
+
Processing by ApplicationController#index as HTML
|
29661
|
+
Completed 200 OK in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
29662
|
+
Processing by ApplicationController#index as HTML
|
29663
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
29664
|
+
Processing by ApplicationController#index as HTML
|
29665
|
+
Completed 206 Partial Content in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
29666
|
+
Processing by ApplicationController#index as HTML
|
29667
|
+
Completed 206 Partial Content in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
29668
|
+
Processing by ApplicationController#index as HTML
|
29669
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
29670
|
+
Processing by ApplicationController#index as HTML
|
29671
|
+
Completed 206 Partial Content in 1ms (Views: 1.2ms | ActiveRecord: 0.0ms)
|
29672
|
+
Processing by ApplicationController#index as HTML
|
29673
|
+
Completed 206 Partial Content in 2ms (Views: 1.2ms | ActiveRecord: 0.0ms)
|
29674
|
+
Processing by ApplicationController#index as HTML
|
29675
|
+
Completed 206 Partial Content in 1ms (Views: 1.0ms | ActiveRecord: 0.0ms)
|
29676
|
+
Processing by ApplicationController#index as HTML
|
29677
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
29678
|
+
Processing by ApplicationController#index as HTML
|
29679
|
+
Completed 206 Partial Content in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
29680
|
+
Processing by ApplicationController#index as HTML
|
29681
|
+
Completed 206 Partial Content in 3ms (Views: 2.3ms | ActiveRecord: 0.0ms)
|
29682
|
+
Processing by ApplicationController#index as HTML
|
29683
|
+
Completed 206 Partial Content in 1ms (Views: 1.1ms | ActiveRecord: 0.0ms)
|
29684
|
+
Processing by ApplicationController#index as HTML
|
29685
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
29686
|
+
Processing by ApplicationController#index as HTML
|
29687
|
+
Completed 206 Partial Content in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
29688
|
+
Processing by ApplicationController#index as HTML
|
29689
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
29690
|
+
Processing by ApplicationController#index as HTML
|
29691
|
+
Completed 200 OK in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
29692
|
+
Processing by ApplicationController#index as HTML
|
29693
|
+
Completed 416 Requested Range Not Satisfiable in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
29694
|
+
Processing by ApplicationController#index as HTML
|
29695
|
+
Completed 200 OK in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
29696
|
+
Processing by ApplicationController#index as HTML
|
29697
|
+
Completed 206 Partial Content in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
29698
|
+
Processing by ApplicationController#index as HTML
|
29699
|
+
Completed 206 Partial Content in 1ms (Views: 1.0ms | ActiveRecord: 0.0ms)
|
29700
|
+
Processing by ApplicationController#index as HTML
|
29701
|
+
Completed 206 Partial Content in 2ms (Views: 1.7ms | ActiveRecord: 0.0ms)
|
29702
|
+
Processing by ApplicationController#index as HTML
|
29703
|
+
Completed 206 Partial Content in 2ms (Views: 1.6ms | ActiveRecord: 0.0ms)
|
29704
|
+
Processing by ApplicationController#index as HTML
|
29705
|
+
Completed 206 Partial Content in 2ms (Views: 1.6ms | ActiveRecord: 0.0ms)
|
29706
|
+
Processing by ApplicationController#index as HTML
|
29707
|
+
Completed 206 Partial Content in 1ms (Views: 1.2ms | ActiveRecord: 0.0ms)
|
29708
|
+
Processing by ApplicationController#index as HTML
|
29709
|
+
Completed 200 OK in 1ms (Views: 1.1ms | ActiveRecord: 0.0ms)
|
29710
|
+
Processing by ApplicationController#index as HTML
|
29711
|
+
Completed 206 Partial Content in 1ms (Views: 1.0ms | ActiveRecord: 0.0ms)
|
29712
|
+
Processing by ApplicationController#index as HTML
|
29713
|
+
Completed 206 Partial Content in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
29714
|
+
Processing by ApplicationController#index as HTML
|
29715
|
+
Completed 200 OK in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
29716
|
+
Processing by ApplicationController#index as HTML
|
29717
|
+
Completed 200 OK in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
29718
|
+
Processing by ApplicationController#index as HTML
|
29719
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
29720
|
+
Processing by ApplicationController#index as HTML
|
29721
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
29722
|
+
Processing by ApplicationController#index as HTML
|
29723
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
29724
|
+
Processing by ApplicationController#index as HTML
|
29725
|
+
Completed 206 Partial Content in 4ms (Views: 1.3ms | ActiveRecord: 0.0ms)
|
29726
|
+
Processing by ApplicationController#index as HTML
|
29727
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
29728
|
+
Processing by ApplicationController#index as HTML
|
29729
|
+
Completed 200 OK in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
29730
|
+
Processing by ApplicationController#index as HTML
|
29731
|
+
Completed 416 Requested Range Not Satisfiable in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
29732
|
+
Processing by ApplicationController#index as HTML
|
29733
|
+
Completed 206 Partial Content in 1ms (Views: 1.0ms | ActiveRecord: 0.0ms)
|
29734
|
+
Processing by ApplicationController#index as HTML
|
29735
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
29736
|
+
Processing by ApplicationController#index as HTML
|
29737
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
29738
|
+
Processing by ApplicationController#index as HTML
|
29739
|
+
Completed 206 Partial Content in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
29740
|
+
Processing by ApplicationController#index as HTML
|
29741
|
+
Completed 206 Partial Content in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
29742
|
+
Processing by ApplicationController#index as HTML
|
29743
|
+
Completed 206 Partial Content in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
29744
|
+
Processing by ApplicationController#index as HTML
|
29745
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
29746
|
+
Processing by ApplicationController#index as HTML
|
29747
|
+
Completed 206 Partial Content in 2ms (Views: 1.3ms | ActiveRecord: 0.0ms)
|
29748
|
+
Processing by ApplicationController#index as HTML
|
29749
|
+
Completed 206 Partial Content in 1ms (Views: 1.1ms | ActiveRecord: 0.0ms)
|
29750
|
+
Processing by ApplicationController#index as HTML
|
29751
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
29752
|
+
Processing by ApplicationController#index as HTML
|
29753
|
+
Completed 206 Partial Content in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
29754
|
+
Processing by ApplicationController#index as HTML
|
29755
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
29756
|
+
Processing by ApplicationController#index as HTML
|
29757
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
29758
|
+
Processing by ApplicationController#index as HTML
|
29759
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
29760
|
+
Processing by ApplicationController#index as HTML
|
29761
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
29762
|
+
Processing by ApplicationController#index as HTML
|
29763
|
+
Completed 200 OK in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
29764
|
+
Processing by ApplicationController#index as HTML
|
29765
|
+
Completed 206 Partial Content in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
29766
|
+
Processing by ApplicationController#index as HTML
|
29767
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
29768
|
+
Processing by ApplicationController#index as HTML
|
29769
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
29770
|
+
Processing by ApplicationController#index as HTML
|
29771
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
29772
|
+
Processing by ApplicationController#index as HTML
|
29773
|
+
Completed 206 Partial Content in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
29774
|
+
Processing by ApplicationController#index as HTML
|
29775
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
29776
|
+
Processing by ApplicationController#index as HTML
|
29777
|
+
Completed 206 Partial Content in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
29778
|
+
Processing by ApplicationController#index as HTML
|
29779
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
29780
|
+
Processing by ApplicationController#index as HTML
|
29781
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
29782
|
+
Processing by ApplicationController#index as HTML
|
29783
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
29784
|
+
Processing by ApplicationController#index as HTML
|
29785
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
29786
|
+
Processing by ApplicationController#index as HTML
|
29787
|
+
Completed 206 Partial Content in 3ms (Views: 3.1ms | ActiveRecord: 0.0ms)
|
29788
|
+
Processing by ApplicationController#index as HTML
|
29789
|
+
Completed 416 Requested Range Not Satisfiable in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
29790
|
+
Processing by ApplicationController#index as HTML
|
29791
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
29792
|
+
Processing by ApplicationController#index as HTML
|
29793
|
+
Completed 206 Partial Content in 2ms (Views: 1.6ms | ActiveRecord: 0.0ms)
|
29794
|
+
Processing by ApplicationController#index as HTML
|
29795
|
+
Completed 200 OK in 2ms (Views: 1.6ms | ActiveRecord: 0.0ms)
|
29796
|
+
Processing by ApplicationController#index as HTML
|
29797
|
+
Completed 206 Partial Content in 2ms (Views: 1.4ms | ActiveRecord: 0.0ms)
|
29798
|
+
Processing by ApplicationController#index as HTML
|
29799
|
+
Completed 206 Partial Content in 2ms (Views: 1.1ms | ActiveRecord: 0.0ms)
|
29800
|
+
Processing by ApplicationController#index as HTML
|
29801
|
+
Completed 206 Partial Content in 2ms (Views: 1.2ms | ActiveRecord: 0.0ms)
|
29802
|
+
Processing by ApplicationController#index as HTML
|
29803
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
29804
|
+
Processing by ApplicationController#index as HTML
|
29805
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
29806
|
+
Processing by ApplicationController#index as HTML
|
29807
|
+
Completed 206 Partial Content in 1ms (Views: 1.0ms | ActiveRecord: 0.0ms)
|
29808
|
+
Processing by ApplicationController#index as HTML
|
29809
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
29810
|
+
Processing by ApplicationController#index as HTML
|
29811
|
+
Completed 206 Partial Content in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
29812
|
+
Processing by ApplicationController#index as HTML
|
29813
|
+
Completed 206 Partial Content in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
29814
|
+
Processing by ApplicationController#index as HTML
|
29815
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
29816
|
+
Processing by ApplicationController#index as HTML
|
29817
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
29818
|
+
Processing by ApplicationController#index as HTML
|
29819
|
+
Completed 206 Partial Content in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
29820
|
+
Processing by ApplicationController#index as HTML
|
29821
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
29822
|
+
Processing by ApplicationController#index as HTML
|
29823
|
+
Completed 206 Partial Content in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
29824
|
+
Processing by ApplicationController#index as HTML
|
29825
|
+
Completed 206 Partial Content in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
29826
|
+
Processing by ApplicationController#index as HTML
|
29827
|
+
Completed 206 Partial Content in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
29828
|
+
Processing by ApplicationController#index as HTML
|
29829
|
+
Completed 206 Partial Content in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
29830
|
+
Processing by ApplicationController#index as HTML
|
29831
|
+
Completed 200 OK in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
29832
|
+
Processing by ApplicationController#index as HTML
|
29833
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
29834
|
+
Processing by ApplicationController#index as HTML
|
29835
|
+
Completed 206 Partial Content in 1ms (Views: 1.0ms | ActiveRecord: 0.0ms)
|
29836
|
+
Processing by ApplicationController#index as HTML
|
29837
|
+
Completed 206 Partial Content in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
29838
|
+
Processing by ApplicationController#index as HTML
|
29839
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
29840
|
+
Processing by ApplicationController#index as HTML
|
29841
|
+
Completed 206 Partial Content in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
29842
|
+
Processing by ApplicationController#index as HTML
|
29843
|
+
Completed 206 Partial Content in 2ms (Views: 1.1ms | ActiveRecord: 0.0ms)
|
29844
|
+
Processing by ApplicationController#index as HTML
|
29845
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
29846
|
+
Processing by ApplicationController#index as HTML
|
29847
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
29848
|
+
Processing by ApplicationController#index as HTML
|
29849
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
29850
|
+
Processing by ApplicationController#index as HTML
|
29851
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
29852
|
+
Processing by ApplicationController#index as HTML
|
29853
|
+
Completed 206 Partial Content in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
29854
|
+
Processing by ApplicationController#index as HTML
|
29855
|
+
Completed 206 Partial Content in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
29856
|
+
Processing by ApplicationController#index as HTML
|
29857
|
+
Completed 206 Partial Content in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
29858
|
+
Processing by ApplicationController#index as HTML
|
29859
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
29860
|
+
Processing by ApplicationController#index as HTML
|
29861
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
29862
|
+
Processing by ApplicationController#index as HTML
|
29863
|
+
Completed 206 Partial Content in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
29864
|
+
Processing by ApplicationController#index as HTML
|
29865
|
+
Completed 206 Partial Content in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
29866
|
+
Processing by ApplicationController#index as HTML
|
29867
|
+
Completed 206 Partial Content in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
29868
|
+
Processing by ApplicationController#index as HTML
|
29869
|
+
Completed 206 Partial Content in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
29870
|
+
Processing by ApplicationController#index as HTML
|
29871
|
+
Completed 206 Partial Content in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
29872
|
+
Processing by ApplicationController#index as HTML
|
29873
|
+
Completed 206 Partial Content in 1ms (Views: 1.0ms | ActiveRecord: 0.0ms)
|
29874
|
+
Processing by ApplicationController#index as HTML
|
29875
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
29876
|
+
Processing by ApplicationController#index as HTML
|
29877
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
29878
|
+
Processing by ApplicationController#index as HTML
|
29879
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
29880
|
+
Processing by ApplicationController#index as HTML
|
29881
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
29882
|
+
Processing by ApplicationController#index as HTML
|
29883
|
+
Completed 206 Partial Content in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
29884
|
+
Processing by ApplicationController#index as HTML
|
29885
|
+
Completed 206 Partial Content in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
29886
|
+
Processing by ApplicationController#index as HTML
|
29887
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
29888
|
+
Processing by ApplicationController#index as HTML
|
29889
|
+
Completed 200 OK in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
29890
|
+
Processing by ApplicationController#index as HTML
|
29891
|
+
Completed 206 Partial Content in 4ms (Views: 1.2ms | ActiveRecord: 0.0ms)
|
29892
|
+
Processing by ApplicationController#index as HTML
|
29893
|
+
Completed 206 Partial Content in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
29894
|
+
Processing by ApplicationController#index as HTML
|
29895
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
29896
|
+
Processing by ApplicationController#index as HTML
|
29897
|
+
Completed 206 Partial Content in 1ms (Views: 1.0ms | ActiveRecord: 0.0ms)
|
29898
|
+
Processing by ApplicationController#index as HTML
|
29899
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
29900
|
+
Processing by ApplicationController#index as HTML
|
29901
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
29902
|
+
Processing by ApplicationController#index as HTML
|
29903
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
29904
|
+
Processing by ApplicationController#index as HTML
|
29905
|
+
Completed 206 Partial Content in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
29906
|
+
Processing by ApplicationController#index as HTML
|
29907
|
+
Completed 206 Partial Content in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
29908
|
+
Processing by ApplicationController#index as HTML
|
29909
|
+
Completed 206 Partial Content in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
29910
|
+
Processing by ApplicationController#index as HTML
|
29911
|
+
Completed 206 Partial Content in 1ms (Views: 1.0ms | ActiveRecord: 0.0ms)
|
29912
|
+
Processing by ApplicationController#index as HTML
|
29913
|
+
Completed 206 Partial Content in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
29914
|
+
Processing by ApplicationController#index as HTML
|
29915
|
+
Completed 206 Partial Content in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
29916
|
+
Processing by ApplicationController#index as HTML
|
29917
|
+
Completed 206 Partial Content in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
29918
|
+
Processing by ApplicationController#index as HTML
|
29919
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
29920
|
+
Processing by ApplicationController#index as HTML
|
29921
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
29922
|
+
Processing by ApplicationController#index as HTML
|
29923
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
29924
|
+
Processing by ApplicationController#index as HTML
|
29925
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
29926
|
+
Processing by ApplicationController#index as HTML
|
29927
|
+
Completed 206 Partial Content in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
29928
|
+
Processing by ApplicationController#index as HTML
|
29929
|
+
Completed 206 Partial Content in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
29930
|
+
Processing by ApplicationController#index as HTML
|
29931
|
+
Completed 206 Partial Content in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
29932
|
+
Processing by ApplicationController#index as HTML
|
29933
|
+
Completed 206 Partial Content in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
29934
|
+
Processing by ApplicationController#index as HTML
|
29935
|
+
Completed 416 Requested Range Not Satisfiable in 4ms (Views: 3.1ms | ActiveRecord: 0.0ms)
|
29936
|
+
Processing by ApplicationController#index as HTML
|
29937
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
29938
|
+
Processing by ApplicationController#index as HTML
|
29939
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
29940
|
+
Processing by ApplicationController#index as HTML
|
29941
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
29942
|
+
Processing by ApplicationController#index as HTML
|
29943
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
29944
|
+
Processing by ApplicationController#index as HTML
|
29945
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
29946
|
+
Processing by ApplicationController#index as HTML
|
29947
|
+
Completed 206 Partial Content in 1ms (Views: 1.0ms | ActiveRecord: 0.0ms)
|
29948
|
+
Processing by ApplicationController#index as HTML
|
29949
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
29950
|
+
Processing by ApplicationController#index as HTML
|
29951
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
29952
|
+
Processing by ApplicationController#index as HTML
|
29953
|
+
Completed 206 Partial Content in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
29954
|
+
Processing by ApplicationController#index as HTML
|
29955
|
+
Completed 206 Partial Content in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
29956
|
+
Processing by ApplicationController#index as HTML
|
29957
|
+
Completed 206 Partial Content in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
29958
|
+
Processing by ApplicationController#index as HTML
|
29959
|
+
Completed 206 Partial Content in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
29960
|
+
Processing by ApplicationController#index as HTML
|
29961
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
29962
|
+
Processing by ApplicationController#index as HTML
|
29963
|
+
Completed 206 Partial Content in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
29964
|
+
Processing by ApplicationController#index as HTML
|
29965
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
29966
|
+
Processing by ApplicationController#index as HTML
|
29967
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
29968
|
+
Processing by ApplicationController#index as HTML
|
29969
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
29970
|
+
Processing by ApplicationController#index as HTML
|
29971
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
29972
|
+
Processing by ApplicationController#index as HTML
|
29973
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
29974
|
+
Processing by ApplicationController#index as HTML
|
29975
|
+
Completed 206 Partial Content in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
29976
|
+
Processing by ApplicationController#index as HTML
|
29977
|
+
Completed 206 Partial Content in 4ms (Views: 1.2ms | ActiveRecord: 0.0ms)
|
29978
|
+
Processing by ApplicationController#index as HTML
|
29979
|
+
Completed 206 Partial Content in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
29980
|
+
Processing by ApplicationController#index as HTML
|
29981
|
+
Completed 206 Partial Content in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
29982
|
+
Processing by ApplicationController#index as HTML
|
29983
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
29984
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
29985
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
29986
|
+
--------------------------------------------------------------------------------------
|
29987
|
+
ApplicationControllerTest: test_handles_ranges_beyond_collection_length_via_truncation
|
29988
|
+
--------------------------------------------------------------------------------------
|
29989
|
+
Processing by ApplicationController#index as HTML
|
29990
|
+
Completed 206 Partial Content in 1ms (Views: 1.0ms | ActiveRecord: 0.0ms)
|
29991
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
29992
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
29993
|
+
-----------------------------------------------------
|
29994
|
+
ApplicationControllerTest: test_includes_link_headers
|
29995
|
+
-----------------------------------------------------
|
29996
|
+
Processing by ApplicationController#index as HTML
|
29997
|
+
Completed 206 Partial Content in 1ms (Views: 1.0ms | ActiveRecord: 0.0ms)
|
29998
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
29999
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
30000
|
+
----------------------------------------------------------------------
|
30001
|
+
ApplicationControllerTest: test_infinite_collections_have_no_last_page
|
30002
|
+
----------------------------------------------------------------------
|
30003
|
+
Processing by ApplicationController#index as HTML
|
30004
|
+
Completed 206 Partial Content in 1ms (Views: 1.1ms | ActiveRecord: 0.0ms)
|
30005
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
30006
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
30007
|
+
-------------------------------------------------------------------------------
|
30008
|
+
ApplicationControllerTest: test_last_page_range_can_extend_beyond_the_last_item
|
30009
|
+
-------------------------------------------------------------------------------
|
30010
|
+
Processing by ApplicationController#index as HTML
|
30011
|
+
Completed 206 Partial Content in 1ms (Views: 1.1ms | ActiveRecord: 0.0ms)
|
30012
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
30013
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
30014
|
+
------------------------------------------------------------------------------------
|
30015
|
+
ApplicationControllerTest: test_next_link_with_omitted_end_number_shifts_by_max_page
|
30016
|
+
------------------------------------------------------------------------------------
|
30017
|
+
Processing by ApplicationController#index as HTML
|
30018
|
+
Completed 206 Partial Content in 1ms (Views: 1.0ms | ActiveRecord: 0.0ms)
|
30019
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
30020
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
30021
|
+
---------------------------------------------------------------------------
|
30022
|
+
ApplicationControllerTest: test_next_page_range_can_extend_beyond_last_item
|
30023
|
+
---------------------------------------------------------------------------
|
30024
|
+
Processing by ApplicationController#index as HTML
|
30025
|
+
Completed 206 Partial Content in 1ms (Views: 1.0ms | ActiveRecord: 0.0ms)
|
30026
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
30027
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
30028
|
+
----------------------------------------------------------------
|
30029
|
+
ApplicationControllerTest: test_omits_next_and_last_links_at_end
|
30030
|
+
----------------------------------------------------------------
|
30031
|
+
Processing by ApplicationController#index as HTML
|
30032
|
+
Completed 206 Partial Content in 1ms (Views: 1.1ms | ActiveRecord: 0.0ms)
|
30033
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
30034
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
30035
|
+
-------------------------------------------------------------------
|
30036
|
+
ApplicationControllerTest: test_omits_prev_and_first_links_at_start
|
30037
|
+
-------------------------------------------------------------------
|
30038
|
+
Processing by ApplicationController#index as HTML
|
30039
|
+
Completed 206 Partial Content in 1ms (Views: 1.0ms | ActiveRecord: 0.0ms)
|
30040
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
30041
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
30042
|
+
---------------------------------------------------------------------------
|
30043
|
+
ApplicationControllerTest: test_omitting_the_end_number_asks_for_everything
|
30044
|
+
---------------------------------------------------------------------------
|
30045
|
+
Processing by ApplicationController#index as HTML
|
30046
|
+
Completed 206 Partial Content in 1ms (Views: 1.0ms | ActiveRecord: 0.0ms)
|
30047
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
30048
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
30049
|
+
-------------------------------------------------------------------------------
|
30050
|
+
ApplicationControllerTest: test_omitting_the_end_number_omits_in_first_link_too
|
30051
|
+
-------------------------------------------------------------------------------
|
30052
|
+
Processing by ApplicationController#index as HTML
|
30053
|
+
Completed 206 Partial Content in 1ms (Views: 1.1ms | ActiveRecord: 0.0ms)
|
30054
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
30055
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
30056
|
+
---------------------------------------------------------------------
|
30057
|
+
ApplicationControllerTest: test_passes_along_exceptional_status_codes
|
30058
|
+
---------------------------------------------------------------------
|
30059
|
+
Processing by ApplicationController#index as HTML
|
30060
|
+
Completed 100 Continue in 1ms (Views: 1.2ms | ActiveRecord: 0.0ms)
|
30061
|
+
Processing by ApplicationController#index as HTML
|
30062
|
+
Completed 301 Moved Permanently in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
30063
|
+
Processing by ApplicationController#index as HTML
|
30064
|
+
Completed 404 Not Found in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
30065
|
+
Processing by ApplicationController#index as HTML
|
30066
|
+
Completed 500 Internal Server Error in 1ms (Views: 1.1ms | ActiveRecord: 0.0ms)
|
30067
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
30068
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
30069
|
+
--------------------------------------------------------------------------
|
30070
|
+
ApplicationControllerTest: test_preserves_query_parameters_in_link_headers
|
30071
|
+
--------------------------------------------------------------------------
|
30072
|
+
Processing by ApplicationController#index as HTML
|
30073
|
+
Parameters: {"foo"=>"bar"}
|
30074
|
+
Completed 206 Partial Content in 1ms (Views: 1.3ms | ActiveRecord: 0.0ms)
|
30075
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
30076
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
30077
|
+
----------------------------------------------------------------
|
30078
|
+
ApplicationControllerTest: test_prev_is_the_left_inverse_of_next
|
30079
|
+
----------------------------------------------------------------
|
30080
|
+
Processing by ApplicationController#index as HTML
|
30081
|
+
Completed 206 Partial Content in 1ms (Views: 1.1ms | ActiveRecord: 0.0ms)
|
30082
|
+
Processing by ApplicationController#index as HTML
|
30083
|
+
Completed 206 Partial Content in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
30084
|
+
Processing by ApplicationController#index as HTML
|
30085
|
+
Completed 206 Partial Content in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
30086
|
+
Processing by ApplicationController#index as HTML
|
30087
|
+
Completed 206 Partial Content in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
30088
|
+
Processing by ApplicationController#index as HTML
|
30089
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
30090
|
+
Processing by ApplicationController#index as HTML
|
30091
|
+
Completed 206 Partial Content in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
30092
|
+
Processing by ApplicationController#index as HTML
|
30093
|
+
Completed 206 Partial Content in 1ms (Views: 1.0ms | ActiveRecord: 0.0ms)
|
30094
|
+
Processing by ApplicationController#index as HTML
|
30095
|
+
Completed 206 Partial Content in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
30096
|
+
Processing by ApplicationController#index as HTML
|
30097
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
30098
|
+
Processing by ApplicationController#index as HTML
|
30099
|
+
Completed 206 Partial Content in 3ms (Views: 3.0ms | ActiveRecord: 0.0ms)
|
30100
|
+
Processing by ApplicationController#index as HTML
|
30101
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
30102
|
+
Processing by ApplicationController#index as HTML
|
30103
|
+
Completed 206 Partial Content in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
30104
|
+
Processing by ApplicationController#index as HTML
|
30105
|
+
Completed 206 Partial Content in 1ms (Views: 1.0ms | ActiveRecord: 0.0ms)
|
30106
|
+
Processing by ApplicationController#index as HTML
|
30107
|
+
Completed 206 Partial Content in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
30108
|
+
Processing by ApplicationController#index as HTML
|
30109
|
+
Completed 206 Partial Content in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
30110
|
+
Processing by ApplicationController#index as HTML
|
30111
|
+
Completed 206 Partial Content in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
30112
|
+
Processing by ApplicationController#index as HTML
|
30113
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
30114
|
+
Processing by ApplicationController#index as HTML
|
30115
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
30116
|
+
Processing by ApplicationController#index as HTML
|
30117
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
30118
|
+
Processing by ApplicationController#index as HTML
|
30119
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
30120
|
+
Processing by ApplicationController#index as HTML
|
30121
|
+
Completed 206 Partial Content in 1ms (Views: 1.0ms | ActiveRecord: 0.0ms)
|
30122
|
+
Processing by ApplicationController#index as HTML
|
30123
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
30124
|
+
Processing by ApplicationController#index as HTML
|
30125
|
+
Completed 200 OK in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
30126
|
+
Processing by ApplicationController#index as HTML
|
30127
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
30128
|
+
Processing by ApplicationController#index as HTML
|
30129
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
30130
|
+
Processing by ApplicationController#index as HTML
|
30131
|
+
Completed 206 Partial Content in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
30132
|
+
Processing by ApplicationController#index as HTML
|
30133
|
+
Completed 200 OK in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
30134
|
+
Processing by ApplicationController#index as HTML
|
30135
|
+
Completed 206 Partial Content in 2ms (Views: 1.4ms | ActiveRecord: 0.0ms)
|
30136
|
+
Processing by ApplicationController#index as HTML
|
30137
|
+
Completed 206 Partial Content in 1ms (Views: 1.0ms | ActiveRecord: 0.0ms)
|
30138
|
+
Processing by ApplicationController#index as HTML
|
30139
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
30140
|
+
Processing by ApplicationController#index as HTML
|
30141
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
30142
|
+
Processing by ApplicationController#index as HTML
|
30143
|
+
Completed 206 Partial Content in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
30144
|
+
Processing by ApplicationController#index as HTML
|
30145
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
30146
|
+
Processing by ApplicationController#index as HTML
|
30147
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
30148
|
+
Processing by ApplicationController#index as HTML
|
30149
|
+
Completed 206 Partial Content in 2ms (Views: 1.6ms | ActiveRecord: 0.0ms)
|
30150
|
+
Processing by ApplicationController#index as HTML
|
30151
|
+
Completed 206 Partial Content in 2ms (Views: 1.6ms | ActiveRecord: 0.0ms)
|
30152
|
+
Processing by ApplicationController#index as HTML
|
30153
|
+
Completed 206 Partial Content in 2ms (Views: 1.6ms | ActiveRecord: 0.0ms)
|
30154
|
+
Processing by ApplicationController#index as HTML
|
30155
|
+
Completed 206 Partial Content in 2ms (Views: 1.2ms | ActiveRecord: 0.0ms)
|
30156
|
+
Processing by ApplicationController#index as HTML
|
30157
|
+
Completed 206 Partial Content in 1ms (Views: 1.1ms | ActiveRecord: 0.0ms)
|
30158
|
+
Processing by ApplicationController#index as HTML
|
30159
|
+
Completed 206 Partial Content in 1ms (Views: 1.1ms | ActiveRecord: 0.0ms)
|
30160
|
+
Processing by ApplicationController#index as HTML
|
30161
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
30162
|
+
Processing by ApplicationController#index as HTML
|
30163
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
30164
|
+
Processing by ApplicationController#index as HTML
|
30165
|
+
Completed 200 OK in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
30166
|
+
Processing by ApplicationController#index as HTML
|
30167
|
+
Completed 200 OK in 4ms (Views: 1.3ms | ActiveRecord: 0.0ms)
|
30168
|
+
Processing by ApplicationController#index as HTML
|
30169
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
30170
|
+
Processing by ApplicationController#index as HTML
|
30171
|
+
Completed 200 OK in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
30172
|
+
Processing by ApplicationController#index as HTML
|
30173
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
30174
|
+
Processing by ApplicationController#index as HTML
|
30175
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
30176
|
+
Processing by ApplicationController#index as HTML
|
30177
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
30178
|
+
Processing by ApplicationController#index as HTML
|
30179
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
30180
|
+
Processing by ApplicationController#index as HTML
|
30181
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
30182
|
+
Processing by ApplicationController#index as HTML
|
30183
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
30184
|
+
Processing by ApplicationController#index as HTML
|
30185
|
+
Completed 200 OK in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
30186
|
+
Processing by ApplicationController#index as HTML
|
30187
|
+
Completed 206 Partial Content in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
30188
|
+
Processing by ApplicationController#index as HTML
|
30189
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
30190
|
+
Processing by ApplicationController#index as HTML
|
30191
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
30192
|
+
Processing by ApplicationController#index as HTML
|
30193
|
+
Completed 206 Partial Content in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
30194
|
+
Processing by ApplicationController#index as HTML
|
30195
|
+
Completed 206 Partial Content in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
30196
|
+
Processing by ApplicationController#index as HTML
|
30197
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
30198
|
+
Processing by ApplicationController#index as HTML
|
30199
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
30200
|
+
Processing by ApplicationController#index as HTML
|
30201
|
+
Completed 206 Partial Content in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
30202
|
+
Processing by ApplicationController#index as HTML
|
30203
|
+
Completed 206 Partial Content in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
30204
|
+
Processing by ApplicationController#index as HTML
|
30205
|
+
Completed 206 Partial Content in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
30206
|
+
Processing by ApplicationController#index as HTML
|
30207
|
+
Completed 206 Partial Content in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
30208
|
+
Processing by ApplicationController#index as HTML
|
30209
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
30210
|
+
Processing by ApplicationController#index as HTML
|
30211
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
30212
|
+
Processing by ApplicationController#index as HTML
|
30213
|
+
Completed 206 Partial Content in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
30214
|
+
Processing by ApplicationController#index as HTML
|
30215
|
+
Completed 206 Partial Content in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
30216
|
+
Processing by ApplicationController#index as HTML
|
30217
|
+
Completed 206 Partial Content in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
30218
|
+
Processing by ApplicationController#index as HTML
|
30219
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
30220
|
+
Processing by ApplicationController#index as HTML
|
30221
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
30222
|
+
Processing by ApplicationController#index as HTML
|
30223
|
+
Completed 206 Partial Content in 2ms (Views: 1.2ms | ActiveRecord: 0.0ms)
|
30224
|
+
Processing by ApplicationController#index as HTML
|
30225
|
+
Completed 206 Partial Content in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
30226
|
+
Processing by ApplicationController#index as HTML
|
30227
|
+
Completed 206 Partial Content in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
30228
|
+
Processing by ApplicationController#index as HTML
|
30229
|
+
Completed 200 OK in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
30230
|
+
Processing by ApplicationController#index as HTML
|
30231
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
30232
|
+
Processing by ApplicationController#index as HTML
|
30233
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
30234
|
+
Processing by ApplicationController#index as HTML
|
30235
|
+
Completed 206 Partial Content in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
30236
|
+
Processing by ApplicationController#index as HTML
|
30237
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
30238
|
+
Processing by ApplicationController#index as HTML
|
30239
|
+
Completed 200 OK in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
30240
|
+
Processing by ApplicationController#index as HTML
|
30241
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
30242
|
+
Processing by ApplicationController#index as HTML
|
30243
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
30244
|
+
Processing by ApplicationController#index as HTML
|
30245
|
+
Completed 206 Partial Content in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
30246
|
+
Processing by ApplicationController#index as HTML
|
30247
|
+
Completed 206 Partial Content in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
30248
|
+
Processing by ApplicationController#index as HTML
|
30249
|
+
Completed 206 Partial Content in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
30250
|
+
Processing by ApplicationController#index as HTML
|
30251
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
30252
|
+
Processing by ApplicationController#index as HTML
|
30253
|
+
Completed 206 Partial Content in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
30254
|
+
Processing by ApplicationController#index as HTML
|
30255
|
+
Completed 206 Partial Content in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
30256
|
+
Processing by ApplicationController#index as HTML
|
30257
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
30258
|
+
Processing by ApplicationController#index as HTML
|
30259
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
30260
|
+
Processing by ApplicationController#index as HTML
|
30261
|
+
Completed 206 Partial Content in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
30262
|
+
Processing by ApplicationController#index as HTML
|
30263
|
+
Completed 206 Partial Content in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
30264
|
+
Processing by ApplicationController#index as HTML
|
30265
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
30266
|
+
Processing by ApplicationController#index as HTML
|
30267
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
30268
|
+
Processing by ApplicationController#index as HTML
|
30269
|
+
Completed 206 Partial Content in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
30270
|
+
Processing by ApplicationController#index as HTML
|
30271
|
+
Completed 206 Partial Content in 4ms (Views: 1.3ms | ActiveRecord: 0.0ms)
|
30272
|
+
Processing by ApplicationController#index as HTML
|
30273
|
+
Completed 206 Partial Content in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
30274
|
+
Processing by ApplicationController#index as HTML
|
30275
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
30276
|
+
Processing by ApplicationController#index as HTML
|
30277
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
30278
|
+
Processing by ApplicationController#index as HTML
|
30279
|
+
Completed 206 Partial Content in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
30280
|
+
Processing by ApplicationController#index as HTML
|
30281
|
+
Completed 206 Partial Content in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
30282
|
+
Processing by ApplicationController#index as HTML
|
30283
|
+
Completed 206 Partial Content in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
30284
|
+
Processing by ApplicationController#index as HTML
|
30285
|
+
Completed 200 OK in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
30286
|
+
Processing by ApplicationController#index as HTML
|
30287
|
+
Completed 206 Partial Content in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
30288
|
+
Processing by ApplicationController#index as HTML
|
30289
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
30290
|
+
Processing by ApplicationController#index as HTML
|
30291
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
30292
|
+
Processing by ApplicationController#index as HTML
|
30293
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
30294
|
+
Processing by ApplicationController#index as HTML
|
30295
|
+
Completed 206 Partial Content in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
30296
|
+
Processing by ApplicationController#index as HTML
|
30297
|
+
Completed 206 Partial Content in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
30298
|
+
Processing by ApplicationController#index as HTML
|
30299
|
+
Completed 206 Partial Content in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
30300
|
+
Processing by ApplicationController#index as HTML
|
30301
|
+
Completed 206 Partial Content in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
30302
|
+
Processing by ApplicationController#index as HTML
|
30303
|
+
Completed 206 Partial Content in 1ms (Views: 1.0ms | ActiveRecord: 0.0ms)
|
30304
|
+
Processing by ApplicationController#index as HTML
|
30305
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
30306
|
+
Processing by ApplicationController#index as HTML
|
30307
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
30308
|
+
Processing by ApplicationController#index as HTML
|
30309
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
30310
|
+
Processing by ApplicationController#index as HTML
|
30311
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
30312
|
+
Processing by ApplicationController#index as HTML
|
30313
|
+
Completed 206 Partial Content in 3ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
30314
|
+
Processing by ApplicationController#index as HTML
|
30315
|
+
Completed 206 Partial Content in 2ms (Views: 1.0ms | ActiveRecord: 0.0ms)
|
30316
|
+
Processing by ApplicationController#index as HTML
|
30317
|
+
Completed 206 Partial Content in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
30318
|
+
Processing by ApplicationController#index as HTML
|
30319
|
+
Completed 206 Partial Content in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
30320
|
+
Processing by ApplicationController#index as HTML
|
30321
|
+
Completed 206 Partial Content in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
30322
|
+
Processing by ApplicationController#index as HTML
|
30323
|
+
Completed 206 Partial Content in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
30324
|
+
Processing by ApplicationController#index as HTML
|
30325
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
30326
|
+
Processing by ApplicationController#index as HTML
|
30327
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
30328
|
+
Processing by ApplicationController#index as HTML
|
30329
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
30330
|
+
Processing by ApplicationController#index as HTML
|
30331
|
+
Completed 206 Partial Content in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
30332
|
+
Processing by ApplicationController#index as HTML
|
30333
|
+
Completed 206 Partial Content in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
30334
|
+
Processing by ApplicationController#index as HTML
|
30335
|
+
Completed 206 Partial Content in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
30336
|
+
Processing by ApplicationController#index as HTML
|
30337
|
+
Completed 206 Partial Content in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
30338
|
+
Processing by ApplicationController#index as HTML
|
30339
|
+
Completed 206 Partial Content in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
30340
|
+
Processing by ApplicationController#index as HTML
|
30341
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
30342
|
+
Processing by ApplicationController#index as HTML
|
30343
|
+
Completed 206 Partial Content in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
30344
|
+
Processing by ApplicationController#index as HTML
|
30345
|
+
Completed 206 Partial Content in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
30346
|
+
Processing by ApplicationController#index as HTML
|
30347
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
30348
|
+
Processing by ApplicationController#index as HTML
|
30349
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
30350
|
+
Processing by ApplicationController#index as HTML
|
30351
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
30352
|
+
Processing by ApplicationController#index as HTML
|
30353
|
+
Completed 206 Partial Content in 3ms (Views: 2.9ms | ActiveRecord: 0.0ms)
|
30354
|
+
Processing by ApplicationController#index as HTML
|
30355
|
+
Completed 206 Partial Content in 2ms (Views: 1.0ms | ActiveRecord: 0.0ms)
|
30356
|
+
Processing by ApplicationController#index as HTML
|
30357
|
+
Completed 206 Partial Content in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
30358
|
+
Processing by ApplicationController#index as HTML
|
30359
|
+
Completed 206 Partial Content in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
30360
|
+
Processing by ApplicationController#index as HTML
|
30361
|
+
Completed 206 Partial Content in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
30362
|
+
Processing by ApplicationController#index as HTML
|
30363
|
+
Completed 206 Partial Content in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
30364
|
+
Processing by ApplicationController#index as HTML
|
30365
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
30366
|
+
Processing by ApplicationController#index as HTML
|
30367
|
+
Completed 206 Partial Content in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
30368
|
+
Processing by ApplicationController#index as HTML
|
30369
|
+
Completed 206 Partial Content in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
30370
|
+
Processing by ApplicationController#index as HTML
|
30371
|
+
Completed 206 Partial Content in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
30372
|
+
Processing by ApplicationController#index as HTML
|
30373
|
+
Completed 206 Partial Content in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
30374
|
+
Processing by ApplicationController#index as HTML
|
30375
|
+
Completed 206 Partial Content in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
30376
|
+
Processing by ApplicationController#index as HTML
|
30377
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
30378
|
+
Processing by ApplicationController#index as HTML
|
30379
|
+
Completed 206 Partial Content in 2ms (Views: 1.0ms | ActiveRecord: 0.0ms)
|
30380
|
+
Processing by ApplicationController#index as HTML
|
30381
|
+
Completed 206 Partial Content in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
30382
|
+
Processing by ApplicationController#index as HTML
|
30383
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
30384
|
+
Processing by ApplicationController#index as HTML
|
30385
|
+
Completed 206 Partial Content in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
30386
|
+
Processing by ApplicationController#index as HTML
|
30387
|
+
Completed 206 Partial Content in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
30388
|
+
Processing by ApplicationController#index as HTML
|
30389
|
+
Completed 206 Partial Content in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
30390
|
+
Processing by ApplicationController#index as HTML
|
30391
|
+
Completed 206 Partial Content in 4ms (Views: 1.3ms | ActiveRecord: 0.0ms)
|
30392
|
+
Processing by ApplicationController#index as HTML
|
30393
|
+
Completed 206 Partial Content in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
30394
|
+
Processing by ApplicationController#index as HTML
|
30395
|
+
Completed 206 Partial Content in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
30396
|
+
Processing by ApplicationController#index as HTML
|
30397
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
30398
|
+
Processing by ApplicationController#index as HTML
|
30399
|
+
Completed 206 Partial Content in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
30400
|
+
Processing by ApplicationController#index as HTML
|
30401
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
30402
|
+
Processing by ApplicationController#index as HTML
|
30403
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
30404
|
+
Processing by ApplicationController#index as HTML
|
30405
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
30406
|
+
Processing by ApplicationController#index as HTML
|
30407
|
+
Completed 206 Partial Content in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
30408
|
+
Processing by ApplicationController#index as HTML
|
30409
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
30410
|
+
Processing by ApplicationController#index as HTML
|
30411
|
+
Completed 206 Partial Content in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
30412
|
+
Processing by ApplicationController#index as HTML
|
30413
|
+
Completed 206 Partial Content in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
30414
|
+
Processing by ApplicationController#index as HTML
|
30415
|
+
Completed 206 Partial Content in 2ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
30416
|
+
Processing by ApplicationController#index as HTML
|
30417
|
+
Completed 206 Partial Content in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
30418
|
+
Processing by ApplicationController#index as HTML
|
30419
|
+
Completed 206 Partial Content in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
30420
|
+
Processing by ApplicationController#index as HTML
|
30421
|
+
Completed 206 Partial Content in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
30422
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
30423
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
30424
|
+
------------------------------------------------------------------------------------
|
30425
|
+
ApplicationControllerTest: test_prev_link_with_omitted_end_number_shifts_by_max_page
|
30426
|
+
------------------------------------------------------------------------------------
|
30427
|
+
Processing by ApplicationController#index as HTML
|
30428
|
+
Completed 206 Partial Content in 1ms (Views: 1.0ms | ActiveRecord: 0.0ms)
|
30429
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
30430
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
30431
|
+
----------------------------------------------------------------------
|
30432
|
+
ApplicationControllerTest: test_previous_page_range_cannot_go_negative
|
30433
|
+
----------------------------------------------------------------------
|
30434
|
+
Processing by ApplicationController#index as HTML
|
30435
|
+
Completed 206 Partial Content in 1ms (Views: 1.1ms | ActiveRecord: 0.0ms)
|
30436
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
30437
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
30438
|
+
--------------------------------------------------------------------------------------------
|
30439
|
+
ApplicationControllerTest: test_rangeless_request_range_works_normally_if_max_range_>=_total
|
30440
|
+
--------------------------------------------------------------------------------------------
|
30441
|
+
Processing by ApplicationController#index as HTML
|
30442
|
+
Completed 200 OK in 1ms (Views: 1.1ms | ActiveRecord: 0.0ms)
|
30443
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
30444
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
30445
|
+
--------------------------------------------------------------------------------
|
30446
|
+
ApplicationControllerTest: test_rangeless_request_truncates_if_max_range_<_total
|
30447
|
+
--------------------------------------------------------------------------------
|
30448
|
+
Processing by ApplicationController#index as HTML
|
30449
|
+
Completed 206 Partial Content in 1ms (Views: 1.0ms | ActiveRecord: 0.0ms)
|
30450
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
30451
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
30452
|
+
------------------------------------------------------
|
30453
|
+
ApplicationControllerTest: test_refuses_offside_ranges
|
30454
|
+
------------------------------------------------------
|
30455
|
+
Processing by ApplicationController#index as HTML
|
30456
|
+
Completed 416 Requested Range Not Satisfiable in 1ms (Views: 1.0ms | ActiveRecord: 0.0ms)
|
30457
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
30458
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
30459
|
+
------------------------------------------------------------
|
30460
|
+
ApplicationControllerTest: test_refuses_range_start_past_end
|
30461
|
+
------------------------------------------------------------
|
30462
|
+
Processing by ApplicationController#index as HTML
|
30463
|
+
Completed 500 Internal Server Error in 3ms
|
30464
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
30465
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
30466
|
+
-------------------------------------------------------------------
|
30467
|
+
ApplicationControllerTest: test_reports_infinite/unknown_collection
|
30468
|
+
-------------------------------------------------------------------
|
30469
|
+
Processing by ApplicationController#index as HTML
|
30470
|
+
Completed 206 Partial Content in 2ms (Views: 1.4ms | ActiveRecord: 0.0ms)
|
30471
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
30472
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
30473
|
+
---------------------------------------------------------------------------------------
|
30474
|
+
ApplicationControllerTest: test_shifts_penultimate_page_to_beginning,_preserving_length
|
30475
|
+
---------------------------------------------------------------------------------------
|
30476
|
+
Processing by ApplicationController#index as HTML
|
30477
|
+
Completed 206 Partial Content in 1ms (Views: 1.1ms | ActiveRecord: 0.0ms)
|
30478
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
30479
|
+
[1m[36m (0.3ms)[0m [1mbegin transaction[0m
|
30480
|
+
------------------------------------------------------------
|
30481
|
+
ApplicationControllerTest: test_an_acceptable_range_succeeds
|
30482
|
+
------------------------------------------------------------
|
30483
|
+
Processing by ApplicationController#index as HTML
|
30484
|
+
Rendered application/index.html.erb within layouts/application (0.7ms)
|
30485
|
+
Completed 206 Partial Content in 13ms (Views: 12.6ms | ActiveRecord: 0.0ms)
|
30486
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
30487
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
30488
|
+
---------------------------------------------------------------
|
30489
|
+
ApplicationControllerTest: test_an_oversized_range_is_truncated
|
30490
|
+
---------------------------------------------------------------
|
30491
|
+
Processing by ApplicationController#index as HTML
|
30492
|
+
Completed 206 Partial Content in 2ms (Views: 1.4ms | ActiveRecord: 0.0ms)
|
30493
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
30494
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
30495
|
+
----------------------------------------------------------------------
|
30496
|
+
ApplicationControllerTest: test_first_page_range_always_starts_at_zero
|
30497
|
+
----------------------------------------------------------------------
|
30498
|
+
Processing by ApplicationController#index as HTML
|
30499
|
+
Completed 206 Partial Content in 1ms (Views: 1.0ms | ActiveRecord: 0.0ms)
|
30500
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
30501
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
30502
|
+
-------------------------------------------------------------------------------------
|
30503
|
+
ApplicationControllerTest: test_for_from_>_to-from,_next_is_the_right_inverse_of_prev
|
30504
|
+
-------------------------------------------------------------------------------------
|
30505
|
+
Processing by ApplicationController#index as HTML
|
30506
|
+
Completed 206 Partial Content in 1ms (Views: 1.0ms | ActiveRecord: 0.0ms)
|
30507
|
+
Processing by ApplicationController#index as HTML
|
30508
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
30509
|
+
Processing by ApplicationController#index as HTML
|
30510
|
+
Completed 200 OK in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
30511
|
+
Processing by ApplicationController#index as HTML
|
30512
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
30513
|
+
Processing by ApplicationController#index as HTML
|
30514
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
30515
|
+
Processing by ApplicationController#index as HTML
|
30516
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
30517
|
+
Processing by ApplicationController#index as HTML
|
30518
|
+
Completed 206 Partial Content in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
30519
|
+
Processing by ApplicationController#index as HTML
|
30520
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
30521
|
+
Processing by ApplicationController#index as HTML
|
30522
|
+
Completed 206 Partial Content in 6ms (Views: 5.5ms | ActiveRecord: 0.0ms)
|
30523
|
+
Processing by ApplicationController#index as HTML
|
30524
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
30525
|
+
Processing by ApplicationController#index as HTML
|
30526
|
+
Completed 200 OK in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
30527
|
+
Processing by ApplicationController#index as HTML
|
30528
|
+
Completed 206 Partial Content in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
30529
|
+
Processing by ApplicationController#index as HTML
|
30530
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
30531
|
+
Processing by ApplicationController#index as HTML
|
30532
|
+
Completed 200 OK in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
30533
|
+
Processing by ApplicationController#index as HTML
|
30534
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
30535
|
+
Processing by ApplicationController#index as HTML
|
30536
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
30537
|
+
Processing by ApplicationController#index as HTML
|
30538
|
+
Completed 206 Partial Content in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
30539
|
+
Processing by ApplicationController#index as HTML
|
30540
|
+
Completed 206 Partial Content in 1ms (Views: 1.0ms | ActiveRecord: 0.0ms)
|
30541
|
+
Processing by ApplicationController#index as HTML
|
30542
|
+
Completed 206 Partial Content in 2ms (Views: 1.2ms | ActiveRecord: 0.0ms)
|
30543
|
+
Processing by ApplicationController#index as HTML
|
30544
|
+
Completed 206 Partial Content in 2ms (Views: 1.5ms | ActiveRecord: 0.0ms)
|
30545
|
+
Processing by ApplicationController#index as HTML
|
30546
|
+
Completed 206 Partial Content in 1ms (Views: 1.0ms | ActiveRecord: 0.0ms)
|
30547
|
+
Processing by ApplicationController#index as HTML
|
30548
|
+
Completed 206 Partial Content in 1ms (Views: 1.0ms | ActiveRecord: 0.0ms)
|
30549
|
+
Processing by ApplicationController#index as HTML
|
30550
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
30551
|
+
Processing by ApplicationController#index as HTML
|
30552
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
30553
|
+
Processing by ApplicationController#index as HTML
|
30554
|
+
Completed 206 Partial Content in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
30555
|
+
Processing by ApplicationController#index as HTML
|
30556
|
+
Completed 206 Partial Content in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
30557
|
+
Processing by ApplicationController#index as HTML
|
30558
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
30559
|
+
Processing by ApplicationController#index as HTML
|
30560
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
30561
|
+
Processing by ApplicationController#index as HTML
|
30562
|
+
Completed 206 Partial Content in 2ms (Views: 1.3ms | ActiveRecord: 0.0ms)
|
30563
|
+
Processing by ApplicationController#index as HTML
|
30564
|
+
Completed 206 Partial Content in 1ms (Views: 1.2ms | ActiveRecord: 0.0ms)
|
30565
|
+
Processing by ApplicationController#index as HTML
|
30566
|
+
Completed 200 OK in 2ms (Views: 1.2ms | ActiveRecord: 0.0ms)
|
30567
|
+
Processing by ApplicationController#index as HTML
|
30568
|
+
Completed 206 Partial Content in 1ms (Views: 1.1ms | ActiveRecord: 0.0ms)
|
30569
|
+
Processing by ApplicationController#index as HTML
|
30570
|
+
Completed 206 Partial Content in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
30571
|
+
Processing by ApplicationController#index as HTML
|
30572
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
30573
|
+
Processing by ApplicationController#index as HTML
|
30574
|
+
Completed 206 Partial Content in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
30575
|
+
Processing by ApplicationController#index as HTML
|
30576
|
+
Completed 206 Partial Content in 2ms (Views: 1.8ms | ActiveRecord: 0.0ms)
|
30577
|
+
Processing by ApplicationController#index as HTML
|
30578
|
+
Completed 206 Partial Content in 2ms (Views: 1.6ms | ActiveRecord: 0.0ms)
|
30579
|
+
Processing by ApplicationController#index as HTML
|
30580
|
+
Completed 200 OK in 2ms (Views: 1.5ms | ActiveRecord: 0.0ms)
|
30581
|
+
Processing by ApplicationController#index as HTML
|
30582
|
+
Completed 206 Partial Content in 1ms (Views: 1.1ms | ActiveRecord: 0.0ms)
|
30583
|
+
Processing by ApplicationController#index as HTML
|
30584
|
+
Completed 206 Partial Content in 1ms (Views: 1.1ms | ActiveRecord: 0.0ms)
|
30585
|
+
Processing by ApplicationController#index as HTML
|
30586
|
+
Completed 206 Partial Content in 1ms (Views: 1.0ms | ActiveRecord: 0.0ms)
|
30587
|
+
Processing by ApplicationController#index as HTML
|
30588
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
30589
|
+
Processing by ApplicationController#index as HTML
|
30590
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
30591
|
+
Processing by ApplicationController#index as HTML
|
30592
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
30593
|
+
Processing by ApplicationController#index as HTML
|
30594
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
30595
|
+
Processing by ApplicationController#index as HTML
|
30596
|
+
Completed 200 OK in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
30597
|
+
Processing by ApplicationController#index as HTML
|
30598
|
+
Completed 206 Partial Content in 3ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
30599
|
+
Processing by ApplicationController#index as HTML
|
30600
|
+
Completed 206 Partial Content in 1ms (Views: 1.1ms | ActiveRecord: 0.0ms)
|
30601
|
+
Processing by ApplicationController#index as HTML
|
30602
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
30603
|
+
Processing by ApplicationController#index as HTML
|
30604
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
30605
|
+
Processing by ApplicationController#index as HTML
|
30606
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
30607
|
+
Processing by ApplicationController#index as HTML
|
30608
|
+
Completed 206 Partial Content in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
30609
|
+
Processing by ApplicationController#index as HTML
|
30610
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
30611
|
+
Processing by ApplicationController#index as HTML
|
30612
|
+
Completed 206 Partial Content in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
30613
|
+
Processing by ApplicationController#index as HTML
|
30614
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
30615
|
+
Processing by ApplicationController#index as HTML
|
30616
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
30617
|
+
Processing by ApplicationController#index as HTML
|
30618
|
+
Completed 206 Partial Content in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
30619
|
+
Processing by ApplicationController#index as HTML
|
30620
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
30621
|
+
Processing by ApplicationController#index as HTML
|
30622
|
+
Completed 200 OK in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
30623
|
+
Processing by ApplicationController#index as HTML
|
30624
|
+
Completed 206 Partial Content in 1ms (Views: 1.0ms | ActiveRecord: 0.0ms)
|
30625
|
+
Processing by ApplicationController#index as HTML
|
30626
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
30627
|
+
Processing by ApplicationController#index as HTML
|
30628
|
+
Completed 206 Partial Content in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
30629
|
+
Processing by ApplicationController#index as HTML
|
30630
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
30631
|
+
Processing by ApplicationController#index as HTML
|
30632
|
+
Completed 206 Partial Content in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
30633
|
+
Processing by ApplicationController#index as HTML
|
30634
|
+
Completed 206 Partial Content in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
30635
|
+
Processing by ApplicationController#index as HTML
|
30636
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
30637
|
+
Processing by ApplicationController#index as HTML
|
30638
|
+
Completed 206 Partial Content in 1ms (Views: 1.1ms | ActiveRecord: 0.0ms)
|
30639
|
+
Processing by ApplicationController#index as HTML
|
30640
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
30641
|
+
Processing by ApplicationController#index as HTML
|
30642
|
+
Completed 206 Partial Content in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
30643
|
+
Processing by ApplicationController#index as HTML
|
30644
|
+
Completed 206 Partial Content in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
30645
|
+
Processing by ApplicationController#index as HTML
|
30646
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
30647
|
+
Processing by ApplicationController#index as HTML
|
30648
|
+
Completed 206 Partial Content in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
30649
|
+
Processing by ApplicationController#index as HTML
|
30650
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
30651
|
+
Processing by ApplicationController#index as HTML
|
30652
|
+
Completed 206 Partial Content in 1ms (Views: 1.0ms | ActiveRecord: 0.0ms)
|
30653
|
+
Processing by ApplicationController#index as HTML
|
30654
|
+
Completed 200 OK in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
30655
|
+
Processing by ApplicationController#index as HTML
|
30656
|
+
Completed 206 Partial Content in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
30657
|
+
Processing by ApplicationController#index as HTML
|
30658
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
30659
|
+
Processing by ApplicationController#index as HTML
|
30660
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
30661
|
+
Processing by ApplicationController#index as HTML
|
30662
|
+
Completed 206 Partial Content in 3ms (Views: 2.9ms | ActiveRecord: 0.0ms)
|
30663
|
+
Processing by ApplicationController#index as HTML
|
30664
|
+
Completed 200 OK in 1ms (Views: 1.1ms | ActiveRecord: 0.0ms)
|
30665
|
+
Processing by ApplicationController#index as HTML
|
30666
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
30667
|
+
Processing by ApplicationController#index as HTML
|
30668
|
+
Completed 206 Partial Content in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
30669
|
+
Processing by ApplicationController#index as HTML
|
30670
|
+
Completed 416 Requested Range Not Satisfiable in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
30671
|
+
Processing by ApplicationController#index as HTML
|
30672
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
30673
|
+
Processing by ApplicationController#index as HTML
|
30674
|
+
Completed 416 Requested Range Not Satisfiable in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
30675
|
+
Processing by ApplicationController#index as HTML
|
30676
|
+
Completed 206 Partial Content in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
30677
|
+
Processing by ApplicationController#index as HTML
|
30678
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
30679
|
+
Processing by ApplicationController#index as HTML
|
30680
|
+
Completed 206 Partial Content in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
30681
|
+
Processing by ApplicationController#index as HTML
|
30682
|
+
Completed 206 Partial Content in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
30683
|
+
Processing by ApplicationController#index as HTML
|
30684
|
+
Completed 206 Partial Content in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
30685
|
+
Processing by ApplicationController#index as HTML
|
30686
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
30687
|
+
Processing by ApplicationController#index as HTML
|
30688
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
30689
|
+
Processing by ApplicationController#index as HTML
|
30690
|
+
Completed 206 Partial Content in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
30691
|
+
Processing by ApplicationController#index as HTML
|
30692
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
30693
|
+
Processing by ApplicationController#index as HTML
|
30694
|
+
Completed 206 Partial Content in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
30695
|
+
Processing by ApplicationController#index as HTML
|
30696
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
30697
|
+
Processing by ApplicationController#index as HTML
|
30698
|
+
Completed 206 Partial Content in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
30699
|
+
Processing by ApplicationController#index as HTML
|
30700
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
30701
|
+
Processing by ApplicationController#index as HTML
|
30702
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
30703
|
+
Processing by ApplicationController#index as HTML
|
30704
|
+
Completed 200 OK in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
30705
|
+
Processing by ApplicationController#index as HTML
|
30706
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
30707
|
+
Processing by ApplicationController#index as HTML
|
30708
|
+
Completed 206 Partial Content in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
30709
|
+
Processing by ApplicationController#index as HTML
|
30710
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
30711
|
+
Processing by ApplicationController#index as HTML
|
30712
|
+
Completed 200 OK in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
30713
|
+
Processing by ApplicationController#index as HTML
|
30714
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
30715
|
+
Processing by ApplicationController#index as HTML
|
30716
|
+
Completed 206 Partial Content in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
30717
|
+
Processing by ApplicationController#index as HTML
|
30718
|
+
Completed 206 Partial Content in 5ms (Views: 1.8ms | ActiveRecord: 0.0ms)
|
30719
|
+
Processing by ApplicationController#index as HTML
|
30720
|
+
Completed 206 Partial Content in 2ms (Views: 1.6ms | ActiveRecord: 0.0ms)
|
30721
|
+
Processing by ApplicationController#index as HTML
|
30722
|
+
Completed 206 Partial Content in 2ms (Views: 1.3ms | ActiveRecord: 0.0ms)
|
30723
|
+
Processing by ApplicationController#index as HTML
|
30724
|
+
Completed 206 Partial Content in 2ms (Views: 1.1ms | ActiveRecord: 0.0ms)
|
30725
|
+
Processing by ApplicationController#index as HTML
|
30726
|
+
Completed 206 Partial Content in 2ms (Views: 1.2ms | ActiveRecord: 0.0ms)
|
30727
|
+
Processing by ApplicationController#index as HTML
|
30728
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
30729
|
+
Processing by ApplicationController#index as HTML
|
30730
|
+
Completed 206 Partial Content in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
30731
|
+
Processing by ApplicationController#index as HTML
|
30732
|
+
Completed 206 Partial Content in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
30733
|
+
Processing by ApplicationController#index as HTML
|
30734
|
+
Completed 206 Partial Content in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
30735
|
+
Processing by ApplicationController#index as HTML
|
30736
|
+
Completed 206 Partial Content in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
30737
|
+
Processing by ApplicationController#index as HTML
|
30738
|
+
Completed 206 Partial Content in 1ms (Views: 1.0ms | ActiveRecord: 0.0ms)
|
30739
|
+
Processing by ApplicationController#index as HTML
|
30740
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
30741
|
+
Processing by ApplicationController#index as HTML
|
30742
|
+
Completed 416 Requested Range Not Satisfiable in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
30743
|
+
Processing by ApplicationController#index as HTML
|
30744
|
+
Completed 200 OK in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
30745
|
+
Processing by ApplicationController#index as HTML
|
30746
|
+
Completed 200 OK in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
30747
|
+
Processing by ApplicationController#index as HTML
|
30748
|
+
Completed 206 Partial Content in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
30749
|
+
Processing by ApplicationController#index as HTML
|
30750
|
+
Completed 206 Partial Content in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
30751
|
+
Processing by ApplicationController#index as HTML
|
30752
|
+
Completed 416 Requested Range Not Satisfiable in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
30753
|
+
Processing by ApplicationController#index as HTML
|
30754
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
30755
|
+
Processing by ApplicationController#index as HTML
|
30756
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
30757
|
+
Processing by ApplicationController#index as HTML
|
30758
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
30759
|
+
Processing by ApplicationController#index as HTML
|
30760
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
30761
|
+
Processing by ApplicationController#index as HTML
|
30762
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
30763
|
+
Processing by ApplicationController#index as HTML
|
30764
|
+
Completed 206 Partial Content in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
30765
|
+
Processing by ApplicationController#index as HTML
|
30766
|
+
Completed 206 Partial Content in 4ms (Views: 1.3ms | ActiveRecord: 0.0ms)
|
30767
|
+
Processing by ApplicationController#index as HTML
|
30768
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
30769
|
+
Processing by ApplicationController#index as HTML
|
30770
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
30771
|
+
Processing by ApplicationController#index as HTML
|
30772
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
30773
|
+
Processing by ApplicationController#index as HTML
|
30774
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
30775
|
+
Processing by ApplicationController#index as HTML
|
30776
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
30777
|
+
Processing by ApplicationController#index as HTML
|
30778
|
+
Completed 206 Partial Content in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
30779
|
+
Processing by ApplicationController#index as HTML
|
30780
|
+
Completed 206 Partial Content in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
30781
|
+
Processing by ApplicationController#index as HTML
|
30782
|
+
Completed 206 Partial Content in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
30783
|
+
Processing by ApplicationController#index as HTML
|
30784
|
+
Completed 206 Partial Content in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
30785
|
+
Processing by ApplicationController#index as HTML
|
30786
|
+
Completed 206 Partial Content in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
30787
|
+
Processing by ApplicationController#index as HTML
|
30788
|
+
Completed 200 OK in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
30789
|
+
Processing by ApplicationController#index as HTML
|
30790
|
+
Completed 206 Partial Content in 3ms (Views: 1.7ms | ActiveRecord: 0.0ms)
|
30791
|
+
Processing by ApplicationController#index as HTML
|
30792
|
+
Completed 206 Partial Content in 2ms (Views: 1.6ms | ActiveRecord: 0.0ms)
|
30793
|
+
Processing by ApplicationController#index as HTML
|
30794
|
+
Completed 206 Partial Content in 2ms (Views: 1.2ms | ActiveRecord: 0.0ms)
|
30795
|
+
Processing by ApplicationController#index as HTML
|
30796
|
+
Completed 206 Partial Content in 2ms (Views: 1.1ms | ActiveRecord: 0.0ms)
|
30797
|
+
Processing by ApplicationController#index as HTML
|
30798
|
+
Completed 206 Partial Content in 2ms (Views: 1.1ms | ActiveRecord: 0.0ms)
|
30799
|
+
Processing by ApplicationController#index as HTML
|
30800
|
+
Completed 206 Partial Content in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
30801
|
+
Processing by ApplicationController#index as HTML
|
30802
|
+
Completed 200 OK in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
30803
|
+
Processing by ApplicationController#index as HTML
|
30804
|
+
Completed 206 Partial Content in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
30805
|
+
Processing by ApplicationController#index as HTML
|
30806
|
+
Completed 206 Partial Content in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
30807
|
+
Processing by ApplicationController#index as HTML
|
30808
|
+
Completed 200 OK in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
30809
|
+
Processing by ApplicationController#index as HTML
|
30810
|
+
Completed 200 OK in 4ms (Views: 3.0ms | ActiveRecord: 0.0ms)
|
30811
|
+
Processing by ApplicationController#index as HTML
|
30812
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
30813
|
+
Processing by ApplicationController#index as HTML
|
30814
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
30815
|
+
Processing by ApplicationController#index as HTML
|
30816
|
+
Completed 206 Partial Content in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
30817
|
+
Processing by ApplicationController#index as HTML
|
30818
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
30819
|
+
Processing by ApplicationController#index as HTML
|
30820
|
+
Completed 206 Partial Content in 2ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
30821
|
+
Processing by ApplicationController#index as HTML
|
30822
|
+
Completed 206 Partial Content in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
30823
|
+
Processing by ApplicationController#index as HTML
|
30824
|
+
Completed 206 Partial Content in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
30825
|
+
Processing by ApplicationController#index as HTML
|
30826
|
+
Completed 206 Partial Content in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
30827
|
+
Processing by ApplicationController#index as HTML
|
30828
|
+
Completed 206 Partial Content in 2ms (Views: 1.1ms | ActiveRecord: 0.0ms)
|
30829
|
+
Processing by ApplicationController#index as HTML
|
30830
|
+
Completed 206 Partial Content in 2ms (Views: 1.6ms | ActiveRecord: 0.0ms)
|
30831
|
+
Processing by ApplicationController#index as HTML
|
30832
|
+
Completed 206 Partial Content in 3ms (Views: 1.7ms | ActiveRecord: 0.0ms)
|
30833
|
+
Processing by ApplicationController#index as HTML
|
30834
|
+
Completed 206 Partial Content in 2ms (Views: 1.2ms | ActiveRecord: 0.0ms)
|
30835
|
+
Processing by ApplicationController#index as HTML
|
30836
|
+
Completed 200 OK in 2ms (Views: 1.1ms | ActiveRecord: 0.0ms)
|
30837
|
+
Processing by ApplicationController#index as HTML
|
30838
|
+
Completed 206 Partial Content in 2ms (Views: 1.1ms | ActiveRecord: 0.0ms)
|
30839
|
+
Processing by ApplicationController#index as HTML
|
30840
|
+
Completed 206 Partial Content in 2ms (Views: 1.0ms | ActiveRecord: 0.0ms)
|
30841
|
+
Processing by ApplicationController#index as HTML
|
30842
|
+
Completed 206 Partial Content in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
30843
|
+
Processing by ApplicationController#index as HTML
|
30844
|
+
Completed 206 Partial Content in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
30845
|
+
Processing by ApplicationController#index as HTML
|
30846
|
+
Completed 200 OK in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
30847
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
30848
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
30849
|
+
--------------------------------------------------------------------------------------
|
30850
|
+
ApplicationControllerTest: test_handles_ranges_beyond_collection_length_via_truncation
|
30851
|
+
--------------------------------------------------------------------------------------
|
30852
|
+
Processing by ApplicationController#index as HTML
|
30853
|
+
Completed 206 Partial Content in 1ms (Views: 1.0ms | ActiveRecord: 0.0ms)
|
30854
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
30855
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
30856
|
+
-----------------------------------------------------
|
30857
|
+
ApplicationControllerTest: test_includes_link_headers
|
30858
|
+
-----------------------------------------------------
|
30859
|
+
Processing by ApplicationController#index as HTML
|
30860
|
+
Completed 206 Partial Content in 1ms (Views: 1.2ms | ActiveRecord: 0.0ms)
|
30861
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
30862
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
30863
|
+
----------------------------------------------------------------------
|
30864
|
+
ApplicationControllerTest: test_infinite_collections_have_no_last_page
|
30865
|
+
----------------------------------------------------------------------
|
30866
|
+
Processing by ApplicationController#index as HTML
|
30867
|
+
Completed 206 Partial Content in 3ms (Views: 3.2ms | ActiveRecord: 0.0ms)
|
30868
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
30869
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
30870
|
+
-------------------------------------------------------------------------------
|
30871
|
+
ApplicationControllerTest: test_last_page_range_can_extend_beyond_the_last_item
|
30872
|
+
-------------------------------------------------------------------------------
|
30873
|
+
Processing by ApplicationController#index as HTML
|
30874
|
+
Completed 206 Partial Content in 1ms (Views: 1.2ms | ActiveRecord: 0.0ms)
|
30875
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
30876
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
30877
|
+
------------------------------------------------------------------------------------
|
30878
|
+
ApplicationControllerTest: test_next_link_with_omitted_end_number_shifts_by_max_page
|
30879
|
+
------------------------------------------------------------------------------------
|
30880
|
+
Processing by ApplicationController#index as HTML
|
30881
|
+
Completed 206 Partial Content in 2ms (Views: 1.3ms | ActiveRecord: 0.0ms)
|
30882
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
30883
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
30884
|
+
---------------------------------------------------------------------------
|
30885
|
+
ApplicationControllerTest: test_next_page_range_can_extend_beyond_last_item
|
30886
|
+
---------------------------------------------------------------------------
|
30887
|
+
Processing by ApplicationController#index as HTML
|
30888
|
+
Completed 206 Partial Content in 1ms (Views: 1.0ms | ActiveRecord: 0.0ms)
|
30889
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
30890
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
30891
|
+
----------------------------------------------------------------
|
30892
|
+
ApplicationControllerTest: test_omits_next_and_last_links_at_end
|
30893
|
+
----------------------------------------------------------------
|
30894
|
+
Processing by ApplicationController#index as HTML
|
30895
|
+
Completed 206 Partial Content in 1ms (Views: 1.1ms | ActiveRecord: 0.0ms)
|
30896
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
30897
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
30898
|
+
-------------------------------------------------------------------
|
30899
|
+
ApplicationControllerTest: test_omits_prev_and_first_links_at_start
|
30900
|
+
-------------------------------------------------------------------
|
30901
|
+
Processing by ApplicationController#index as HTML
|
30902
|
+
Completed 206 Partial Content in 1ms (Views: 1.1ms | ActiveRecord: 0.0ms)
|
30903
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
30904
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
30905
|
+
---------------------------------------------------------------------------
|
30906
|
+
ApplicationControllerTest: test_omitting_the_end_number_asks_for_everything
|
30907
|
+
---------------------------------------------------------------------------
|
30908
|
+
Processing by ApplicationController#index as HTML
|
30909
|
+
Completed 206 Partial Content in 1ms (Views: 1.2ms | ActiveRecord: 0.0ms)
|
30910
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
30911
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
30912
|
+
-------------------------------------------------------------------------------
|
30913
|
+
ApplicationControllerTest: test_omitting_the_end_number_omits_in_first_link_too
|
30914
|
+
-------------------------------------------------------------------------------
|
30915
|
+
Processing by ApplicationController#index as HTML
|
30916
|
+
Completed 206 Partial Content in 1ms (Views: 1.1ms | ActiveRecord: 0.0ms)
|
30917
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
30918
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
30919
|
+
---------------------------------------------------------------------
|
30920
|
+
ApplicationControllerTest: test_passes_along_exceptional_status_codes
|
30921
|
+
---------------------------------------------------------------------
|
30922
|
+
Processing by ApplicationController#index as HTML
|
30923
|
+
Completed 100 Continue in 1ms (Views: 1.2ms | ActiveRecord: 0.0ms)
|
30924
|
+
Processing by ApplicationController#index as HTML
|
30925
|
+
Completed 301 Moved Permanently in 1ms (Views: 1.0ms | ActiveRecord: 0.0ms)
|
30926
|
+
Processing by ApplicationController#index as HTML
|
30927
|
+
Completed 404 Not Found in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
30928
|
+
Processing by ApplicationController#index as HTML
|
30929
|
+
Completed 500 Internal Server Error in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
30930
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
30931
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
30932
|
+
--------------------------------------------------------------------------
|
30933
|
+
ApplicationControllerTest: test_preserves_query_parameters_in_link_headers
|
30934
|
+
--------------------------------------------------------------------------
|
30935
|
+
Processing by ApplicationController#index as HTML
|
30936
|
+
Parameters: {"foo"=>"bar"}
|
30937
|
+
Completed 206 Partial Content in 1ms (Views: 1.1ms | ActiveRecord: 0.0ms)
|
30938
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
30939
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
30940
|
+
----------------------------------------------------------------
|
30941
|
+
ApplicationControllerTest: test_prev_is_the_left_inverse_of_next
|
30942
|
+
----------------------------------------------------------------
|
30943
|
+
Processing by ApplicationController#index as HTML
|
30944
|
+
Completed 206 Partial Content in 1ms (Views: 1.0ms | ActiveRecord: 0.0ms)
|
30945
|
+
Processing by ApplicationController#index as HTML
|
30946
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
30947
|
+
Processing by ApplicationController#index as HTML
|
30948
|
+
Completed 206 Partial Content in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
30949
|
+
Processing by ApplicationController#index as HTML
|
30950
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
30951
|
+
Processing by ApplicationController#index as HTML
|
30952
|
+
Completed 206 Partial Content in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
30953
|
+
Processing by ApplicationController#index as HTML
|
30954
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
30955
|
+
Processing by ApplicationController#index as HTML
|
30956
|
+
Completed 200 OK in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
30957
|
+
Processing by ApplicationController#index as HTML
|
30958
|
+
Completed 200 OK in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
30959
|
+
Processing by ApplicationController#index as HTML
|
30960
|
+
Completed 206 Partial Content in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
30961
|
+
Processing by ApplicationController#index as HTML
|
30962
|
+
Completed 206 Partial Content in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
30963
|
+
Processing by ApplicationController#index as HTML
|
30964
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
30965
|
+
Processing by ApplicationController#index as HTML
|
30966
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
30967
|
+
Processing by ApplicationController#index as HTML
|
30968
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
30969
|
+
Processing by ApplicationController#index as HTML
|
30970
|
+
Completed 206 Partial Content in 2ms (Views: 1.8ms | ActiveRecord: 0.0ms)
|
30971
|
+
Processing by ApplicationController#index as HTML
|
30972
|
+
Completed 206 Partial Content in 2ms (Views: 1.7ms | ActiveRecord: 0.0ms)
|
30973
|
+
Processing by ApplicationController#index as HTML
|
30974
|
+
Completed 206 Partial Content in 2ms (Views: 1.5ms | ActiveRecord: 0.0ms)
|
30975
|
+
Processing by ApplicationController#index as HTML
|
30976
|
+
Completed 206 Partial Content in 2ms (Views: 1.3ms | ActiveRecord: 0.0ms)
|
30977
|
+
Processing by ApplicationController#index as HTML
|
30978
|
+
Completed 206 Partial Content in 2ms (Views: 1.3ms | ActiveRecord: 0.0ms)
|
30979
|
+
Processing by ApplicationController#index as HTML
|
30980
|
+
Completed 206 Partial Content in 1ms (Views: 1.2ms | ActiveRecord: 0.0ms)
|
30981
|
+
Processing by ApplicationController#index as HTML
|
30982
|
+
Completed 200 OK in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
30983
|
+
Processing by ApplicationController#index as HTML
|
30984
|
+
Completed 206 Partial Content in 4ms (Views: 3.3ms | ActiveRecord: 0.0ms)
|
30985
|
+
Processing by ApplicationController#index as HTML
|
30986
|
+
Completed 206 Partial Content in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
30987
|
+
Processing by ApplicationController#index as HTML
|
30988
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
30989
|
+
Processing by ApplicationController#index as HTML
|
30990
|
+
Completed 206 Partial Content in 1ms (Views: 1.0ms | ActiveRecord: 0.0ms)
|
30991
|
+
Processing by ApplicationController#index as HTML
|
30992
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
30993
|
+
Processing by ApplicationController#index as HTML
|
30994
|
+
Completed 200 OK in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
30995
|
+
Processing by ApplicationController#index as HTML
|
30996
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
30997
|
+
Processing by ApplicationController#index as HTML
|
30998
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
30999
|
+
Processing by ApplicationController#index as HTML
|
31000
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
31001
|
+
Processing by ApplicationController#index as HTML
|
31002
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
31003
|
+
Processing by ApplicationController#index as HTML
|
31004
|
+
Completed 206 Partial Content in 1ms (Views: 1.0ms | ActiveRecord: 0.0ms)
|
31005
|
+
Processing by ApplicationController#index as HTML
|
31006
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
31007
|
+
Processing by ApplicationController#index as HTML
|
31008
|
+
Completed 206 Partial Content in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
31009
|
+
Processing by ApplicationController#index as HTML
|
31010
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
31011
|
+
Processing by ApplicationController#index as HTML
|
31012
|
+
Completed 206 Partial Content in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
31013
|
+
Processing by ApplicationController#index as HTML
|
31014
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
31015
|
+
Processing by ApplicationController#index as HTML
|
31016
|
+
Completed 206 Partial Content in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
31017
|
+
Processing by ApplicationController#index as HTML
|
31018
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
31019
|
+
Processing by ApplicationController#index as HTML
|
31020
|
+
Completed 200 OK in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
31021
|
+
Processing by ApplicationController#index as HTML
|
31022
|
+
Completed 206 Partial Content in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
31023
|
+
Processing by ApplicationController#index as HTML
|
31024
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
31025
|
+
Processing by ApplicationController#index as HTML
|
31026
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
31027
|
+
Processing by ApplicationController#index as HTML
|
31028
|
+
Completed 206 Partial Content in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
31029
|
+
Processing by ApplicationController#index as HTML
|
31030
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
31031
|
+
Processing by ApplicationController#index as HTML
|
31032
|
+
Completed 206 Partial Content in 1ms (Views: 1.1ms | ActiveRecord: 0.0ms)
|
31033
|
+
Processing by ApplicationController#index as HTML
|
31034
|
+
Completed 206 Partial Content in 1ms (Views: 1.0ms | ActiveRecord: 0.0ms)
|
31035
|
+
Processing by ApplicationController#index as HTML
|
31036
|
+
Completed 206 Partial Content in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
31037
|
+
Processing by ApplicationController#index as HTML
|
31038
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
31039
|
+
Processing by ApplicationController#index as HTML
|
31040
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
31041
|
+
Processing by ApplicationController#index as HTML
|
31042
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
31043
|
+
Processing by ApplicationController#index as HTML
|
31044
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
31045
|
+
Processing by ApplicationController#index as HTML
|
31046
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
31047
|
+
Processing by ApplicationController#index as HTML
|
31048
|
+
Completed 206 Partial Content in 5ms (Views: 1.9ms | ActiveRecord: 0.0ms)
|
31049
|
+
Processing by ApplicationController#index as HTML
|
31050
|
+
Completed 206 Partial Content in 2ms (Views: 1.6ms | ActiveRecord: 0.0ms)
|
31051
|
+
Processing by ApplicationController#index as HTML
|
31052
|
+
Completed 206 Partial Content in 1ms (Views: 1.1ms | ActiveRecord: 0.0ms)
|
31053
|
+
Processing by ApplicationController#index as HTML
|
31054
|
+
Completed 206 Partial Content in 2ms (Views: 1.3ms | ActiveRecord: 0.0ms)
|
31055
|
+
Processing by ApplicationController#index as HTML
|
31056
|
+
Completed 206 Partial Content in 1ms (Views: 1.1ms | ActiveRecord: 0.0ms)
|
31057
|
+
Processing by ApplicationController#index as HTML
|
31058
|
+
Completed 206 Partial Content in 1ms (Views: 1.1ms | ActiveRecord: 0.0ms)
|
31059
|
+
Processing by ApplicationController#index as HTML
|
31060
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
31061
|
+
Processing by ApplicationController#index as HTML
|
31062
|
+
Completed 206 Partial Content in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
31063
|
+
Processing by ApplicationController#index as HTML
|
31064
|
+
Completed 200 OK in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
31065
|
+
Processing by ApplicationController#index as HTML
|
31066
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
31067
|
+
Processing by ApplicationController#index as HTML
|
31068
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
31069
|
+
Processing by ApplicationController#index as HTML
|
31070
|
+
Completed 206 Partial Content in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
31071
|
+
Processing by ApplicationController#index as HTML
|
31072
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
31073
|
+
Processing by ApplicationController#index as HTML
|
31074
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
31075
|
+
Processing by ApplicationController#index as HTML
|
31076
|
+
Completed 206 Partial Content in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
31077
|
+
Processing by ApplicationController#index as HTML
|
31078
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
31079
|
+
Processing by ApplicationController#index as HTML
|
31080
|
+
Completed 206 Partial Content in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
31081
|
+
Processing by ApplicationController#index as HTML
|
31082
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
31083
|
+
Processing by ApplicationController#index as HTML
|
31084
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
31085
|
+
Processing by ApplicationController#index as HTML
|
31086
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
31087
|
+
Processing by ApplicationController#index as HTML
|
31088
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
31089
|
+
Processing by ApplicationController#index as HTML
|
31090
|
+
Completed 206 Partial Content in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
31091
|
+
Processing by ApplicationController#index as HTML
|
31092
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
31093
|
+
Processing by ApplicationController#index as HTML
|
31094
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
31095
|
+
Processing by ApplicationController#index as HTML
|
31096
|
+
Completed 206 Partial Content in 1ms (Views: 1.0ms | ActiveRecord: 0.0ms)
|
31097
|
+
Processing by ApplicationController#index as HTML
|
31098
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
31099
|
+
Processing by ApplicationController#index as HTML
|
31100
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
31101
|
+
Processing by ApplicationController#index as HTML
|
31102
|
+
Completed 206 Partial Content in 4ms (Views: 1.4ms | ActiveRecord: 0.0ms)
|
31103
|
+
Processing by ApplicationController#index as HTML
|
31104
|
+
Completed 200 OK in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
31105
|
+
Processing by ApplicationController#index as HTML
|
31106
|
+
Completed 200 OK in 1ms (Views: 1.1ms | ActiveRecord: 0.0ms)
|
31107
|
+
Processing by ApplicationController#index as HTML
|
31108
|
+
Completed 206 Partial Content in 2ms (Views: 1.6ms | ActiveRecord: 0.0ms)
|
31109
|
+
Processing by ApplicationController#index as HTML
|
31110
|
+
Completed 206 Partial Content in 2ms (Views: 1.6ms | ActiveRecord: 0.0ms)
|
31111
|
+
Processing by ApplicationController#index as HTML
|
31112
|
+
Completed 206 Partial Content in 2ms (Views: 1.2ms | ActiveRecord: 0.0ms)
|
31113
|
+
Processing by ApplicationController#index as HTML
|
31114
|
+
Completed 206 Partial Content in 2ms (Views: 1.1ms | ActiveRecord: 0.0ms)
|
31115
|
+
Processing by ApplicationController#index as HTML
|
31116
|
+
Completed 206 Partial Content in 2ms (Views: 1.8ms | ActiveRecord: 0.0ms)
|
31117
|
+
Processing by ApplicationController#index as HTML
|
31118
|
+
Completed 206 Partial Content in 2ms (Views: 1.6ms | ActiveRecord: 0.0ms)
|
31119
|
+
Processing by ApplicationController#index as HTML
|
31120
|
+
Completed 206 Partial Content in 2ms (Views: 1.4ms | ActiveRecord: 0.0ms)
|
31121
|
+
Processing by ApplicationController#index as HTML
|
31122
|
+
Completed 206 Partial Content in 2ms (Views: 1.1ms | ActiveRecord: 0.0ms)
|
31123
|
+
Processing by ApplicationController#index as HTML
|
31124
|
+
Completed 206 Partial Content in 2ms (Views: 1.1ms | ActiveRecord: 0.0ms)
|
31125
|
+
Processing by ApplicationController#index as HTML
|
31126
|
+
Completed 206 Partial Content in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
31127
|
+
Processing by ApplicationController#index as HTML
|
31128
|
+
Completed 206 Partial Content in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
31129
|
+
Processing by ApplicationController#index as HTML
|
31130
|
+
Completed 206 Partial Content in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
31131
|
+
Processing by ApplicationController#index as HTML
|
31132
|
+
Completed 206 Partial Content in 1ms (Views: 1.0ms | ActiveRecord: 0.0ms)
|
31133
|
+
Processing by ApplicationController#index as HTML
|
31134
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
31135
|
+
Processing by ApplicationController#index as HTML
|
31136
|
+
Completed 206 Partial Content in 1ms (Views: 1.0ms | ActiveRecord: 0.0ms)
|
31137
|
+
Processing by ApplicationController#index as HTML
|
31138
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
31139
|
+
Processing by ApplicationController#index as HTML
|
31140
|
+
Completed 206 Partial Content in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
31141
|
+
Processing by ApplicationController#index as HTML
|
31142
|
+
Completed 206 Partial Content in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
31143
|
+
Processing by ApplicationController#index as HTML
|
31144
|
+
Completed 206 Partial Content in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
31145
|
+
Processing by ApplicationController#index as HTML
|
31146
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
31147
|
+
Processing by ApplicationController#index as HTML
|
31148
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
31149
|
+
Processing by ApplicationController#index as HTML
|
31150
|
+
Completed 206 Partial Content in 4ms (Views: 1.3ms | ActiveRecord: 0.0ms)
|
31151
|
+
Processing by ApplicationController#index as HTML
|
31152
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
31153
|
+
Processing by ApplicationController#index as HTML
|
31154
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
31155
|
+
Processing by ApplicationController#index as HTML
|
31156
|
+
Completed 206 Partial Content in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
31157
|
+
Processing by ApplicationController#index as HTML
|
31158
|
+
Completed 206 Partial Content in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
31159
|
+
Processing by ApplicationController#index as HTML
|
31160
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
31161
|
+
Processing by ApplicationController#index as HTML
|
31162
|
+
Completed 206 Partial Content in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
31163
|
+
Processing by ApplicationController#index as HTML
|
31164
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
31165
|
+
Processing by ApplicationController#index as HTML
|
31166
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
31167
|
+
Processing by ApplicationController#index as HTML
|
31168
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
31169
|
+
Processing by ApplicationController#index as HTML
|
31170
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
31171
|
+
Processing by ApplicationController#index as HTML
|
31172
|
+
Completed 206 Partial Content in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
31173
|
+
Processing by ApplicationController#index as HTML
|
31174
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
31175
|
+
Processing by ApplicationController#index as HTML
|
31176
|
+
Completed 206 Partial Content in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
31177
|
+
Processing by ApplicationController#index as HTML
|
31178
|
+
Completed 206 Partial Content in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
31179
|
+
Processing by ApplicationController#index as HTML
|
31180
|
+
Completed 206 Partial Content in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
31181
|
+
Processing by ApplicationController#index as HTML
|
31182
|
+
Completed 206 Partial Content in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
31183
|
+
Processing by ApplicationController#index as HTML
|
31184
|
+
Completed 206 Partial Content in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
31185
|
+
Processing by ApplicationController#index as HTML
|
31186
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
31187
|
+
Processing by ApplicationController#index as HTML
|
31188
|
+
Completed 206 Partial Content in 2ms (Views: 1.7ms | ActiveRecord: 0.0ms)
|
31189
|
+
Processing by ApplicationController#index as HTML
|
31190
|
+
Completed 206 Partial Content in 2ms (Views: 1.6ms | ActiveRecord: 0.0ms)
|
31191
|
+
Processing by ApplicationController#index as HTML
|
31192
|
+
Completed 206 Partial Content in 2ms (Views: 1.5ms | ActiveRecord: 0.0ms)
|
31193
|
+
Processing by ApplicationController#index as HTML
|
31194
|
+
Completed 206 Partial Content in 4ms (Views: 1.2ms | ActiveRecord: 0.0ms)
|
31195
|
+
Processing by ApplicationController#index as HTML
|
31196
|
+
Completed 206 Partial Content in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
31197
|
+
Processing by ApplicationController#index as HTML
|
31198
|
+
Completed 206 Partial Content in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
31199
|
+
Processing by ApplicationController#index as HTML
|
31200
|
+
Completed 206 Partial Content in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
31201
|
+
Processing by ApplicationController#index as HTML
|
31202
|
+
Completed 206 Partial Content in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
31203
|
+
Processing by ApplicationController#index as HTML
|
31204
|
+
Completed 206 Partial Content in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
31205
|
+
Processing by ApplicationController#index as HTML
|
31206
|
+
Completed 206 Partial Content in 2ms (Views: 1.0ms | ActiveRecord: 0.0ms)
|
31207
|
+
Processing by ApplicationController#index as HTML
|
31208
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
31209
|
+
Processing by ApplicationController#index as HTML
|
31210
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
31211
|
+
Processing by ApplicationController#index as HTML
|
31212
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
31213
|
+
Processing by ApplicationController#index as HTML
|
31214
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
31215
|
+
Processing by ApplicationController#index as HTML
|
31216
|
+
Completed 206 Partial Content in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
31217
|
+
Processing by ApplicationController#index as HTML
|
31218
|
+
Completed 206 Partial Content in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
31219
|
+
Processing by ApplicationController#index as HTML
|
31220
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
31221
|
+
Processing by ApplicationController#index as HTML
|
31222
|
+
Completed 206 Partial Content in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
31223
|
+
Processing by ApplicationController#index as HTML
|
31224
|
+
Completed 206 Partial Content in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
31225
|
+
Processing by ApplicationController#index as HTML
|
31226
|
+
Completed 206 Partial Content in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
31227
|
+
Processing by ApplicationController#index as HTML
|
31228
|
+
Completed 206 Partial Content in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
31229
|
+
Processing by ApplicationController#index as HTML
|
31230
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
31231
|
+
Processing by ApplicationController#index as HTML
|
31232
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
31233
|
+
Processing by ApplicationController#index as HTML
|
31234
|
+
Completed 206 Partial Content in 4ms (Views: 1.4ms | ActiveRecord: 0.0ms)
|
31235
|
+
Processing by ApplicationController#index as HTML
|
31236
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
31237
|
+
Processing by ApplicationController#index as HTML
|
31238
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
31239
|
+
Processing by ApplicationController#index as HTML
|
31240
|
+
Completed 206 Partial Content in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
31241
|
+
Processing by ApplicationController#index as HTML
|
31242
|
+
Completed 206 Partial Content in 2ms (Views: 1.1ms | ActiveRecord: 0.0ms)
|
31243
|
+
Processing by ApplicationController#index as HTML
|
31244
|
+
Completed 206 Partial Content in 2ms (Views: 1.1ms | ActiveRecord: 0.0ms)
|
31245
|
+
Processing by ApplicationController#index as HTML
|
31246
|
+
Completed 206 Partial Content in 2ms (Views: 1.1ms | ActiveRecord: 0.0ms)
|
31247
|
+
Processing by ApplicationController#index as HTML
|
31248
|
+
Completed 206 Partial Content in 2ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
31249
|
+
Processing by ApplicationController#index as HTML
|
31250
|
+
Completed 206 Partial Content in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
31251
|
+
Processing by ApplicationController#index as HTML
|
31252
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
31253
|
+
Processing by ApplicationController#index as HTML
|
31254
|
+
Completed 206 Partial Content in 2ms (Views: 1.1ms | ActiveRecord: 0.0ms)
|
31255
|
+
Processing by ApplicationController#index as HTML
|
31256
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
31257
|
+
Processing by ApplicationController#index as HTML
|
31258
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
31259
|
+
Processing by ApplicationController#index as HTML
|
31260
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
31261
|
+
Processing by ApplicationController#index as HTML
|
31262
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
31263
|
+
Processing by ApplicationController#index as HTML
|
31264
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
31265
|
+
Processing by ApplicationController#index as HTML
|
31266
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
31267
|
+
Processing by ApplicationController#index as HTML
|
31268
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
31269
|
+
Processing by ApplicationController#index as HTML
|
31270
|
+
Completed 206 Partial Content in 3ms (Views: 2.8ms | ActiveRecord: 0.0ms)
|
31271
|
+
Processing by ApplicationController#index as HTML
|
31272
|
+
Completed 206 Partial Content in 2ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
31273
|
+
Processing by ApplicationController#index as HTML
|
31274
|
+
Completed 206 Partial Content in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
31275
|
+
Processing by ApplicationController#index as HTML
|
31276
|
+
Completed 206 Partial Content in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
31277
|
+
Processing by ApplicationController#index as HTML
|
31278
|
+
Completed 206 Partial Content in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
31279
|
+
Processing by ApplicationController#index as HTML
|
31280
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
31281
|
+
Processing by ApplicationController#index as HTML
|
31282
|
+
Completed 206 Partial Content in 2ms (Views: 1.0ms | ActiveRecord: 0.0ms)
|
31283
|
+
Processing by ApplicationController#index as HTML
|
31284
|
+
Completed 200 OK in 1ms (Views: 1.0ms | ActiveRecord: 0.0ms)
|
31285
|
+
Processing by ApplicationController#index as HTML
|
31286
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
31287
|
+
Processing by ApplicationController#index as HTML
|
31288
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
31289
|
+
Processing by ApplicationController#index as HTML
|
31290
|
+
Completed 206 Partial Content in 2ms (Views: 1.0ms | ActiveRecord: 0.0ms)
|
31291
|
+
Processing by ApplicationController#index as HTML
|
31292
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
31293
|
+
Processing by ApplicationController#index as HTML
|
31294
|
+
Completed 206 Partial Content in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
31295
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
31296
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
31297
|
+
------------------------------------------------------------------------------------
|
31298
|
+
ApplicationControllerTest: test_prev_link_with_omitted_end_number_shifts_by_max_page
|
31299
|
+
------------------------------------------------------------------------------------
|
31300
|
+
Processing by ApplicationController#index as HTML
|
31301
|
+
Completed 206 Partial Content in 1ms (Views: 1.1ms | ActiveRecord: 0.0ms)
|
31302
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
31303
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
31304
|
+
----------------------------------------------------------------------
|
31305
|
+
ApplicationControllerTest: test_previous_page_range_cannot_go_negative
|
31306
|
+
----------------------------------------------------------------------
|
31307
|
+
Processing by ApplicationController#index as HTML
|
31308
|
+
Completed 206 Partial Content in 1ms (Views: 1.2ms | ActiveRecord: 0.0ms)
|
31309
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
31310
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
31311
|
+
--------------------------------------------------------------------------------------------
|
31312
|
+
ApplicationControllerTest: test_rangeless_request_range_works_normally_if_max_range_>=_total
|
31313
|
+
--------------------------------------------------------------------------------------------
|
31314
|
+
Processing by ApplicationController#index as HTML
|
31315
|
+
Completed 200 OK in 1ms (Views: 1.0ms | ActiveRecord: 0.0ms)
|
31316
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
31317
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
31318
|
+
--------------------------------------------------------------------------------
|
31319
|
+
ApplicationControllerTest: test_rangeless_request_truncates_if_max_range_<_total
|
31320
|
+
--------------------------------------------------------------------------------
|
31321
|
+
Processing by ApplicationController#index as HTML
|
31322
|
+
Completed 206 Partial Content in 1ms (Views: 1.0ms | ActiveRecord: 0.0ms)
|
31323
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
31324
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
31325
|
+
------------------------------------------------------
|
31326
|
+
ApplicationControllerTest: test_refuses_offside_ranges
|
31327
|
+
------------------------------------------------------
|
31328
|
+
Processing by ApplicationController#index as HTML
|
31329
|
+
Completed 416 Requested Range Not Satisfiable in 1ms (Views: 1.0ms | ActiveRecord: 0.0ms)
|
31330
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
31331
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
31332
|
+
------------------------------------------------------------
|
31333
|
+
ApplicationControllerTest: test_refuses_range_start_past_end
|
31334
|
+
------------------------------------------------------------
|
31335
|
+
Processing by ApplicationController#index as HTML
|
31336
|
+
Completed 416 Requested Range Not Satisfiable in 1ms (Views: 1.1ms | ActiveRecord: 0.0ms)
|
31337
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
31338
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
31339
|
+
-------------------------------------------------------------------
|
31340
|
+
ApplicationControllerTest: test_reports_infinite/unknown_collection
|
31341
|
+
-------------------------------------------------------------------
|
31342
|
+
Processing by ApplicationController#index as HTML
|
31343
|
+
Completed 206 Partial Content in 3ms (Views: 3.1ms | ActiveRecord: 0.0ms)
|
31344
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
31345
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
31346
|
+
---------------------------------------------------------------------------------------
|
31347
|
+
ApplicationControllerTest: test_shifts_penultimate_page_to_beginning,_preserving_length
|
31348
|
+
---------------------------------------------------------------------------------------
|
31349
|
+
Processing by ApplicationController#index as HTML
|
31350
|
+
Completed 206 Partial Content in 2ms (Views: 1.7ms | ActiveRecord: 0.0ms)
|
31351
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
31352
|
+
[1m[36m (0.3ms)[0m [1mbegin transaction[0m
|
31353
|
+
------------------------------------------------------------
|
31354
|
+
ApplicationControllerTest: test_an_acceptable_range_succeeds
|
31355
|
+
------------------------------------------------------------
|
31356
|
+
Processing by ApplicationController#index as HTML
|
31357
|
+
Rendered application/index.html.erb within layouts/application (0.7ms)
|
31358
|
+
Completed 206 Partial Content in 10ms (Views: 9.3ms | ActiveRecord: 0.0ms)
|
31359
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
31360
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
31361
|
+
---------------------------------------------------------------
|
31362
|
+
ApplicationControllerTest: test_an_oversized_range_is_truncated
|
31363
|
+
---------------------------------------------------------------
|
31364
|
+
Processing by ApplicationController#index as HTML
|
31365
|
+
Completed 206 Partial Content in 1ms (Views: 1.2ms | ActiveRecord: 0.0ms)
|
31366
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
31367
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
31368
|
+
----------------------------------------------------------------------
|
31369
|
+
ApplicationControllerTest: test_first_page_range_always_starts_at_zero
|
31370
|
+
----------------------------------------------------------------------
|
31371
|
+
Processing by ApplicationController#index as HTML
|
31372
|
+
Completed 206 Partial Content in 1ms (Views: 1.1ms | ActiveRecord: 0.0ms)
|
31373
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
31374
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
31375
|
+
-------------------------------------------------------------------------------------
|
31376
|
+
ApplicationControllerTest: test_for_from_>_to-from,_next_is_the_right_inverse_of_prev
|
31377
|
+
-------------------------------------------------------------------------------------
|
31378
|
+
Processing by ApplicationController#index as HTML
|
31379
|
+
Completed 206 Partial Content in 1ms (Views: 1.1ms | ActiveRecord: 0.0ms)
|
31380
|
+
Processing by ApplicationController#index as HTML
|
31381
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
31382
|
+
Processing by ApplicationController#index as HTML
|
31383
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
31384
|
+
Processing by ApplicationController#index as HTML
|
31385
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
31386
|
+
Processing by ApplicationController#index as HTML
|
31387
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
31388
|
+
Processing by ApplicationController#index as HTML
|
31389
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
31390
|
+
Processing by ApplicationController#index as HTML
|
31391
|
+
Completed 206 Partial Content in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
31392
|
+
Processing by ApplicationController#index as HTML
|
31393
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
31394
|
+
Processing by ApplicationController#index as HTML
|
31395
|
+
Completed 206 Partial Content in 6ms (Views: 5.5ms | ActiveRecord: 0.0ms)
|
31396
|
+
Processing by ApplicationController#index as HTML
|
31397
|
+
Completed 206 Partial Content in 1ms (Views: 1.2ms | ActiveRecord: 0.0ms)
|
31398
|
+
Processing by ApplicationController#index as HTML
|
31399
|
+
Completed 206 Partial Content in 2ms (Views: 1.7ms | ActiveRecord: 0.0ms)
|
31400
|
+
Processing by ApplicationController#index as HTML
|
31401
|
+
Completed 206 Partial Content in 2ms (Views: 1.6ms | ActiveRecord: 0.0ms)
|
31402
|
+
Processing by ApplicationController#index as HTML
|
31403
|
+
Completed 416 Requested Range Not Satisfiable in 2ms (Views: 1.4ms | ActiveRecord: 0.0ms)
|
31404
|
+
Processing by ApplicationController#index as HTML
|
31405
|
+
Completed 200 OK in 1ms (Views: 1.1ms | ActiveRecord: 0.0ms)
|
31406
|
+
Processing by ApplicationController#index as HTML
|
31407
|
+
Completed 206 Partial Content in 1ms (Views: 1.1ms | ActiveRecord: 0.0ms)
|
31408
|
+
Processing by ApplicationController#index as HTML
|
31409
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
31410
|
+
Processing by ApplicationController#index as HTML
|
31411
|
+
Completed 206 Partial Content in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
31412
|
+
Processing by ApplicationController#index as HTML
|
31413
|
+
Completed 206 Partial Content in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
31414
|
+
Processing by ApplicationController#index as HTML
|
31415
|
+
Completed 206 Partial Content in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
31416
|
+
Processing by ApplicationController#index as HTML
|
31417
|
+
Completed 206 Partial Content in 2ms (Views: 1.5ms | ActiveRecord: 0.0ms)
|
31418
|
+
Processing by ApplicationController#index as HTML
|
31419
|
+
Completed 206 Partial Content in 1ms (Views: 1.0ms | ActiveRecord: 0.0ms)
|
31420
|
+
Processing by ApplicationController#index as HTML
|
31421
|
+
Completed 206 Partial Content in 1ms (Views: 1.0ms | ActiveRecord: 0.0ms)
|
31422
|
+
Processing by ApplicationController#index as HTML
|
31423
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
31424
|
+
Processing by ApplicationController#index as HTML
|
31425
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
31426
|
+
Processing by ApplicationController#index as HTML
|
31427
|
+
Completed 206 Partial Content in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
31428
|
+
Processing by ApplicationController#index as HTML
|
31429
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
31430
|
+
Processing by ApplicationController#index as HTML
|
31431
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
31432
|
+
Processing by ApplicationController#index as HTML
|
31433
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
31434
|
+
Processing by ApplicationController#index as HTML
|
31435
|
+
Completed 206 Partial Content in 1ms (Views: 1.0ms | ActiveRecord: 0.0ms)
|
31436
|
+
Processing by ApplicationController#index as HTML
|
31437
|
+
Completed 200 OK in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
31438
|
+
Processing by ApplicationController#index as HTML
|
31439
|
+
Completed 206 Partial Content in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
31440
|
+
Processing by ApplicationController#index as HTML
|
31441
|
+
Completed 206 Partial Content in 1ms (Views: 1.1ms | ActiveRecord: 0.0ms)
|
31442
|
+
Processing by ApplicationController#index as HTML
|
31443
|
+
Completed 200 OK in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
31444
|
+
Processing by ApplicationController#index as HTML
|
31445
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
31446
|
+
Processing by ApplicationController#index as HTML
|
31447
|
+
Completed 206 Partial Content in 1ms (Views: 1.0ms | ActiveRecord: 0.0ms)
|
31448
|
+
Processing by ApplicationController#index as HTML
|
31449
|
+
Completed 206 Partial Content in 2ms (Views: 1.6ms | ActiveRecord: 0.0ms)
|
31450
|
+
Processing by ApplicationController#index as HTML
|
31451
|
+
Completed 206 Partial Content in 2ms (Views: 1.4ms | ActiveRecord: 0.0ms)
|
31452
|
+
Processing by ApplicationController#index as HTML
|
31453
|
+
Completed 200 OK in 2ms (Views: 1.5ms | ActiveRecord: 0.0ms)
|
31454
|
+
Processing by ApplicationController#index as HTML
|
31455
|
+
Completed 206 Partial Content in 2ms (Views: 1.5ms | ActiveRecord: 0.0ms)
|
31456
|
+
Processing by ApplicationController#index as HTML
|
31457
|
+
Completed 206 Partial Content in 2ms (Views: 1.7ms | ActiveRecord: 0.0ms)
|
31458
|
+
Processing by ApplicationController#index as HTML
|
31459
|
+
Completed 206 Partial Content in 2ms (Views: 1.5ms | ActiveRecord: 0.0ms)
|
31460
|
+
Processing by ApplicationController#index as HTML
|
31461
|
+
Completed 206 Partial Content in 2ms (Views: 1.4ms | ActiveRecord: 0.0ms)
|
31462
|
+
Processing by ApplicationController#index as HTML
|
31463
|
+
Completed 206 Partial Content in 2ms (Views: 1.5ms | ActiveRecord: 0.0ms)
|
31464
|
+
Processing by ApplicationController#index as HTML
|
31465
|
+
Completed 206 Partial Content in 2ms (Views: 1.7ms | ActiveRecord: 0.0ms)
|
31466
|
+
Processing by ApplicationController#index as HTML
|
31467
|
+
Completed 206 Partial Content in 2ms (Views: 1.8ms | ActiveRecord: 0.0ms)
|
31468
|
+
Processing by ApplicationController#index as HTML
|
31469
|
+
Completed 206 Partial Content in 2ms (Views: 1.7ms | ActiveRecord: 0.0ms)
|
31470
|
+
Processing by ApplicationController#index as HTML
|
31471
|
+
Completed 200 OK in 2ms (Views: 1.2ms | ActiveRecord: 0.0ms)
|
31472
|
+
Processing by ApplicationController#index as HTML
|
31473
|
+
Completed 416 Requested Range Not Satisfiable in 2ms (Views: 1.3ms | ActiveRecord: 0.0ms)
|
31474
|
+
Processing by ApplicationController#index as HTML
|
31475
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
31476
|
+
Processing by ApplicationController#index as HTML
|
31477
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
31478
|
+
Processing by ApplicationController#index as HTML
|
31479
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
31480
|
+
Processing by ApplicationController#index as HTML
|
31481
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
31482
|
+
Processing by ApplicationController#index as HTML
|
31483
|
+
Completed 206 Partial Content in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
31484
|
+
Processing by ApplicationController#index as HTML
|
31485
|
+
Completed 206 Partial Content in 1ms (Views: 1.0ms | ActiveRecord: 0.0ms)
|
31486
|
+
Processing by ApplicationController#index as HTML
|
31487
|
+
Completed 206 Partial Content in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
31488
|
+
Processing by ApplicationController#index as HTML
|
31489
|
+
Completed 206 Partial Content in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
31490
|
+
Processing by ApplicationController#index as HTML
|
31491
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
31492
|
+
Processing by ApplicationController#index as HTML
|
31493
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
31494
|
+
Processing by ApplicationController#index as HTML
|
31495
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
31496
|
+
Processing by ApplicationController#index as HTML
|
31497
|
+
Completed 206 Partial Content in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
31498
|
+
Processing by ApplicationController#index as HTML
|
31499
|
+
Completed 206 Partial Content in 1ms (Views: 1.0ms | ActiveRecord: 0.0ms)
|
31500
|
+
Processing by ApplicationController#index as HTML
|
31501
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
31502
|
+
Processing by ApplicationController#index as HTML
|
31503
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
31504
|
+
Processing by ApplicationController#index as HTML
|
31505
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
31506
|
+
Processing by ApplicationController#index as HTML
|
31507
|
+
Completed 206 Partial Content in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
31508
|
+
Processing by ApplicationController#index as HTML
|
31509
|
+
Completed 206 Partial Content in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
31510
|
+
Processing by ApplicationController#index as HTML
|
31511
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
31512
|
+
Processing by ApplicationController#index as HTML
|
31513
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
31514
|
+
Processing by ApplicationController#index as HTML
|
31515
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
31516
|
+
Processing by ApplicationController#index as HTML
|
31517
|
+
Completed 200 OK in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
31518
|
+
Processing by ApplicationController#index as HTML
|
31519
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
31520
|
+
Processing by ApplicationController#index as HTML
|
31521
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
31522
|
+
Processing by ApplicationController#index as HTML
|
31523
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
31524
|
+
Processing by ApplicationController#index as HTML
|
31525
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
31526
|
+
Processing by ApplicationController#index as HTML
|
31527
|
+
Completed 206 Partial Content in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
31528
|
+
Processing by ApplicationController#index as HTML
|
31529
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
31530
|
+
Processing by ApplicationController#index as HTML
|
31531
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
31532
|
+
Processing by ApplicationController#index as HTML
|
31533
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
31534
|
+
Processing by ApplicationController#index as HTML
|
31535
|
+
Completed 416 Requested Range Not Satisfiable in 3ms (Views: 2.7ms | ActiveRecord: 0.0ms)
|
31536
|
+
Processing by ApplicationController#index as HTML
|
31537
|
+
Completed 200 OK in 1ms (Views: 1.1ms | ActiveRecord: 0.0ms)
|
31538
|
+
Processing by ApplicationController#index as HTML
|
31539
|
+
Completed 206 Partial Content in 1ms (Views: 1.1ms | ActiveRecord: 0.0ms)
|
31540
|
+
Processing by ApplicationController#index as HTML
|
31541
|
+
Completed 206 Partial Content in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
31542
|
+
Processing by ApplicationController#index as HTML
|
31543
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
31544
|
+
Processing by ApplicationController#index as HTML
|
31545
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
31546
|
+
Processing by ApplicationController#index as HTML
|
31547
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
31548
|
+
Processing by ApplicationController#index as HTML
|
31549
|
+
Completed 206 Partial Content in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
31550
|
+
Processing by ApplicationController#index as HTML
|
31551
|
+
Completed 206 Partial Content in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
31552
|
+
Processing by ApplicationController#index as HTML
|
31553
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
31554
|
+
Processing by ApplicationController#index as HTML
|
31555
|
+
Completed 206 Partial Content in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
31556
|
+
Processing by ApplicationController#index as HTML
|
31557
|
+
Completed 200 OK in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
31558
|
+
Processing by ApplicationController#index as HTML
|
31559
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
31560
|
+
Processing by ApplicationController#index as HTML
|
31561
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
31562
|
+
Processing by ApplicationController#index as HTML
|
31563
|
+
Completed 206 Partial Content in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
31564
|
+
Processing by ApplicationController#index as HTML
|
31565
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
31566
|
+
Processing by ApplicationController#index as HTML
|
31567
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
31568
|
+
Processing by ApplicationController#index as HTML
|
31569
|
+
Completed 206 Partial Content in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
31570
|
+
Processing by ApplicationController#index as HTML
|
31571
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
31572
|
+
Processing by ApplicationController#index as HTML
|
31573
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
31574
|
+
Processing by ApplicationController#index as HTML
|
31575
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
31576
|
+
Processing by ApplicationController#index as HTML
|
31577
|
+
Completed 206 Partial Content in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
31578
|
+
Processing by ApplicationController#index as HTML
|
31579
|
+
Completed 206 Partial Content in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
31580
|
+
Processing by ApplicationController#index as HTML
|
31581
|
+
Completed 206 Partial Content in 1ms (Views: 1.0ms | ActiveRecord: 0.0ms)
|
31582
|
+
Processing by ApplicationController#index as HTML
|
31583
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
31584
|
+
Processing by ApplicationController#index as HTML
|
31585
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
31586
|
+
Processing by ApplicationController#index as HTML
|
31587
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
31588
|
+
Processing by ApplicationController#index as HTML
|
31589
|
+
Completed 206 Partial Content in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
31590
|
+
Processing by ApplicationController#index as HTML
|
31591
|
+
Completed 200 OK in 4ms (Views: 1.2ms | ActiveRecord: 0.0ms)
|
31592
|
+
Processing by ApplicationController#index as HTML
|
31593
|
+
Completed 206 Partial Content in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
31594
|
+
Processing by ApplicationController#index as HTML
|
31595
|
+
Completed 200 OK in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
31596
|
+
Processing by ApplicationController#index as HTML
|
31597
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
31598
|
+
Processing by ApplicationController#index as HTML
|
31599
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
31600
|
+
Processing by ApplicationController#index as HTML
|
31601
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
31602
|
+
Processing by ApplicationController#index as HTML
|
31603
|
+
Completed 206 Partial Content in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
31604
|
+
Processing by ApplicationController#index as HTML
|
31605
|
+
Completed 200 OK in 1ms (Views: 1.0ms | ActiveRecord: 0.0ms)
|
31606
|
+
Processing by ApplicationController#index as HTML
|
31607
|
+
Completed 206 Partial Content in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
31608
|
+
Processing by ApplicationController#index as HTML
|
31609
|
+
Completed 206 Partial Content in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
31610
|
+
Processing by ApplicationController#index as HTML
|
31611
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
31612
|
+
Processing by ApplicationController#index as HTML
|
31613
|
+
Completed 206 Partial Content in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
31614
|
+
Processing by ApplicationController#index as HTML
|
31615
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
31616
|
+
Processing by ApplicationController#index as HTML
|
31617
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
31618
|
+
Processing by ApplicationController#index as HTML
|
31619
|
+
Completed 206 Partial Content in 2ms (Views: 1.0ms | ActiveRecord: 0.0ms)
|
31620
|
+
Processing by ApplicationController#index as HTML
|
31621
|
+
Completed 206 Partial Content in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
31622
|
+
Processing by ApplicationController#index as HTML
|
31623
|
+
Completed 200 OK in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
31624
|
+
Processing by ApplicationController#index as HTML
|
31625
|
+
Completed 416 Requested Range Not Satisfiable in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
31626
|
+
Processing by ApplicationController#index as HTML
|
31627
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
31628
|
+
Processing by ApplicationController#index as HTML
|
31629
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
31630
|
+
Processing by ApplicationController#index as HTML
|
31631
|
+
Completed 206 Partial Content in 1ms (Views: 1.0ms | ActiveRecord: 0.0ms)
|
31632
|
+
Processing by ApplicationController#index as HTML
|
31633
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
31634
|
+
Processing by ApplicationController#index as HTML
|
31635
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
31636
|
+
Processing by ApplicationController#index as HTML
|
31637
|
+
Completed 206 Partial Content in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
31638
|
+
Processing by ApplicationController#index as HTML
|
31639
|
+
Completed 206 Partial Content in 3ms (Views: 2.9ms | ActiveRecord: 0.0ms)
|
31640
|
+
Processing by ApplicationController#index as HTML
|
31641
|
+
Completed 206 Partial Content in 2ms (Views: 1.0ms | ActiveRecord: 0.0ms)
|
31642
|
+
Processing by ApplicationController#index as HTML
|
31643
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
31644
|
+
Processing by ApplicationController#index as HTML
|
31645
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
31646
|
+
Processing by ApplicationController#index as HTML
|
31647
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
31648
|
+
Processing by ApplicationController#index as HTML
|
31649
|
+
Completed 206 Partial Content in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
31650
|
+
Processing by ApplicationController#index as HTML
|
31651
|
+
Completed 206 Partial Content in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
31652
|
+
Processing by ApplicationController#index as HTML
|
31653
|
+
Completed 206 Partial Content in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
31654
|
+
Processing by ApplicationController#index as HTML
|
31655
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
31656
|
+
Processing by ApplicationController#index as HTML
|
31657
|
+
Completed 206 Partial Content in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
31658
|
+
Processing by ApplicationController#index as HTML
|
31659
|
+
Completed 206 Partial Content in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
31660
|
+
Processing by ApplicationController#index as HTML
|
31661
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
31662
|
+
Processing by ApplicationController#index as HTML
|
31663
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
31664
|
+
Processing by ApplicationController#index as HTML
|
31665
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
31666
|
+
Processing by ApplicationController#index as HTML
|
31667
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
31668
|
+
Processing by ApplicationController#index as HTML
|
31669
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
31670
|
+
Processing by ApplicationController#index as HTML
|
31671
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
31672
|
+
Processing by ApplicationController#index as HTML
|
31673
|
+
Completed 206 Partial Content in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
31674
|
+
Processing by ApplicationController#index as HTML
|
31675
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
31676
|
+
Processing by ApplicationController#index as HTML
|
31677
|
+
Completed 206 Partial Content in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
31678
|
+
Processing by ApplicationController#index as HTML
|
31679
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
31680
|
+
Processing by ApplicationController#index as HTML
|
31681
|
+
Completed 206 Partial Content in 1ms (Views: 1.0ms | ActiveRecord: 0.0ms)
|
31682
|
+
Processing by ApplicationController#index as HTML
|
31683
|
+
Completed 206 Partial Content in 3ms (Views: 2.8ms | ActiveRecord: 0.0ms)
|
31684
|
+
Processing by ApplicationController#index as HTML
|
31685
|
+
Completed 206 Partial Content in 2ms (Views: 1.0ms | ActiveRecord: 0.0ms)
|
31686
|
+
Processing by ApplicationController#index as HTML
|
31687
|
+
Completed 206 Partial Content in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
31688
|
+
Processing by ApplicationController#index as HTML
|
31689
|
+
Completed 206 Partial Content in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
31690
|
+
Processing by ApplicationController#index as HTML
|
31691
|
+
Completed 206 Partial Content in 2ms (Views: 1.1ms | ActiveRecord: 0.0ms)
|
31692
|
+
Processing by ApplicationController#index as HTML
|
31693
|
+
Completed 206 Partial Content in 2ms (Views: 1.6ms | ActiveRecord: 0.0ms)
|
31694
|
+
Processing by ApplicationController#index as HTML
|
31695
|
+
Completed 206 Partial Content in 2ms (Views: 1.5ms | ActiveRecord: 0.0ms)
|
31696
|
+
Processing by ApplicationController#index as HTML
|
31697
|
+
Completed 206 Partial Content in 2ms (Views: 1.1ms | ActiveRecord: 0.0ms)
|
31698
|
+
Processing by ApplicationController#index as HTML
|
31699
|
+
Completed 206 Partial Content in 2ms (Views: 1.1ms | ActiveRecord: 0.0ms)
|
31700
|
+
Processing by ApplicationController#index as HTML
|
31701
|
+
Completed 206 Partial Content in 2ms (Views: 1.0ms | ActiveRecord: 0.0ms)
|
31702
|
+
Processing by ApplicationController#index as HTML
|
31703
|
+
Completed 206 Partial Content in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
31704
|
+
Processing by ApplicationController#index as HTML
|
31705
|
+
Completed 206 Partial Content in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
31706
|
+
Processing by ApplicationController#index as HTML
|
31707
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
31708
|
+
Processing by ApplicationController#index as HTML
|
31709
|
+
Completed 206 Partial Content in 1ms (Views: 1.0ms | ActiveRecord: 0.0ms)
|
31710
|
+
Processing by ApplicationController#index as HTML
|
31711
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
31712
|
+
Processing by ApplicationController#index as HTML
|
31713
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
31714
|
+
Processing by ApplicationController#index as HTML
|
31715
|
+
Completed 206 Partial Content in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
31716
|
+
Processing by ApplicationController#index as HTML
|
31717
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
31718
|
+
Processing by ApplicationController#index as HTML
|
31719
|
+
Completed 206 Partial Content in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
31720
|
+
Processing by ApplicationController#index as HTML
|
31721
|
+
Completed 206 Partial Content in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
31722
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
31723
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
31724
|
+
--------------------------------------------------------------------------------------
|
31725
|
+
ApplicationControllerTest: test_handles_ranges_beyond_collection_length_via_truncation
|
31726
|
+
--------------------------------------------------------------------------------------
|
31727
|
+
Processing by ApplicationController#index as HTML
|
31728
|
+
Completed 206 Partial Content in 1ms (Views: 1.1ms | ActiveRecord: 0.0ms)
|
31729
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
31730
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
31731
|
+
-----------------------------------------------------
|
31732
|
+
ApplicationControllerTest: test_includes_link_headers
|
31733
|
+
-----------------------------------------------------
|
31734
|
+
Processing by ApplicationController#index as HTML
|
31735
|
+
Completed 206 Partial Content in 4ms (Views: 3.3ms | ActiveRecord: 0.0ms)
|
31736
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
31737
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
31738
|
+
----------------------------------------------------------------------
|
31739
|
+
ApplicationControllerTest: test_infinite_collections_have_no_last_page
|
31740
|
+
----------------------------------------------------------------------
|
31741
|
+
Processing by ApplicationController#index as HTML
|
31742
|
+
Completed 206 Partial Content in 1ms (Views: 1.0ms | ActiveRecord: 0.0ms)
|
31743
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
31744
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
31745
|
+
-------------------------------------------------------------------------------
|
31746
|
+
ApplicationControllerTest: test_last_page_range_can_extend_beyond_the_last_item
|
31747
|
+
-------------------------------------------------------------------------------
|
31748
|
+
Processing by ApplicationController#index as HTML
|
31749
|
+
Completed 206 Partial Content in 1ms (Views: 1.0ms | ActiveRecord: 0.0ms)
|
31750
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
31751
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
31752
|
+
------------------------------------------------------------------------------------
|
31753
|
+
ApplicationControllerTest: test_next_link_with_omitted_end_number_shifts_by_max_page
|
31754
|
+
------------------------------------------------------------------------------------
|
31755
|
+
Processing by ApplicationController#index as HTML
|
31756
|
+
Completed 206 Partial Content in 1ms (Views: 1.0ms | ActiveRecord: 0.0ms)
|
31757
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
31758
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
31759
|
+
---------------------------------------------------------------------------
|
31760
|
+
ApplicationControllerTest: test_next_page_range_can_extend_beyond_last_item
|
31761
|
+
---------------------------------------------------------------------------
|
31762
|
+
Processing by ApplicationController#index as HTML
|
31763
|
+
Completed 206 Partial Content in 1ms (Views: 1.0ms | ActiveRecord: 0.0ms)
|
31764
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
31765
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
31766
|
+
----------------------------------------------------------------
|
31767
|
+
ApplicationControllerTest: test_omits_next_and_last_links_at_end
|
31768
|
+
----------------------------------------------------------------
|
31769
|
+
Processing by ApplicationController#index as HTML
|
31770
|
+
Completed 206 Partial Content in 1ms (Views: 1.1ms | ActiveRecord: 0.0ms)
|
31771
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
31772
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
31773
|
+
-------------------------------------------------------------------
|
31774
|
+
ApplicationControllerTest: test_omits_prev_and_first_links_at_start
|
31775
|
+
-------------------------------------------------------------------
|
31776
|
+
Processing by ApplicationController#index as HTML
|
31777
|
+
Completed 206 Partial Content in 1ms (Views: 1.1ms | ActiveRecord: 0.0ms)
|
31778
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
31779
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
31780
|
+
---------------------------------------------------------------------------
|
31781
|
+
ApplicationControllerTest: test_omitting_the_end_number_asks_for_everything
|
31782
|
+
---------------------------------------------------------------------------
|
31783
|
+
Processing by ApplicationController#index as HTML
|
31784
|
+
Completed 206 Partial Content in 1ms (Views: 1.0ms | ActiveRecord: 0.0ms)
|
31785
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
31786
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
31787
|
+
-------------------------------------------------------------------------------
|
31788
|
+
ApplicationControllerTest: test_omitting_the_end_number_omits_in_first_link_too
|
31789
|
+
-------------------------------------------------------------------------------
|
31790
|
+
Processing by ApplicationController#index as HTML
|
31791
|
+
Completed 206 Partial Content in 1ms (Views: 1.2ms | ActiveRecord: 0.0ms)
|
31792
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
31793
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
31794
|
+
---------------------------------------------------------------------
|
31795
|
+
ApplicationControllerTest: test_passes_along_exceptional_status_codes
|
31796
|
+
---------------------------------------------------------------------
|
31797
|
+
Processing by ApplicationController#index as HTML
|
31798
|
+
Completed 100 Continue in 1ms (Views: 1.0ms | ActiveRecord: 0.0ms)
|
31799
|
+
Processing by ApplicationController#index as HTML
|
31800
|
+
Completed 301 Moved Permanently in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
31801
|
+
Processing by ApplicationController#index as HTML
|
31802
|
+
Completed 404 Not Found in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
31803
|
+
Processing by ApplicationController#index as HTML
|
31804
|
+
Completed 500 Internal Server Error in 2ms (Views: 1.4ms | ActiveRecord: 0.0ms)
|
31805
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
31806
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
31807
|
+
--------------------------------------------------------------------------
|
31808
|
+
ApplicationControllerTest: test_preserves_query_parameters_in_link_headers
|
31809
|
+
--------------------------------------------------------------------------
|
31810
|
+
Processing by ApplicationController#index as HTML
|
31811
|
+
Parameters: {"foo"=>"bar"}
|
31812
|
+
Completed 206 Partial Content in 2ms (Views: 1.4ms | ActiveRecord: 0.0ms)
|
31813
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
31814
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
31815
|
+
----------------------------------------------------------------
|
31816
|
+
ApplicationControllerTest: test_prev_is_the_left_inverse_of_next
|
31817
|
+
----------------------------------------------------------------
|
31818
|
+
Processing by ApplicationController#index as HTML
|
31819
|
+
Completed 206 Partial Content in 1ms (Views: 1.1ms | ActiveRecord: 0.0ms)
|
31820
|
+
Processing by ApplicationController#index as HTML
|
31821
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
31822
|
+
Processing by ApplicationController#index as HTML
|
31823
|
+
Completed 206 Partial Content in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
31824
|
+
Processing by ApplicationController#index as HTML
|
31825
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
31826
|
+
Processing by ApplicationController#index as HTML
|
31827
|
+
Completed 206 Partial Content in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
31828
|
+
Processing by ApplicationController#index as HTML
|
31829
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
31830
|
+
Processing by ApplicationController#index as HTML
|
31831
|
+
Completed 206 Partial Content in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
31832
|
+
Processing by ApplicationController#index as HTML
|
31833
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
31834
|
+
Processing by ApplicationController#index as HTML
|
31835
|
+
Completed 206 Partial Content in 1ms (Views: 1.0ms | ActiveRecord: 0.0ms)
|
31836
|
+
Processing by ApplicationController#index as HTML
|
31837
|
+
Completed 206 Partial Content in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
31838
|
+
Processing by ApplicationController#index as HTML
|
31839
|
+
Completed 200 OK in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
31840
|
+
Processing by ApplicationController#index as HTML
|
31841
|
+
Completed 206 Partial Content in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
31842
|
+
Processing by ApplicationController#index as HTML
|
31843
|
+
Completed 206 Partial Content in 1ms (Views: 1.0ms | ActiveRecord: 0.0ms)
|
31844
|
+
Processing by ApplicationController#index as HTML
|
31845
|
+
Completed 206 Partial Content in 1ms (Views: 1.0ms | ActiveRecord: 0.0ms)
|
31846
|
+
Processing by ApplicationController#index as HTML
|
31847
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
31848
|
+
Processing by ApplicationController#index as HTML
|
31849
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
31850
|
+
Processing by ApplicationController#index as HTML
|
31851
|
+
Completed 206 Partial Content in 2ms (Views: 1.2ms | ActiveRecord: 0.0ms)
|
31852
|
+
Processing by ApplicationController#index as HTML
|
31853
|
+
Completed 206 Partial Content in 1ms (Views: 1.0ms | ActiveRecord: 0.0ms)
|
31854
|
+
Processing by ApplicationController#index as HTML
|
31855
|
+
Completed 200 OK in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
31856
|
+
Processing by ApplicationController#index as HTML
|
31857
|
+
Completed 206 Partial Content in 1ms (Views: 1.2ms | ActiveRecord: 0.0ms)
|
31858
|
+
Processing by ApplicationController#index as HTML
|
31859
|
+
Completed 206 Partial Content in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
31860
|
+
Processing by ApplicationController#index as HTML
|
31861
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
31862
|
+
Processing by ApplicationController#index as HTML
|
31863
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
31864
|
+
Processing by ApplicationController#index as HTML
|
31865
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
31866
|
+
Processing by ApplicationController#index as HTML
|
31867
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
31868
|
+
Processing by ApplicationController#index as HTML
|
31869
|
+
Completed 200 OK in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
31870
|
+
Processing by ApplicationController#index as HTML
|
31871
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
31872
|
+
Processing by ApplicationController#index as HTML
|
31873
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
31874
|
+
Processing by ApplicationController#index as HTML
|
31875
|
+
Completed 206 Partial Content in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
31876
|
+
Processing by ApplicationController#index as HTML
|
31877
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
31878
|
+
Processing by ApplicationController#index as HTML
|
31879
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
31880
|
+
Processing by ApplicationController#index as HTML
|
31881
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
31882
|
+
Processing by ApplicationController#index as HTML
|
31883
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
31884
|
+
Processing by ApplicationController#index as HTML
|
31885
|
+
Completed 206 Partial Content in 1ms (Views: 1.0ms | ActiveRecord: 0.0ms)
|
31886
|
+
Processing by ApplicationController#index as HTML
|
31887
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
31888
|
+
Processing by ApplicationController#index as HTML
|
31889
|
+
Completed 206 Partial Content in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
31890
|
+
Processing by ApplicationController#index as HTML
|
31891
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
31892
|
+
Processing by ApplicationController#index as HTML
|
31893
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
31894
|
+
Processing by ApplicationController#index as HTML
|
31895
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
31896
|
+
Processing by ApplicationController#index as HTML
|
31897
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
31898
|
+
Processing by ApplicationController#index as HTML
|
31899
|
+
Completed 206 Partial Content in 1ms (Views: 1.0ms | ActiveRecord: 0.0ms)
|
31900
|
+
Processing by ApplicationController#index as HTML
|
31901
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
31902
|
+
Processing by ApplicationController#index as HTML
|
31903
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
31904
|
+
Processing by ApplicationController#index as HTML
|
31905
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
31906
|
+
Processing by ApplicationController#index as HTML
|
31907
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
31908
|
+
Processing by ApplicationController#index as HTML
|
31909
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
31910
|
+
Processing by ApplicationController#index as HTML
|
31911
|
+
Completed 206 Partial Content in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
31912
|
+
Processing by ApplicationController#index as HTML
|
31913
|
+
Completed 206 Partial Content in 1ms (Views: 1.0ms | ActiveRecord: 0.0ms)
|
31914
|
+
Processing by ApplicationController#index as HTML
|
31915
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
31916
|
+
Processing by ApplicationController#index as HTML
|
31917
|
+
Completed 200 OK in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
31918
|
+
Processing by ApplicationController#index as HTML
|
31919
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
31920
|
+
Processing by ApplicationController#index as HTML
|
31921
|
+
Completed 206 Partial Content in 4ms (Views: 1.3ms | ActiveRecord: 0.0ms)
|
31922
|
+
Processing by ApplicationController#index as HTML
|
31923
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
31924
|
+
Processing by ApplicationController#index as HTML
|
31925
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
31926
|
+
Processing by ApplicationController#index as HTML
|
31927
|
+
Completed 206 Partial Content in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
31928
|
+
Processing by ApplicationController#index as HTML
|
31929
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
31930
|
+
Processing by ApplicationController#index as HTML
|
31931
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
31932
|
+
Processing by ApplicationController#index as HTML
|
31933
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
31934
|
+
Processing by ApplicationController#index as HTML
|
31935
|
+
Completed 200 OK in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
31936
|
+
Processing by ApplicationController#index as HTML
|
31937
|
+
Completed 200 OK in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
31938
|
+
Processing by ApplicationController#index as HTML
|
31939
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
31940
|
+
Processing by ApplicationController#index as HTML
|
31941
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
31942
|
+
Processing by ApplicationController#index as HTML
|
31943
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
31944
|
+
Processing by ApplicationController#index as HTML
|
31945
|
+
Completed 206 Partial Content in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
31946
|
+
Processing by ApplicationController#index as HTML
|
31947
|
+
Completed 206 Partial Content in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
31948
|
+
Processing by ApplicationController#index as HTML
|
31949
|
+
Completed 206 Partial Content in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
31950
|
+
Processing by ApplicationController#index as HTML
|
31951
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
31952
|
+
Processing by ApplicationController#index as HTML
|
31953
|
+
Completed 206 Partial Content in 1ms (Views: 1.0ms | ActiveRecord: 0.0ms)
|
31954
|
+
Processing by ApplicationController#index as HTML
|
31955
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
31956
|
+
Processing by ApplicationController#index as HTML
|
31957
|
+
Completed 206 Partial Content in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
31958
|
+
Processing by ApplicationController#index as HTML
|
31959
|
+
Completed 206 Partial Content in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
31960
|
+
Processing by ApplicationController#index as HTML
|
31961
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
31962
|
+
Processing by ApplicationController#index as HTML
|
31963
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
31964
|
+
Processing by ApplicationController#index as HTML
|
31965
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
31966
|
+
Processing by ApplicationController#index as HTML
|
31967
|
+
Completed 206 Partial Content in 2ms (Views: 1.6ms | ActiveRecord: 0.0ms)
|
31968
|
+
Processing by ApplicationController#index as HTML
|
31969
|
+
Completed 206 Partial Content in 2ms (Views: 1.7ms | ActiveRecord: 0.0ms)
|
31970
|
+
Processing by ApplicationController#index as HTML
|
31971
|
+
Completed 206 Partial Content in 2ms (Views: 1.6ms | ActiveRecord: 0.0ms)
|
31972
|
+
Processing by ApplicationController#index as HTML
|
31973
|
+
Completed 206 Partial Content in 2ms (Views: 1.2ms | ActiveRecord: 0.0ms)
|
31974
|
+
Processing by ApplicationController#index as HTML
|
31975
|
+
Completed 206 Partial Content in 4ms (Views: 1.5ms | ActiveRecord: 0.0ms)
|
31976
|
+
Processing by ApplicationController#index as HTML
|
31977
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
31978
|
+
Processing by ApplicationController#index as HTML
|
31979
|
+
Completed 206 Partial Content in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
31980
|
+
Processing by ApplicationController#index as HTML
|
31981
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
31982
|
+
Processing by ApplicationController#index as HTML
|
31983
|
+
Completed 206 Partial Content in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
31984
|
+
Processing by ApplicationController#index as HTML
|
31985
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
31986
|
+
Processing by ApplicationController#index as HTML
|
31987
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
31988
|
+
Processing by ApplicationController#index as HTML
|
31989
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
31990
|
+
Processing by ApplicationController#index as HTML
|
31991
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
31992
|
+
Processing by ApplicationController#index as HTML
|
31993
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
31994
|
+
Processing by ApplicationController#index as HTML
|
31995
|
+
Completed 200 OK in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
31996
|
+
Processing by ApplicationController#index as HTML
|
31997
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
31998
|
+
Processing by ApplicationController#index as HTML
|
31999
|
+
Completed 206 Partial Content in 1ms (Views: 1.0ms | ActiveRecord: 0.0ms)
|
32000
|
+
Processing by ApplicationController#index as HTML
|
32001
|
+
Completed 206 Partial Content in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
32002
|
+
Processing by ApplicationController#index as HTML
|
32003
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
32004
|
+
Processing by ApplicationController#index as HTML
|
32005
|
+
Completed 206 Partial Content in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
32006
|
+
Processing by ApplicationController#index as HTML
|
32007
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
32008
|
+
Processing by ApplicationController#index as HTML
|
32009
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
32010
|
+
Processing by ApplicationController#index as HTML
|
32011
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
32012
|
+
Processing by ApplicationController#index as HTML
|
32013
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
32014
|
+
Processing by ApplicationController#index as HTML
|
32015
|
+
Completed 206 Partial Content in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
32016
|
+
Processing by ApplicationController#index as HTML
|
32017
|
+
Completed 206 Partial Content in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
32018
|
+
Processing by ApplicationController#index as HTML
|
32019
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
32020
|
+
Processing by ApplicationController#index as HTML
|
32021
|
+
Completed 200 OK in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
32022
|
+
Processing by ApplicationController#index as HTML
|
32023
|
+
Completed 206 Partial Content in 4ms (Views: 1.2ms | ActiveRecord: 0.0ms)
|
32024
|
+
Processing by ApplicationController#index as HTML
|
32025
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
32026
|
+
Processing by ApplicationController#index as HTML
|
32027
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
32028
|
+
Processing by ApplicationController#index as HTML
|
32029
|
+
Completed 206 Partial Content in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
32030
|
+
Processing by ApplicationController#index as HTML
|
32031
|
+
Completed 206 Partial Content in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
32032
|
+
Processing by ApplicationController#index as HTML
|
32033
|
+
Completed 206 Partial Content in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
32034
|
+
Processing by ApplicationController#index as HTML
|
32035
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
32036
|
+
Processing by ApplicationController#index as HTML
|
32037
|
+
Completed 206 Partial Content in 2ms (Views: 1.3ms | ActiveRecord: 0.0ms)
|
32038
|
+
Processing by ApplicationController#index as HTML
|
32039
|
+
Completed 206 Partial Content in 2ms (Views: 1.7ms | ActiveRecord: 0.0ms)
|
32040
|
+
Processing by ApplicationController#index as HTML
|
32041
|
+
Completed 206 Partial Content in 2ms (Views: 1.6ms | ActiveRecord: 0.0ms)
|
32042
|
+
Processing by ApplicationController#index as HTML
|
32043
|
+
Completed 206 Partial Content in 2ms (Views: 1.2ms | ActiveRecord: 0.0ms)
|
32044
|
+
Processing by ApplicationController#index as HTML
|
32045
|
+
Completed 206 Partial Content in 2ms (Views: 1.1ms | ActiveRecord: 0.0ms)
|
32046
|
+
Processing by ApplicationController#index as HTML
|
32047
|
+
Completed 206 Partial Content in 2ms (Views: 1.0ms | ActiveRecord: 0.0ms)
|
32048
|
+
Processing by ApplicationController#index as HTML
|
32049
|
+
Completed 206 Partial Content in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
32050
|
+
Processing by ApplicationController#index as HTML
|
32051
|
+
Completed 206 Partial Content in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
32052
|
+
Processing by ApplicationController#index as HTML
|
32053
|
+
Completed 206 Partial Content in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
32054
|
+
Processing by ApplicationController#index as HTML
|
32055
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
32056
|
+
Processing by ApplicationController#index as HTML
|
32057
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
32058
|
+
Processing by ApplicationController#index as HTML
|
32059
|
+
Completed 206 Partial Content in 1ms (Views: 1.0ms | ActiveRecord: 0.0ms)
|
32060
|
+
Processing by ApplicationController#index as HTML
|
32061
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
32062
|
+
Processing by ApplicationController#index as HTML
|
32063
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
32064
|
+
Processing by ApplicationController#index as HTML
|
32065
|
+
Completed 206 Partial Content in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
32066
|
+
Processing by ApplicationController#index as HTML
|
32067
|
+
Completed 206 Partial Content in 2ms (Views: 1.2ms | ActiveRecord: 0.0ms)
|
32068
|
+
Processing by ApplicationController#index as HTML
|
32069
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
32070
|
+
Processing by ApplicationController#index as HTML
|
32071
|
+
Completed 206 Partial Content in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
32072
|
+
Processing by ApplicationController#index as HTML
|
32073
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
32074
|
+
Processing by ApplicationController#index as HTML
|
32075
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
32076
|
+
Processing by ApplicationController#index as HTML
|
32077
|
+
Completed 200 OK in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
32078
|
+
Processing by ApplicationController#index as HTML
|
32079
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
32080
|
+
Processing by ApplicationController#index as HTML
|
32081
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
32082
|
+
Processing by ApplicationController#index as HTML
|
32083
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
32084
|
+
Processing by ApplicationController#index as HTML
|
32085
|
+
Completed 206 Partial Content in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
32086
|
+
Processing by ApplicationController#index as HTML
|
32087
|
+
Completed 206 Partial Content in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
32088
|
+
Processing by ApplicationController#index as HTML
|
32089
|
+
Completed 206 Partial Content in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
32090
|
+
Processing by ApplicationController#index as HTML
|
32091
|
+
Completed 206 Partial Content in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
32092
|
+
Processing by ApplicationController#index as HTML
|
32093
|
+
Completed 206 Partial Content in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
32094
|
+
Processing by ApplicationController#index as HTML
|
32095
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
32096
|
+
Processing by ApplicationController#index as HTML
|
32097
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
32098
|
+
Processing by ApplicationController#index as HTML
|
32099
|
+
Completed 206 Partial Content in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
32100
|
+
Processing by ApplicationController#index as HTML
|
32101
|
+
Completed 200 OK in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
32102
|
+
Processing by ApplicationController#index as HTML
|
32103
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
32104
|
+
Processing by ApplicationController#index as HTML
|
32105
|
+
Completed 206 Partial Content in 3ms (Views: 2.7ms | ActiveRecord: 0.0ms)
|
32106
|
+
Processing by ApplicationController#index as HTML
|
32107
|
+
Completed 206 Partial Content in 2ms (Views: 1.6ms | ActiveRecord: 0.0ms)
|
32108
|
+
Processing by ApplicationController#index as HTML
|
32109
|
+
Completed 206 Partial Content in 2ms (Views: 1.6ms | ActiveRecord: 0.0ms)
|
32110
|
+
Processing by ApplicationController#index as HTML
|
32111
|
+
Completed 206 Partial Content in 2ms (Views: 1.2ms | ActiveRecord: 0.0ms)
|
32112
|
+
Processing by ApplicationController#index as HTML
|
32113
|
+
Completed 206 Partial Content in 2ms (Views: 1.0ms | ActiveRecord: 0.0ms)
|
32114
|
+
Processing by ApplicationController#index as HTML
|
32115
|
+
Completed 206 Partial Content in 2ms (Views: 1.1ms | ActiveRecord: 0.0ms)
|
32116
|
+
Processing by ApplicationController#index as HTML
|
32117
|
+
Completed 206 Partial Content in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
32118
|
+
Processing by ApplicationController#index as HTML
|
32119
|
+
Completed 206 Partial Content in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
32120
|
+
Processing by ApplicationController#index as HTML
|
32121
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
32122
|
+
Processing by ApplicationController#index as HTML
|
32123
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
32124
|
+
Processing by ApplicationController#index as HTML
|
32125
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
32126
|
+
Processing by ApplicationController#index as HTML
|
32127
|
+
Completed 206 Partial Content in 1ms (Views: 1.0ms | ActiveRecord: 0.0ms)
|
32128
|
+
Processing by ApplicationController#index as HTML
|
32129
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
32130
|
+
Processing by ApplicationController#index as HTML
|
32131
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
32132
|
+
Processing by ApplicationController#index as HTML
|
32133
|
+
Completed 206 Partial Content in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
32134
|
+
Processing by ApplicationController#index as HTML
|
32135
|
+
Completed 206 Partial Content in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
32136
|
+
Processing by ApplicationController#index as HTML
|
32137
|
+
Completed 206 Partial Content in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
32138
|
+
Processing by ApplicationController#index as HTML
|
32139
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
32140
|
+
Processing by ApplicationController#index as HTML
|
32141
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
32142
|
+
Processing by ApplicationController#index as HTML
|
32143
|
+
Completed 200 OK in 4ms (Views: 1.2ms | ActiveRecord: 0.0ms)
|
32144
|
+
Processing by ApplicationController#index as HTML
|
32145
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
32146
|
+
Processing by ApplicationController#index as HTML
|
32147
|
+
Completed 206 Partial Content in 2ms (Views: 1.3ms | ActiveRecord: 0.0ms)
|
32148
|
+
Processing by ApplicationController#index as HTML
|
32149
|
+
Completed 206 Partial Content in 2ms (Views: 1.4ms | ActiveRecord: 0.0ms)
|
32150
|
+
Processing by ApplicationController#index as HTML
|
32151
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
32152
|
+
Processing by ApplicationController#index as HTML
|
32153
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
32154
|
+
Processing by ApplicationController#index as HTML
|
32155
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
32156
|
+
Processing by ApplicationController#index as HTML
|
32157
|
+
Completed 200 OK in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
32158
|
+
Processing by ApplicationController#index as HTML
|
32159
|
+
Completed 206 Partial Content in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
32160
|
+
Processing by ApplicationController#index as HTML
|
32161
|
+
Completed 206 Partial Content in 2ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
32162
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
32163
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
32164
|
+
------------------------------------------------------------------------------------
|
32165
|
+
ApplicationControllerTest: test_prev_link_with_omitted_end_number_shifts_by_max_page
|
32166
|
+
------------------------------------------------------------------------------------
|
32167
|
+
Processing by ApplicationController#index as HTML
|
32168
|
+
Completed 206 Partial Content in 1ms (Views: 1.1ms | ActiveRecord: 0.0ms)
|
32169
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
32170
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
32171
|
+
----------------------------------------------------------------------
|
32172
|
+
ApplicationControllerTest: test_previous_page_range_cannot_go_negative
|
32173
|
+
----------------------------------------------------------------------
|
32174
|
+
Processing by ApplicationController#index as HTML
|
32175
|
+
Completed 206 Partial Content in 1ms (Views: 1.0ms | ActiveRecord: 0.0ms)
|
32176
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
32177
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
32178
|
+
--------------------------------------------------------------------------------------------
|
32179
|
+
ApplicationControllerTest: test_rangeless_request_range_works_normally_if_max_range_>=_total
|
32180
|
+
--------------------------------------------------------------------------------------------
|
32181
|
+
Processing by ApplicationController#index as HTML
|
32182
|
+
Completed 200 OK in 1ms (Views: 1.0ms | ActiveRecord: 0.0ms)
|
32183
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
32184
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
32185
|
+
--------------------------------------------------------------------------------
|
32186
|
+
ApplicationControllerTest: test_rangeless_request_truncates_if_max_range_<_total
|
32187
|
+
--------------------------------------------------------------------------------
|
32188
|
+
Processing by ApplicationController#index as HTML
|
32189
|
+
Completed 206 Partial Content in 2ms (Views: 1.7ms | ActiveRecord: 0.0ms)
|
32190
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
32191
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
32192
|
+
------------------------------------------------------
|
32193
|
+
ApplicationControllerTest: test_refuses_offside_ranges
|
32194
|
+
------------------------------------------------------
|
32195
|
+
Processing by ApplicationController#index as HTML
|
32196
|
+
Completed 416 Requested Range Not Satisfiable in 1ms (Views: 1.3ms | ActiveRecord: 0.0ms)
|
32197
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
32198
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
32199
|
+
------------------------------------------------------------
|
32200
|
+
ApplicationControllerTest: test_refuses_range_start_past_end
|
32201
|
+
------------------------------------------------------------
|
32202
|
+
Processing by ApplicationController#index as HTML
|
32203
|
+
Completed 416 Requested Range Not Satisfiable in 1ms (Views: 1.1ms | ActiveRecord: 0.0ms)
|
32204
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
32205
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
32206
|
+
-------------------------------------------------------------------
|
32207
|
+
ApplicationControllerTest: test_reports_infinite/unknown_collection
|
32208
|
+
-------------------------------------------------------------------
|
32209
|
+
Processing by ApplicationController#index as HTML
|
32210
|
+
Completed 206 Partial Content in 1ms (Views: 1.0ms | ActiveRecord: 0.0ms)
|
32211
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
32212
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
32213
|
+
---------------------------------------------------------------------------------------
|
32214
|
+
ApplicationControllerTest: test_shifts_penultimate_page_to_beginning,_preserving_length
|
32215
|
+
---------------------------------------------------------------------------------------
|
32216
|
+
Processing by ApplicationController#index as HTML
|
27878
32217
|
Completed 206 Partial Content in 1ms (Views: 1.0ms | ActiveRecord: 0.0ms)
|
27879
32218
|
[1m[35m (0.0ms)[0m rollback transaction
|