(t *testing.T)
| 135 | } |
| 136 | |
| 137 | func TestFormatRemotePath_IPv6Full(t *testing.T) { |
| 138 | result := formatRemotePath("fe80::1%eth0", "/home/user/data") |
| 139 | assert.Equal(t, "[fe80::1%eth0]:/home/user/data", result) |
| 140 | } |
| 141 | |
| 142 | func TestFormatRemotePath_LongIPv6(t *testing.T) { |
| 143 | result := formatRemotePath("2001:0db8:85a3::8a2e:0370:7334", "/data") |
nothing calls this directly
no test coverage detected