#!/usr/bin/env python3

# Tests if scipy is available

from sys import exit

try:
    import zoidberg

    exit(0)
except ImportError:
    exit(1)
