#!/bin/sh
set -e
cp -R test test.modified
sed -i -e "s|require('..')|require('fill-range')|g" `find test.modified -type f`
mocha test.modified
