Sha256: 5151ab30684880f8b336e6ec4a7797d112f275da759833ea944b19228b40cb27

Contents?: true

Size: 316 Bytes

Versions: 4

Compression:

Stored size: 316 Bytes

Contents

#!/bin/bash

set -euo pipefail

SUPPORTED_VERSIONS=$(script/supported_ruby_versions)

run-tests-for-version() {
  local version="$1"
  (export RBENV_VERSION=$version; bundle exec rake)
}

for version in $SUPPORTED_VERSIONS; do
  echo
  echo "*** Running tests for $version ***"
  run-tests-for-version $version
done

Version data entries

4 entries across 4 versions & 2 rubygems

Version Path
shoulda-4.0.0 script/run_all_tests
shoulda-4.0.0.rc2 script/run_all_tests
shoulda-4.0.0.rc1 script/run_all_tests
shoulda-matchers-4.0.0.rc1 script/run_all_tests