realize/realize/settings_unix_test.go
2017-12-03 19:42:25 +01:00

14 lines
219 B
Go

// +build !windows
package realize
import (
"testing"
)
func TestSettings_Flimit(t *testing.T) {
s := Settings{}
s.FileLimit = 100
if err := s.Flimit(); err != nil {
t.Error("Unable to increase limit", err)
}
}