@@ -74,6 +74,7 @@ def get(watermark, branch, path)
74
74
watermark = SecureRandom . uuid
75
75
let ( :watermark ) { watermark }
76
76
let ( :current_url ) { 'guide/test/current' }
77
+ let ( :liveness ) { get watermark , branch , 'liveness' }
77
78
let ( :diff ) { get watermark , branch , 'diff' }
78
79
let ( :robots_txt ) { get watermark , branch , 'robots.txt' }
79
80
let ( :root ) { get watermark , branch , '' }
@@ -109,6 +110,11 @@ def get(watermark, branch, path)
109
110
include_examples 'the favicon'
110
111
111
112
shared_examples 'serves some docs' do |supports_gapped : true |
113
+ context 'the liveness check' do
114
+ it '200s' do
115
+ expect ( liveness ) . to serve ( include ( "R'lyeh" ) )
116
+ end
117
+ end
112
118
context 'the root' do
113
119
it 'redirects to the guide root' do
114
120
expect ( root ) . to redirect_to ( eq ( "http://#{ host } :8000/guide/index.html" ) )
@@ -227,6 +233,11 @@ def get(watermark, branch, path)
227
233
end
228
234
end
229
235
shared_examples '404s' do
236
+ context 'the liveness check' do
237
+ it '200s' do
238
+ expect ( liveness ) . to serve ( include ( "R'lyeh" ) )
239
+ end
240
+ end
230
241
it '404s for the docs root' do
231
242
expect ( guide_root . code ) . to eq ( '404' )
232
243
end
0 commit comments