storj/internal/testcontext/compile_test.go

21 lines
381 B
Go
Raw Normal View History

2019-02-27 08:25:28 +00:00
// Copyright (C) 2019 Storj Labs, Inc.
// See LICENSE for copying information.
package testcontext_test
import (
"testing"
"github.com/stretchr/testify/assert"
"storj.io/storj/internal/testcontext"
)
func TestCompile(t *testing.T) {
ctx := testcontext.New(t)
defer ctx.Cleanup()
exe := ctx.Compile("storj.io/storj/examples/pointerdb-client")
assert.NotEmpty(t, exe)
}