#!/bin/sh

exec 2>&1

set -e

test_star() {
  # Build the example program against the installed development libs
  gcc -o example-star examples/example-star.c -lsupernovas -lm
  
  # Run the example program
  ./example-star
}

. shunit2
