mirror of
https://github.com/hashicorp/vagrant.git
synced 2026-02-21 00:42:33 -05:00
13 lines
170 B
Go
13 lines
170 B
Go
package core
|
|
|
|
import (
|
|
"testing"
|
|
)
|
|
|
|
func TestNewProject(t *testing.T) {
|
|
tp := TestProject(t)
|
|
vn := tp.Ref()
|
|
if vn == nil {
|
|
t.Errorf("Creating project failed")
|
|
}
|
|
}
|