aboutsummaryrefslogtreecommitdiff
blob: 42b36ea8645035b4e9eb2cbbe85d9acf88800551 (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 (QA)</h1>'
	end
end