dirdiff
No long description provided.
Installation
dagger install github.com/shykes/dagger/modules/dirdiff@2001e418ada8d8d87c32ef9d6ed1cceee25b626e
Entrypoint
Return Type
Dirdiff
Example
func (m *myModule) example() *Dirdiff {
return dag.
Dirdiff()
}
Types
Dirdiff 🔗
assertEqual() 🔗
Return an error if two directories are not identical at the given paths. Paths not specified in the arguments are not compared.
Return Type
Void !
Arguments
Name | Type | Default Value | Description |
---|---|---|---|
a | Directory ! | - | The first directory to compare |
b | Directory ! | - | The second directory to compare |
paths | [String ! ] ! | - | The paths to include in the comparison. |
Example
func (m *myModule) example(ctx context.Context, a *Directory, b *Directory, paths []string) {
return dag.
Dirdiff().
AssertEqual(ctx, a, b, paths)
}