blob: c0b9f77a711da142d914b9030ffa28cf380a57f1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
// Copyright 2020 The Gogs Authors. All rights reserved.
// Use of this source code is governed by a MIT-style
// license that can be found in the LICENSE file.
package gitutil
import (
"os"
"testing"
"github.com/gogs/git-module"
"github.com/stretchr/testify/assert"
)
func TestIsErrRevisionNotExist(t *testing.T) {
assert.True(t, IsErrRevisionNotExist(git.ErrRevisionNotExist))
assert.False(t, IsErrRevisionNotExist(os.ErrNotExist))
}
func TestIsErrNoMergeBase(t *testing.T) {
assert.True(t, IsErrNoMergeBase(git.ErrNoMergeBase))
assert.False(t, IsErrNoMergeBase(os.ErrNotExist))
}
|