mirror of
https://github.com/NixOS/nix
synced 2025-06-25 02:21:16 +02:00
18 lines
243 B
C++
18 lines
243 B
C++
#pragma once
|
|
///@file
|
|
|
|
#include <rapidcheck/gen/Arbitrary.h>
|
|
|
|
#include <outputs-spec.hh>
|
|
|
|
#include "tests/path.hh"
|
|
|
|
namespace rc {
|
|
using namespace nix;
|
|
|
|
template<>
|
|
struct Arbitrary<OutputsSpec> {
|
|
static Gen<OutputsSpec> arbitrary();
|
|
};
|
|
|
|
}
|