10 lines
121 B
Go
10 lines
121 B
Go
package vagrant
|
|
|
|
import (
|
|
"testing"
|
|
)
|
|
|
|
func TestVBoxProvider_impl(t *testing.T) {
|
|
var _ Provider = new(VBoxProvider)
|
|
}
|