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