mirror of
https://github.com/NixOS/nix.git
synced 2025-12-24 09:50:55 +01:00
Everything that is a separate subproject should live in the subprojects
directory.
Progress on #2503
This reverts commit 451f8a8c19.
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();
|
|
};
|
|
|
|
}
|