File: stat_fs_test.go

package info (click to toggle)
golang-github-colinmarc-hdfs 2.3.0-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 3,760 kB
  • sloc: sh: 130; xml: 40; makefile: 31
file content (14 lines) | stat: -rw-r--r-- 188 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
package hdfs

import (
	"testing"

	"github.com/stretchr/testify/require"
)

func TestStatFs(t *testing.T) {
	client := getClient(t)

	_, err := client.StatFs()
	require.NoError(t, err)
}