mirror of
https://github.com/khuedoan/homelab.git
synced 2025-01-07 05:51:17 +07:00
17 lines
265 B
Go
17 lines
265 B
Go
|
package test
|
||
|
|
||
|
import (
|
||
|
"testing"
|
||
|
|
||
|
"github.com/gruntwork-io/terratest/modules/docker"
|
||
|
)
|
||
|
|
||
|
func TestToolsContainer(t *testing.T) {
|
||
|
tag := "homelab-tools"
|
||
|
buildOptions := &docker.BuildOptions{
|
||
|
Tags: []string{tag},
|
||
|
}
|
||
|
|
||
|
docker.Build(t, "../tools", buildOptions)
|
||
|
}
|