testing

package
v0.5.1 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Mar 13, 2019 License: Apache-2.0 Imports: 7 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

func Assert

func Assert(tb testing.TB, condition bool, msg string, v ...interface{})

Assert fails the test if the condition is false. Taken from https://github.com/benbjohnson/testing.

func Contains

func Contains(tb testing.TB, exp interface{}, slice []string)

Contains fails the test if the slice doesn't contain the expected element

func DirStructure added in v0.4.0

func DirStructure(t *testing.T, structure map[string]interface{}) (string, func())

DirStructure creates a directory structure in a temporary directory. structure describes the dir structure. If the value is another map, then the key is the name of a directory. If the value is nil, then the key is the name of a file. It returns the path to the temp directory containing the defined structure and a cleanup function to delete the directory. Example usage:

	tmpDir, cleanup := DirStructure(t, map[string]interface{}{
		"pulldir": map[string]interface{}{
			"project1": map[string]interface{}{
				"main.tf": nil,
			},
			"project2": map[string]interface{}{,
				"main.tf": nil,
			},
		},
	})
 defer cleanup()

func Equals

func Equals(tb testing.TB, exp, act interface{})

Equals fails the test if exp is not equal to act. Taken from https://github.com/benbjohnson/testing.

func ErrContains added in v0.4.0

func ErrContains(tb testing.TB, substr string, act error)

ErrContains fails the test if act is nil or act.Error() does not contain substr.

func ErrEquals added in v0.3.2

func ErrEquals(tb testing.TB, exp string, act error)

ErrEquals fails the test if act is nil or act.Error() != exp

func Ok

func Ok(tb testing.TB, err error)

Ok fails the test if an err is not nil. Taken from https://github.com/benbjohnson/testing.

func TempDir added in v0.4.0

func TempDir(t *testing.T) (string, func())

TempDir creates a temporary directory and returns its path along with a cleanup function to be called via defer, ex:

dir, cleanup := TempDir()
defer cleanup()

Types

This section is empty.

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL