Skip to content

Instantly share code, notes, and snippets.

@Nklya
Created February 17, 2018 08:25
Show Gist options
  • Save Nklya/d70ff7c6d1c02de8f18bcd049e904942 to your computer and use it in GitHub Desktop.
Save Nklya/d70ff7c6d1c02de8f18bcd049e904942 to your computer and use it in GitHub Desktop.
hw19
require_relative './app'
require 'test/unit'
require 'rack/test'
set :environment, :test
class MyAppTest < Test::Unit::TestCase
include Rack::Test::Methods
def app
Sinatra::Application
end
def test_get_request
get '/'
assert last_response.ok?
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment