11 lines
137 B
Go
11 lines
137 B
Go
package main
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/stretchr/testify/require"
|
|
)
|
|
|
|
func TestFiregod(t *testing.T) {
|
|
require.True(t, Solved)
|
|
}
|