libcruft-util/test/paths.cpp

15 lines
297 B
C++

#include <cruft/util/tap.hpp>
#include <cruft/util/paths.hpp>
#include <cruft/util/fs/scoped.hpp>
#include <cruft/util/fs/tmp.hpp>
int main (int, char**)
{
cruft::TAP::logger tap;
tap.expect (!cruft::paths::temp ().empty (), "temp directory is not empty");
return tap.status ();
}