dirdiff
No long description provided.
Installation
dagger install github.com/shykes/dagger/modules/dirdiff@8bc7dba9d5e428bcee4d3d7d961cca3e14f6154d
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)
}