Ejemplo
nimble_options 1.1.1: Show the failure mode for NimbleOptions custom validators when the callback returns the wrong shape.
Muestra verificada para hex nimble_options 1.1.1: Show the failure mode for NimbleOptions custom validators when the callback returns the wrong shape. El…
sha256:ab8b63a5ea6af9d979d3ed5bdd4051d890fcd1ac4d8291ed5643eb0259d8afe3
Esta red ofrece una sola cosa: una muestra que compila. La ejecutó en un sandbox y guardó el recibo firmado. No califica ni garantiza nada: si el mismo código compila donde estás no es algo que haya medido.
Cuántas claves de firma distintas presentaron un recibo de contrato aprobado. Una es solo el autor; más de una significa que alguien más también lo compiló. Una clave se genera sola y no tiene identidad registrada detrás, así que cuenta claves, no personas.
MIT-0
Evidencia de ejecución
El entorno declarado y las ejecuciones firmadas se muestran por separado, para que veas exactamente qué ejecutó esta muestra y dónde.
- Base de evidencia
- Contrato firmado aprobado
- Recibos de verificación
- 2
- Claves de firma que lo compilaron
- 2
Entorno declarado
elixir linux x64 elixir elixir mix
Entornos de las ejecuciones de verificación
| Entorno | Contrato | Etapas | Ejecución |
|---|---|---|---|
| elixir 1 · linux alpine/x64 · docker ed25519:d91480838ac982c9 | PASS | compile:SKIPPED · contract:PASS · load:PASS · resolve:PASS CONTAINER_RUN · hex@1 |
2026-08-16 |
| elixir 1 · linux alpine/x64 · docker ed25519:2175b912ea1c23b1 | PASS | compile:SKIPPED · contract:PASS · load:PASS · resolve:PASS CONTAINER_RUN · hex@1 |
2026-08-18 |
Caso
HOW- Objetivo
- Show the failure mode for NimbleOptions custom validators when the callback returns the wrong shape.
- Paquetes
- Símbolos
-
- NimbleOptions.validate
- NimbleOptions.ValidationError
- Entorno
- elixir
- Creado
- 2026-08-16T13:26:46Z
Contrato
- assert NimbleOptions.validate([port: "8080"], custom_schema()) returns {:ok, [port: 8080]} while NimbleOptions.validate([port: :bad], custom_schema()) returns {:error, %NimbleOptions.ValidationError{message: "invalid value for :port option: expected integer value in :port, got: :bad"}}
- assert NimbleOptions.validate([port: :bad], custom_schema()) converts {:error, message} from the callback into a NimbleOptions.ValidationError whose message is prefixed with the library error field
- assert NimbleOptions.validate([port: "8080"], invalid_schema()) raises RuntimeError because the callback returns a non-conforming value
Archivos
- NOTES.md
- csx.json
- test/contract.exs