Test build failure on main (#1904)

This commit is contained in:
zzak 2023-03-11 05:49:16 +09:00 committed by GitHub
parent 313e6a29e4
commit 29f394611a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 0 deletions

View File

@ -3,6 +3,7 @@ require_relative 'test_helper'
class SinatraTest < Minitest::Test
it 'creates a new Sinatra::Base subclass on new' do
app = Sinatra.new { get('/') { 'Hello World' } }
assert_same false, true
assert_same Sinatra::Base, app.superclass
end