File: stuff_test.go

package info (click to toggle)
golang-github-smartystreets-goconvey 1.6.4%2Bdfsg-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye, forky, sid, trixie
  • size: 1,672 kB
  • sloc: makefile: 8
file content (17 lines) | stat: -rw-r--r-- 255 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// This file's only purpose is to provide a realistic
// environment from which to run integration tests
// against the Watcher.
package sub

import (
	"fmt"
	"testing"
)

func TestStuff(t *testing.T) {
	if testing.Short() {
		return
	}

	fmt.Println()
}