mirror of
https://github.com/privatevoid-net/nix-super.git
synced 2024-11-11 16:56:17 +02:00
ecd3e4ebd7
Also put proper comparison methods on `DerivedPath` and `NixStringContextElem`, which is needed for the tests but good in general.
17 lines
234 B
C++
17 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();
|
|
};
|
|
|
|
}
|