mirror of
https://github.com/grafana/grafana.git
synced 2025-02-14 17:43:35 -06:00
13 lines
171 B
Go
13 lines
171 B
Go
|
package api
|
||
|
|
||
|
import (
|
||
|
"testing"
|
||
|
|
||
|
"github.com/stretchr/testify/assert"
|
||
|
)
|
||
|
|
||
|
func Test_OnlyEnabledForGrafanaAdmi(t *testing.T) {
|
||
|
// TODO: implement
|
||
|
assert.True(t, true)
|
||
|
}
|