go-xkcdreader/main_test.go
surtur d32b44aedd
All checks were successful
continuous-integration/drone/push Build is passing
app(main_test): log success
2022-05-27 22:06:30 +02:00

15 lines
253 B
Go

// Copyright 2022 wanderer <a_mirre at utb dot cz>
// SPDX-License-Identifier: GPL-3.0-or-later
package main
import (
"testing"
)
// does this test even make sense?
func TestExecMain(t *testing.T) {
go main()
t.Log("Main executed successfully")
}