14 lines
170 B
Go
14 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")
|
|
}
|
|
}
|