e2e testing made eas(y/ier)
25개 이상의 토픽을 선택하실 수 없습니다. Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

routes.rb 203B

2 년 전
1 년 전
1 년 전
1 년 전
2 년 전
1234567891011121314
  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