Skip to content

Instantly share code, notes, and snippets.

@chaosprinz
chaosprinz / hello_world.rb
Created August 28, 2011 15:35
Using webrat for acceptancetest on sinatra
require 'sinatra'
get '/hello/world' do
"<h1>hello world</h1>"
end
@chaosprinz
chaosprinz / specspec_helper.rb
Created August 28, 2011 09:49 — forked from gavinheavyside/trivial_file_upload_service.rb
Trivial file upload service with simple filename-check using Sinatra and test it with rspec
require './trivial_file_upload_service.rb'
require 'rack/test'
require 'rspec'
set :enviroment, :test
end