storj/internal/testcontext/compile_test.go
2019-02-27 09:25:28 +01:00

21 lines
381 B
Go

// 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)
}