17 lines
231 B
Go
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")
|
|
}
|
|
}
|