realize/realize/settings_unix_test.go
2017-12-04 15:53:59 +01:00

16 lines
221 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)
}
}