From 09e829493ff36d6a79188fb8e3eb74f648b04af9 Mon Sep 17 00:00:00 2001 From: Chris Adams Date: Thu, 28 Jun 2012 23:48:47 +0100 Subject: [PATCH] Added some info about installing rack-test to make examples work If you won't have rack-test installed, none of the examples work. So this seemed to be the most logical place to mention this factoid. --- testing.markdown | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/testing.markdown b/testing.markdown index 629a28e7..0724069a 100644 --- a/testing.markdown +++ b/testing.markdown @@ -10,7 +10,10 @@ Testing Sinatra with Rack::Test All examples in the following sections assume that `Test::Unit` is being used in an attempt to be as general as possible. See the [Test Framework Examples](#frameworks) for information on using the test helpers in -other testing environments. +other testing environments. To use `Rack::Test` library used when you require `rack/test`, you'll need to install the `rack-test` gem. + + gem install rack-test + Example App: `hello_world.rb` -----------------------------