Skip to content

Instantly share code, notes, and snippets.

@dmeiz
Created September 17, 2009 02:51
Show Gist options
  • Save dmeiz/188313 to your computer and use it in GitHub Desktop.
Save dmeiz/188313 to your computer and use it in GitHub Desktop.
require "rubygems"
require "test/unit"
require "webrat"
require "webrat/sinatra"
require "app"
Webrat.configure do |config|
config.mode = :rack
end
class AppTest < Test::Unit::TestCase
include Webrat::Methods
include Webrat::Matchers
def test_it_works
visit "/"
assert_contain("Hello World")
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment