(t *testing.T)
| 46 | ) |
| 47 | |
| 48 | func TestMountManager(t *testing.T) { |
| 49 | client, err := newClient(t, address) |
| 50 | require.NoError(t, err) |
| 51 | defer client.Close() |
| 52 | |
| 53 | var ( |
| 54 | ctx, cancel = testContext(t) |
| 55 | ) |
| 56 | defer cancel() |
| 57 | |
| 58 | // Test MountManager functionality |
| 59 | mounts, err := client.MountManager().List(ctx) |
| 60 | require.NoError(t, err) |
| 61 | |
| 62 | assert.Empty(t, mounts, "Mounts should be empty") |
| 63 | |
| 64 | } |
| 65 | |
| 66 | func TestMountAtRuntime(t *testing.T) { |
| 67 | client, err := newClient(t, address) |
nothing calls this directly
no test coverage detected
searching dependent graphs…