about summary refs log tree commit homepage
path: root/test/test_watcher.rb
diff options
context:
space:
mode:
Diffstat (limited to 'test/test_watcher.rb')
-rw-r--r--test/test_watcher.rb14
1 files changed, 14 insertions, 0 deletions
diff --git a/test/test_watcher.rb b/test/test_watcher.rb
index f353862..86c97d8 100644
--- a/test/test_watcher.rb
+++ b/test/test_watcher.rb
@@ -50,6 +50,20 @@ class TestWatcher < Test::Unit::TestCase
     check_headers(resp.headers)
   end
 
+  def test_queued_txt
+    resp = @req.get "/queued/#@addr.txt"
+    assert_equal 200, resp.status.to_i
+    assert_equal "text/plain", resp.headers["Content-Type"]
+    check_headers(resp.headers)
+  end
+
+  def test_queued_html
+    resp = @req.get "/queued/#@addr.html"
+    assert_equal 200, resp.status.to_i
+    assert_equal "text/html", resp.headers["Content-Type"]
+    check_headers(resp.headers)
+  end
+
   def test_reset
     resp = @req.post "/reset/#@addr"
     assert_equal 302, resp.status.to_i