mirror of
https://codeberg.org/cunicu/cunicu.git
synced 2025-10-05 08:47:03 +08:00
26 lines
492 B
Go
26 lines
492 B
Go
// SPDX-FileCopyrightText: 2018 CoreOS, Inc.
|
|
// SPDX-FileCopyrightText: 2023-2025 Steffen Vogel <post@steffenvogel.de>
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
|
|
package systemd_test
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"cunicu.li/cunicu/test"
|
|
|
|
. "github.com/onsi/ginkgo/v2"
|
|
. "github.com/onsi/gomega"
|
|
. "github.com/onsi/gomega/gexec"
|
|
)
|
|
|
|
func TestSuite(t *testing.T) {
|
|
test.SetupLogging()
|
|
RegisterFailHandler(Fail)
|
|
RunSpecs(t, "SystemD Suite")
|
|
}
|
|
|
|
var _ = AfterSuite(func() {
|
|
CleanupBuildArtifacts()
|
|
})
|