Files
kopia/internal/tempfile/tempfile_linux_fallback_test.go
Nathan Baulch 657fda216a chore(ci): upgrade to golangci-lint 2.6.1 (#4973)
- upgrade to golangci-lint 2.6.1
- updates for gosec
- updates for govet
- updates for perfsprint
- updates modernize

Leaves out modernize:omitempty due to conflicts with tests
2025-11-11 21:27:10 -08:00

16 lines
402 B
Go

//go:build linux
package tempfile
import (
"testing"
)
// Explicitly test the create fallback function.
// This test only applies to Linux to explicitly test the fallback function.
// In other unix platforms the fallback is the default implementation, so it
// is already tested in the tests for the Create function.
func TestCreateFallback(t *testing.T) {
VerifyTempfile(t, createUnixFallback)
}