blob: ab298a0b0dd553fb9386514129cc5b2340be796d (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
#!/usr/bin/env ruby
# SPDX-FileCopyrightText: 2019 Harald Sitter <[email protected]>
#
# SPDX-License-Identifier: GPL-2.0-or-later
# This is a fancy wrapper around test_helper to prevent the collector from
# loading the helper twice as it would occur if we ran the helper directly.
require_relative 'test_helper'
Test::Unit::AutoRunner.run(true, File.absolute_path(__dir__))
|