#!perl -I ..
use strict;
use warnings;
use build::Main;

$TemperatureGovernor::USE = 0; # 0 = off, 1 = on
my $main = Main->new();
#run any tests specific to the tsetse build script here
::ok(1,"fake test to satisfy harness");
$main->run(
    "tsetse"
    ,""
    ,""
    );
done_testing();

