technion/ruby-argon2

View on GitHub
bin/test

Summary

Maintainability
Test Coverage
#!/bin/bash
# Exit the script immediately if a command fails
set -euo pipefail
# Internal Field Separator
IFS=$'\n\t'

# Run the Argon2 C Library tests
cd ext/argon2_wrap/
make test
cd ../..