blob: 42d2d3a0713b725cf8764e6b16cea9b76c5feb4a (
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 2017 syzkaller project authors. All rights reserved.
// Use of this source code is governed by Apache 2 LICENSE that can be found in the LICENSE file.
package git
import (
"testing"
)
func TestCanonicalizeCommit(t *testing.T) {
tests := map[string]string{
"foo bar": "foo bar",
" foo ": "foo",
"UPSTREAM: foo bar": "foo bar",
"BACKPORT: UPSTREAM: foo bar": "UPSTREAM: foo bar",
}
for in, want := range tests {
got := CanonicalizeCommit(in)
if got != want {
t.Errorf("input %q: got %q, want %q", in, got, want)
}
}
}
|