aboutsummaryrefslogtreecommitdiff
path: root/tests/core/go_test/testmain_import_main_test.go
blob: b723bf062728f09350c47a319e555ae9ce87d4f2 (plain)
1
2
3
4
5
6
7
8
9
10
11
package test_main

import "testing"

var Updated bool

func TestShouldPass(t *testing.T) {
	if !Updated {
		t.Fail()
	}
}