vaguerent/internal/core/project_test.go
2022-04-25 12:24:13 -05:00

17 lines
231 B
Go

package core
import (
"testing"
)
func TestNewProject(t *testing.T) {
tp := TestProject(t)
vn, err := tp.VagrantfileName()
if err != nil {
t.Errorf("there was an error")
}
if vn != "VagrantFile" {
t.Errorf("idfk")
}
}