libcruft-util/test/paths.cpp

15 lines
297 B
C++
Raw Normal View History

2022-01-19 12:01:56 +11:00
#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 ();
}