mirror of
https://github.com/NixOS/nix.git
synced 2025-12-12 20:11:03 +01:00
30 lines
604 B
C++
30 lines
604 B
C++
#include <gtest/gtest.h>
|
|
|
|
#include "nix/store/local-overlay-store.hh"
|
|
|
|
namespace nix {
|
|
|
|
TEST(LocalOverlayStore, constructConfig_rootQueryParam)
|
|
{
|
|
LocalOverlayStoreConfig config{
|
|
"local-overlay",
|
|
"",
|
|
{
|
|
{
|
|
"root",
|
|
"/foo/bar",
|
|
},
|
|
},
|
|
};
|
|
|
|
EXPECT_EQ(config.rootDir.get(), std::optional{"/foo/bar"});
|
|
}
|
|
|
|
TEST(LocalOverlayStore, constructConfig_rootPath)
|
|
{
|
|
LocalOverlayStoreConfig config{"local-overlay", "/foo/bar", {}};
|
|
|
|
EXPECT_EQ(config.rootDir.get(), std::optional{"/foo/bar"});
|
|
}
|
|
|
|
} // namespace nix
|