mirror of
https://github.com/privatevoid-net/nix-super.git
synced 2024-11-15 18:56:16 +02:00
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();
|
||
|
};
|
||
|
|
||
|
}
|