mirror of https://github.com/maxcnunes/gaper.git
11 lines
105 B
Go
11 lines
105 B
Go
|
package main
|
||
|
|
||
|
import (
|
||
|
"fmt"
|
||
|
"testing"
|
||
|
)
|
||
|
|
||
|
func TestGaper(t *testing.T) {
|
||
|
fmt.Println("Sample test")
|
||
|
}
|