mirror of https://github.com/q191201771/naza
1. feat: package fake: add func Exit 2. test: package log: use fake.Exit
parent
8e5c9947f1
commit
3bee539a75
@ -0,0 +1,35 @@
|
||||
// Copyright 2019, Chef. All rights reserved.
|
||||
// https://github.com/q191201771/naza
|
||||
//
|
||||
// Use of this source code is governed by a MIT-style license
|
||||
// that can be found in the License file.
|
||||
//
|
||||
// Author: Chef (191201771@qq.com)
|
||||
|
||||
package fake_test
|
||||
|
||||
import (
|
||||
"testing"
|
||||
|
||||
"github.com/q191201771/naza/pkg/assert"
|
||||
"github.com/q191201771/naza/pkg/fake"
|
||||
)
|
||||
|
||||
func TestWithFakeExit(t *testing.T) {
|
||||
var er fake.ExitResult
|
||||
er = fake.WithFakeExit(func() {
|
||||
fake.Exit(1)
|
||||
})
|
||||
assert.Equal(t, true, er.HasExit)
|
||||
assert.Equal(t, 1, er.ExitCode)
|
||||
|
||||
er = fake.WithFakeExit(func() {
|
||||
})
|
||||
assert.Equal(t, false, er.HasExit)
|
||||
|
||||
er = fake.WithFakeExit(func() {
|
||||
fake.Exit(2)
|
||||
})
|
||||
assert.Equal(t, true, er.HasExit)
|
||||
assert.Equal(t, 2, er.ExitCode)
|
||||
}
|
Loading…
Reference in New Issue