summaryrefslogtreecommitdiffstats
path: root/vendor/github.com/prometheus/procfs/fs_test.go
diff options
context:
space:
mode:
authorChristopher Speller <crspeller@gmail.com>2018-04-16 05:37:14 -0700
committerJoram Wilander <jwawilander@gmail.com>2018-04-16 08:37:14 -0400
commit6e2cb00008cbf09e556b00f87603797fcaa47e09 (patch)
tree3c0eb55ff4226a3f024aad373140d1fb860a6404 /vendor/github.com/prometheus/procfs/fs_test.go
parentbf24f51c4e1cc6286885460672f7f449e8c6f5ef (diff)
downloadchat-6e2cb00008cbf09e556b00f87603797fcaa47e09.tar.gz
chat-6e2cb00008cbf09e556b00f87603797fcaa47e09.tar.bz2
chat-6e2cb00008cbf09e556b00f87603797fcaa47e09.zip
Depenancy upgrades and movign to dep. (#8630)
Diffstat (limited to 'vendor/github.com/prometheus/procfs/fs_test.go')
-rw-r--r--vendor/github.com/prometheus/procfs/fs_test.go26
1 files changed, 0 insertions, 26 deletions
diff --git a/vendor/github.com/prometheus/procfs/fs_test.go b/vendor/github.com/prometheus/procfs/fs_test.go
deleted file mode 100644
index e492cde55..000000000
--- a/vendor/github.com/prometheus/procfs/fs_test.go
+++ /dev/null
@@ -1,26 +0,0 @@
-package procfs
-
-import "testing"
-
-func TestNewFS(t *testing.T) {
- if _, err := NewFS("foobar"); err == nil {
- t.Error("want NewFS to fail for non-existing mount point")
- }
-
- if _, err := NewFS("procfs.go"); err == nil {
- t.Error("want NewFS to fail if mount point is not a directory")
- }
-}
-
-func TestFSXFSStats(t *testing.T) {
- stats, err := FS("fixtures").XFSStats()
- if err != nil {
- t.Fatalf("failed to parse XFS stats: %v", err)
- }
-
- // Very lightweight test just to sanity check the path used
- // to open XFS stats. Heavier tests in package xfs.
- if want, got := uint32(92447), stats.ExtentAllocation.ExtentsAllocated; want != got {
- t.Errorf("unexpected extents allocated:\nwant: %d\nhave: %d", want, got)
- }
-}