Skip to content

Instantly share code, notes, and snippets.

@bmizerany
Created September 24, 2008 19:23
Show Gist options
  • Save bmizerany/12638 to your computer and use it in GitHub Desktop.
Save bmizerany/12638 to your computer and use it in GitHub Desktop.
require 'rubygems'
require 'sinatra'
require 'sinatra/test/unit'
require 'app'
class MyAppTest < Test::Unit::TestCase
def test_hello_world
assert_equal :test, Sinatra.application.env
get_it '/'
assert @response.ok?
assert_equal 'hello world', @response.body
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment