summaryrefslogtreecommitdiff
path: root/test/integration/server_test.rb
blob: 3ca8b72b645bf825ea216cd4260cf5bdb89d71d8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
class ServerTest < Minitest::Test
  include Rack::Test::Methods

  def app
    Server.new
  end

  def test_get
    get '/'

    assert_equal 200, last_response.status
    assert_empty last_response.body
  end
end