aboutsummaryrefslogtreecommitdiff
path: root/src/libstore/tests/derived-path.hh
blob: 506f3ccb106014c82f41c3b5db552a494e830b02 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
#pragma once
///@file

#include <rapidcheck/gen/Arbitrary.h>

#include <derived-path.hh>

#include "tests/path.hh"
#include "tests/outputs-spec.hh"

namespace rc {
using namespace nix;

template<>
struct Arbitrary<DerivedPath::Opaque> {
    static Gen<DerivedPath::Opaque> arbitrary();
};

template<>
struct Arbitrary<DerivedPath::Built> {
    static Gen<DerivedPath::Built> arbitrary();
};

template<>
struct Arbitrary<DerivedPath> {
    static Gen<DerivedPath> arbitrary();
};

}