mirror of
https://github.com/privatevoid-net/nix-super.git
synced 2024-11-13 17:56:15 +02:00
18 lines
234 B
C++
18 lines
234 B
C++
|
#pragma once
|
||
|
|
||
|
#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();
|
||
|
};
|
||
|
|
||
|
}
|