ericw-tools/light/test_common.cc

12 lines
280 B
C++

#include "gtest/gtest.h"
#include <filesystem>
#include <string>
#include <common/cmdlib.hh>
TEST(common, StripFilename)
{
ASSERT_EQ("/home/foo", std::filesystem::path("/home/foo/bar.txt").parent_path());
ASSERT_EQ("", std::filesystem::path("bar.txt").parent_path());
}