tests
No long description provided.
Installation
dagger install github.com/sagikazarmark/daggerverse/arc/tests@84e479601ced57c999880867f0beb56e2afd683d
Types
Tests 🔗
all() 🔗
All executes all tests.
Return Type
Void !
Example
func (m *myModule) example(ctx context.Context) {
return dag.
Tests().
All(ctx)
}
archiveFiles() 🔗
Return Type
ArchiveFiles !
Example
func (m *myModule) example() *TestsArchiveFiles {
return dag.
Tests().
ArchiveFiles()
}
archiveDirectory() 🔗
Return Type
ArchiveDirectory !
Example
func (m *myModule) example() *TestsArchiveDirectory {
return dag.
Tests().
ArchiveDirectory()
}
ArchiveFiles 🔗
all() 🔗
All executes all tests.
Return Type
Void !
Example
func (m *myModule) example(ctx context.Context) {
return dag.
Tests().
ArchiveFiles().
All(ctx)
}
tar() 🔗
Return Type
Void !
Example
func (m *myModule) example(ctx context.Context) {
return dag.
Tests().
ArchiveFiles().
Tar(ctx)
}
tarBr() 🔗
Return Type
Void !
Example
func (m *myModule) example(ctx context.Context) {
return dag.
Tests().
ArchiveFiles().
TarBr(ctx)
}
tarBz2() 🔗
Return Type
Void !
Example
func (m *myModule) example(ctx context.Context) {
return dag.
Tests().
ArchiveFiles().
TarBz2(ctx)
}
tarGz() 🔗
Return Type
Void !
Example
func (m *myModule) example(ctx context.Context) {
return dag.
Tests().
ArchiveFiles().
TarGz(ctx)
}
tarLz4() 🔗
Return Type
Void !
Example
func (m *myModule) example(ctx context.Context) {
return dag.
Tests().
ArchiveFiles().
TarLz4(ctx)
}
tarSz() 🔗
Return Type
Void !
Example
func (m *myModule) example(ctx context.Context) {
return dag.
Tests().
ArchiveFiles().
TarSz(ctx)
}
tarXz() 🔗
Return Type
Void !
Example
func (m *myModule) example(ctx context.Context) {
return dag.
Tests().
ArchiveFiles().
TarXz(ctx)
}
tarZst() 🔗
Return Type
Void !
Example
func (m *myModule) example(ctx context.Context) {
return dag.
Tests().
ArchiveFiles().
TarZst(ctx)
}
zip() 🔗
Return Type
Void !
Example
func (m *myModule) example(ctx context.Context) {
return dag.
Tests().
ArchiveFiles().
Zip(ctx)
}
ArchiveDirectory 🔗
all() 🔗
All executes all tests.
Return Type
Void !
Example
func (m *myModule) example(ctx context.Context) {
return dag.
Tests().
ArchiveDirectory().
All(ctx)
}
tar() 🔗
Return Type
Void !
Example
func (m *myModule) example(ctx context.Context) {
return dag.
Tests().
ArchiveDirectory().
Tar(ctx)
}
tarBr() 🔗
Return Type
Void !
Example
func (m *myModule) example(ctx context.Context) {
return dag.
Tests().
ArchiveDirectory().
TarBr(ctx)
}
tarBz2() 🔗
Return Type
Void !
Example
func (m *myModule) example(ctx context.Context) {
return dag.
Tests().
ArchiveDirectory().
TarBz2(ctx)
}
tarGz() 🔗
Return Type
Void !
Example
func (m *myModule) example(ctx context.Context) {
return dag.
Tests().
ArchiveDirectory().
TarGz(ctx)
}
tarLz4() 🔗
Return Type
Void !
Example
func (m *myModule) example(ctx context.Context) {
return dag.
Tests().
ArchiveDirectory().
TarLz4(ctx)
}
tarSz() 🔗
Return Type
Void !
Example
func (m *myModule) example(ctx context.Context) {
return dag.
Tests().
ArchiveDirectory().
TarSz(ctx)
}
tarXz() 🔗
Return Type
Void !
Example
func (m *myModule) example(ctx context.Context) {
return dag.
Tests().
ArchiveDirectory().
TarXz(ctx)
}
tarZst() 🔗
Return Type
Void !
Example
func (m *myModule) example(ctx context.Context) {
return dag.
Tests().
ArchiveDirectory().
TarZst(ctx)
}
zip() 🔗
Return Type
Void !
Example
func (m *myModule) example(ctx context.Context) {
return dag.
Tests().
ArchiveDirectory().
Zip(ctx)
}