polybar/tests/unit_tests/utils/file.cpp

17 lines
371 B
C++

#include <iomanip>
#include <iostream>
#include "common/test.hpp"
#include "utils/command.hpp"
#include "utils/file.hpp"
using namespace polybar;
TEST(File, expand) {
auto cmd = command_util::make_command<output_policy::REDIRECTED>("echo $HOME");
cmd->exec();
cmd->tail([](string home) {
EXPECT_EQ(home + "/test", file_util::expand("~/test"));
});
}