terraform/backend/atlas/backend_test.go

13 lines
185 B
Go
Raw Normal View History

2017-02-22 07:13:46 +01:00
package atlas
import (
"testing"
"github.com/hashicorp/terraform/backend"
)
func TestImpl(t *testing.T) {
var _ backend.Backend = new(Backend)
2017-02-28 23:38:24 +01:00
var _ backend.CLI = new(Backend)
2017-02-22 07:13:46 +01:00
}