Merge pull request #11779 from blatyo/add_ulimit_test

Add test for successful Ulimit Parse.
This commit is contained in:
Jessie Frazelle 2015-03-25 17:34:58 -07:00
commit 667452ec63
1 changed files with 7 additions and 0 deletions

View File

@ -2,6 +2,13 @@ package ulimit
import "testing"
func TestParseValid(t *testing.T) {
u1 := &Ulimit{"nofile", 1024, 512}
if u2, _ := Parse("nofile=512:1024"); u1 == u2 {
t.Fatalf("expected %s, but got %s", u1.String(), u2.String())
}
}
func TestParseInvalidLimitType(t *testing.T) {
if _, err := Parse("notarealtype=1024:1024"); err == nil {
t.Fatalf("expected error on invalid ulimit type")