mirror of
https://github.com/hashicorp/vault.git
synced 2026-07-02 05:50:11 -04:00
12 lines
214 B
Go
12 lines
214 B
Go
|
|
package token
|
||
|
|
|
||
|
|
import (
|
||
|
|
"testing"
|
||
|
|
)
|
||
|
|
|
||
|
|
// TestCommand re-uses the existing Test function to ensure proper behavior of
|
||
|
|
// the internal token helper
|
||
|
|
func TestCommand(t *testing.T) {
|
||
|
|
Test(t, &InternalTokenHelper{})
|
||
|
|
}
|