19 lines
256 B
C++
19 lines
256 B
C++
#pragma once
|
|
///@file
|
|
|
|
#include <rapidcheck/gen/Arbitrary.h>
|
|
|
|
#include "lix/libstore/outputs-spec.hh"
|
|
|
|
#include "tests/path.hh"
|
|
|
|
namespace rc {
|
|
using namespace nix;
|
|
|
|
template<>
|
|
struct Arbitrary<OutputsSpec> {
|
|
static Gen<OutputsSpec> arbitrary();
|
|
};
|
|
|
|
}
|