mirror of
https://github.com/privatevoid-net/nix-super.git
synced 2024-11-24 06:56:14 +02:00
e65510da56
Everything that is a separate subproject should live in the subprojects
directory.
Progress on #2503
This reverts commit 451f8a8c19
.
14 lines
276 B
C++
14 lines
276 B
C++
#include <gtest/gtest.h>
|
|
|
|
#include "local-binary-cache-store.hh"
|
|
|
|
namespace nix {
|
|
|
|
TEST(LocalBinaryCacheStore, constructConfig)
|
|
{
|
|
LocalBinaryCacheStoreConfig config{"local", "/foo/bar/baz", {}};
|
|
|
|
EXPECT_EQ(config.binaryCacheDir, "/foo/bar/baz");
|
|
}
|
|
|
|
} // namespace nix
|