forked from lix-project/lix
16 lines
182 B
C++
16 lines
182 B
C++
|
#pragma once
|
||
|
|
||
|
#include <rapidcheck.h>
|
||
|
|
||
|
#include "path.hh"
|
||
|
|
||
|
namespace rc {
|
||
|
using namespace nix;
|
||
|
|
||
|
template<>
|
||
|
struct Arbitrary<StorePath> {
|
||
|
static Gen<StorePath> arbitrary();
|
||
|
};
|
||
|
|
||
|
}
|