Guest User

Untitled

a guest
Feb 21st, 2018
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.32 KB | None | 0 0
  1. require "test/unit"
  2. require "rack_session"
  3. require "app"
  4.  
  5. class AppTest < Test::Unit::TestCase
  6. def setup
  7. @app = RackSession.new(Sinatra::Application)
  8. end
  9.  
  10. def test_it_works
  11. @app.get "/"
  12. assert_equal 200 , @app.response.status
  13. assert_equal "Hello World", @app.response.body
  14. end
  15. end
Add Comment
Please, Sign In to add comment