e49bb34e87
Definition are now split in their own file. `#Image` is a simple base image to set up a go container `#Container` is a standalone environment to execute go command, any go command should use this definition. It shares `docker.#Run` fields to easily maintains this definition. `#Build` and `#Test` are high level definition that use `#Container` to execute common go operation in a CI. Those definitions are tested with a simple greeting package. Signed-off-by: Vasek - Tom C <tom.chauveau@epitech.eu>
14 lines
242 B
Go
14 lines
242 B
Go
package greeting
|
|
|
|
import "testing"
|
|
|
|
func TestGreeting(t *testing.T) {
|
|
name := "Dagger Test"
|
|
expect := "Hi Dagger Test!"
|
|
value := Greeting(name)
|
|
|
|
if expect != value {
|
|
t.Fatalf("Hello(%s) = '%s', expected '%s'", name, value, expect)
|
|
}
|
|
}
|