#!/bin/sh
set -eu

testFindnull() {
    msg="$(w1find /dev/null | grep -c Failed)"
    assertEquals "$msg" "2"
}

. shunit2
