1
1
Fork 0
mirror of https://github.com/NixOS/nix.git synced 2025-11-27 04:30:59 +01:00

Test store paths, with property tests

The property test in fact found a bug: we were excluding numbers!

(cherry picked from commit 018e2571aa)
This commit is contained in:
John Ericson 2023-01-19 00:26:06 -05:00 committed by github-actions[bot]
parent 01b30df520
commit d111d2ed49
8 changed files with 228 additions and 8 deletions

View file

@ -0,0 +1,23 @@
#include <gtest/gtest.h>
#include <gmock/gmock.h>
#include "store-api.hh"
namespace nix {
class LibStoreTest : public ::testing::Test {
public:
static void SetUpTestSuite() {
initLibStore();
}
protected:
LibStoreTest()
: store(openStore("dummy://"))
{ }
ref<Store> store;
};
} /* namespace nix */