nix-super/src/libutil/tests/hash.hh

16 lines
186 B
C++
Raw Normal View History

#pragma once
#include <rapidcheck/gen/Arbitrary.h>
#include <hash.hh>
namespace rc {
using namespace nix;
template<>
struct Arbitrary<Hash> {
static Gen<Hash> arbitrary();
};
}