new test
parent
4582d91a44
commit
e247ffe8f4
|
@ -0,0 +1,16 @@
|
||||||
|
package pathmatch
|
||||||
|
|
||||||
|
import (
|
||||||
|
"testing"
|
||||||
|
)
|
||||||
|
|
||||||
|
func TestInternalPatternAsPattern(t *testing.T) {
|
||||||
|
|
||||||
|
var datum Pattern = new(internalPattern) // THIS IS WHAT ACTUALLY MATTERS.
|
||||||
|
|
||||||
|
|
||||||
|
if nil == datum {
|
||||||
|
t.Errorf("This should never happen.")
|
||||||
|
return
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in New Issue