aboutsummaryrefslogtreecommitdiff
blob: eea29d8187de7e6a87fd87f640739de6372cd047 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
require_relative 'minitest_helper'

class TestWeb < Minitest::Test
	include Rack::Test::Methods

	def app
		RubyTinderbox
	end

	def test_heading
		get '/repoman_checks'
		assert last_response.ok?
		assert last_response.body.include? '<h1>Repoman Checks</h1>'
	end
end