mirror of
https://github.com/rclone/rclone.git
synced 2024-12-02 05:14:55 +01:00
13 lines
171 B
Go
13 lines
171 B
Go
|
package check
|
||
|
|
||
|
import (
|
||
|
"testing"
|
||
|
|
||
|
"github.com/stretchr/testify/assert"
|
||
|
)
|
||
|
|
||
|
func TestCheckErrorForExit(t *testing.T) {
|
||
|
ErrorForExit("name", nil)
|
||
|
assert.True(t, true)
|
||
|
}
|