aboutsummarylogtreecommitdiffstats
path: root/test.sh
blob: 675e3cee60969d84975491ecb0296d559f921077 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#!/usr/bin/env bash

testEquality() {
  if ./haur -g &>/dev/null; then
    echo "Test failed"
    exit 1
  else
    echo "Test successful"
    exit 0
  fi
}

testEquality