aboutsummaryrefslogtreecommitdiff
path: root/tests/core/go_test/sharding_test.go
blob: a83bb85cb40385040fc7ad38ba24d2ae200c4444 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
package sharding_test

import (
	"log"
	"os"
	"testing"
)

func TestShardStatusFile(t *testing.T) {
	if _, err := os.Stat(os.Getenv("TEST_SHARD_STATUS_FILE")); err != nil {
		log.Fatalf("Expected Go test runner to create TEST_SHARD_STATUS_FILE: %v", err)
	}
}