teamcapybara--capybara/spec/test_app.rb

24 lines
329 B
Ruby
Raw Normal View History

2009-11-04 22:32:35 +00:00
class TestApp < Sinatra::Base
2009-11-05 16:35:45 +00:00
set :root, File.dirname(__FILE__)
set :static, true
2009-11-04 22:32:35 +00:00
get '/' do
'Hello world!'
end
get '/foo' do
'Another World'
end
2009-11-04 23:34:11 +00:00
get '/with_html' do
erb :with_html
end
2009-11-04 22:32:35 +00:00
2009-11-05 16:35:45 +00:00
get '/with_js' do
erb :with_js
end
2009-11-04 22:32:35 +00:00
get '/with_simple_html' do
erb :with_simple_html
end
end