libcruft-util/test/exe.cpp

13 lines
212 B
C++
Raw Normal View History

2016-05-13 15:23:05 +10:00
#include "./exe.hpp"
#include "./tap.hpp"
#include <iostream>
int
main (void)
{
util::TAP::logger tap;
tap.expect_eq (util::image_path ().stem (), "exe", "identify executable path");
return tap.status ();
}