mirror of
https://github.com/gohugoio/hugo.git
synced 2025-08-22 21:42:50 +02:00
committed by
Bjørn Erik Pedersen
parent
55d0b89417
commit
555a9bc806
@@ -14,6 +14,7 @@
|
|||||||
package internal
|
package internal
|
||||||
|
|
||||||
import (
|
import (
|
||||||
|
"runtime"
|
||||||
"testing"
|
"testing"
|
||||||
|
|
||||||
"github.com/stretchr/testify/require"
|
"github.com/stretchr/testify/require"
|
||||||
@@ -29,5 +30,9 @@ func (t *Test) MyTestMethod() string {
|
|||||||
func TestMethodToName(t *testing.T) {
|
func TestMethodToName(t *testing.T) {
|
||||||
test := &Test{}
|
test := &Test{}
|
||||||
|
|
||||||
require.Equal(t, "MyTestMethod", methodToName(test.MyTestMethod))
|
if runtime.Compiler == "gccgo" {
|
||||||
|
require.Equal(t, "$thunk0", methodToName(test.MyTestMethod))
|
||||||
|
} else {
|
||||||
|
require.Equal(t, "MyTestMethod", methodToName(test.MyTestMethod))
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user