1
0
mirror of https://github.com/mudler/luet.git synced 2025-10-08 20:03:40 +00:00
Files
.github
cmd
contrib
pkg
box
bus
compiler
backend
backend_suite_test.go
diff.go
diff_test.go
simpledocker.go
simpledocker_test.go
simpleimg.go
artifact.go
artifact_test.go
checksum.go
checksum_test.go
compiler.go
compiler_suite_test.go
compiler_test.go
interface.go
spec.go
spec_test.go
config
helpers
installer
logger
package
repository
solver
spectooling
tree
versioner
scripts
tests
vendor
.gitignore
.travis.yml
Dockerfile
LICENSE
Makefile
README.md
go.mod
go.sum
main.go
luet/pkg/compiler/backend/backend_suite_test.go
2020-01-01 13:43:22 +01:00

33 lines
1007 B
Go

// Copyright © 2019 Ettore Di Giacinto <mudler@gentoo.org>
//
// This program is free software; you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation; either version 2 of the License, or
// (at your option) any later version.
//
// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
//
// You should have received a copy of the GNU General Public License along
// with this program; if not, see <http://www.gnu.org/licenses/>.
package backend_test
import (
"testing"
. "github.com/mudler/luet/cmd"
config "github.com/mudler/luet/pkg/config"
. "github.com/onsi/ginkgo"
. "github.com/onsi/gomega"
)
func TestSolver(t *testing.T) {
RegisterFailHandler(Fail)
LoadConfig(config.LuetCfg)
RunSpecs(t, "Backend Suite")
}