e2e testing made eas(y/ier)
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

15 lines
203B

  1. require 'sinatra/base'
  2. require 'haml'
  3. class Routes < Sinatra::Base
  4. set :views, Proc.new{
  5. File.join Dir.pwd, 'pokes', 'views'
  6. }
  7. get 'custom/routes' do
  8. return 'hello world'
  9. end
  10. end