Dagger
Search

test

No long description provided.

Installation

dagger install bitbucket.org/dagger-modules/dagger-test-modules-public/context-dir@ca6493ac2a5ed309c44565121b7bdd20a17b1abb

Entrypoint

Return Type
Test
Example
func (m *myModule) example() *Test  {
	return dag.
			Test()
}

Types

Test 🔗

absolutePath() 🔗

Return Type
Directory !
Arguments
NameTypeDefault ValueDescription
dirDirectory -No description provided
Example
func (m *myModule) example() *Directory  {
	return dag.
			Test().
			AbsolutePath()
}

absolutePathSubdir() 🔗

Return Type
Directory !
Arguments
NameTypeDefault ValueDescription
dirDirectory -No description provided
Example
func (m *myModule) example() *Directory  {
	return dag.
			Test().
			AbsolutePathSubdir()
}

relativePath() 🔗

Return Type
Directory !
Arguments
NameTypeDefault ValueDescription
dirDirectory -No description provided
Example
func (m *myModule) example() *Directory  {
	return dag.
			Test().
			RelativePath()
}

relativePathSubdir() 🔗

Return Type
Directory !
Arguments
NameTypeDefault ValueDescription
dirDirectory -No description provided
Example
func (m *myModule) example() *Directory  {
	return dag.
			Test().
			RelativePathSubdir()
}