Make test for project more basic

This commit is contained in:
sophia 2021-08-16 15:29:27 -05:00 committed by Paul Hinze
parent 806f6e7399
commit eb90501fd1
No known key found for this signature in database
GPG Key ID: B69DEDF2D55501C0

View File

@ -6,11 +6,8 @@ import (
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")
vn := tp.Ref()
if vn == nil {
t.Errorf("Creating project failed")
}
}