Sha256: 6e2acba275d185486443e74bd49fb599d8b726f86ccd62ab2193a20eb17d35f1

Contents?: true

Size: 503 Bytes

Versions: 11

Compression:

Stored size: 503 Bytes

Contents

#!/bin/bash
set -euo pipefail

if [ -z "${MUX_TOKEN_ID:-}" ]
then
      echo "MUX_TOKEN_ID not set"
      exit 255
fi

if [ -z "${MUX_TOKEN_SECRET:-}" ]
then
      echo "MUX_TOKEN_SECRET not set"
      exit 255
fi

VIDEO_TESTS=./examples/video/exercise*.rb
for f in $VIDEO_TESTS
do
  echo "========== Running $f =========="
    bundle exec ruby -I lib $f
done

DATA_TESTS=./examples/data/exercise*.rb
for f in $DATA_TESTS
do
  echo "========== Running $f =========="
    bundle exec ruby -I lib $f
done

Version data entries

11 entries across 11 versions & 1 rubygems

Version Path
mux_ruby-3.20.0 test.sh
mux_ruby-3.19.0 test.sh
mux_ruby-3.18.0 test.sh
mux_ruby-3.17.0 test.sh
mux_ruby-3.15.0 test.sh
mux_ruby-3.14.0 test.sh
mux_ruby-3.13.0 test.sh
mux_ruby-3.12.0 test.sh
mux_ruby-3.11.1 test.sh
mux_ruby-3.11.0 test.sh
mux_ruby-3.9.0 test.sh