blob: 47f015cbda338e318f9589c3102fc16bbe69a860 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
//go:build linux
// +build linux
package tui
import (
"bytes"
"testing"
"github.com/dundee/gdu/v5/internal/testapp"
"github.com/dundee/gdu/v5/pkg/device"
"github.com/stretchr/testify/assert"
)
func TestShowDevicesWithError(t *testing.T) {
app, simScreen := testapp.CreateTestAppWithSimScreen(50, 50)
defer simScreen.Fini()
getter := device.LinuxDevicesInfoGetter{MountsPath: "/xyzxyz"}
ui := CreateUI(app, simScreen, &bytes.Buffer{}, false, false, false, false, false)
err := ui.ListDevices(getter)
assert.Contains(t, err.Error(), "no such file")
}
|