mirror of
https://github.com/grafana/grafana.git
synced 2025-02-12 00:25:46 -06:00
* Chore: Harmonize linting with plugin SDK Signed-off-by: Arve Knudsen <arve.knudsen@gmail.com> * Chore: Fix linting issues Signed-off-by: Arve Knudsen <arve.knudsen@gmail.com>
28 lines
447 B
Go
28 lines
447 B
Go
package fs
|
|
|
|
import (
|
|
"io/ioutil"
|
|
"os"
|
|
"testing"
|
|
|
|
"github.com/stretchr/testify/require"
|
|
)
|
|
|
|
func TestExists_NonExistent(t *testing.T) {
|
|
exists, err := Exists("non-existent")
|
|
require.NoError(t, err)
|
|
|
|
require.False(t, exists)
|
|
}
|
|
|
|
func TestExists_Existent(t *testing.T) {
|
|
f, err := ioutil.TempFile("", "")
|
|
require.NoError(t, err)
|
|
defer os.Remove(f.Name())
|
|
|
|
exists, err := Exists(f.Name())
|
|
require.NoError(t, err)
|
|
|
|
require.True(t, exists)
|
|
}
|