Guest User

Untitled

a guest
Feb 21st, 2018
88
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.25 KB | None | 0 0
  1. require 'rubygems'
  2. require 'sinatra'
  3. require 'sinatra/test/unit'
  4. require 'app'
  5.  
  6. class AppTest < Test::Unit::TestCase
  7.  
  8. def test_index
  9. get_it '/'
  10. #assert_equal 'My Default Page!', @response.body
  11. assert @response.status == 200
  12. end
  13.  
  14. end
Add Comment
Please, Sign In to add comment