mirror of
https://github.com/encounter/JSONAPI.git
synced 2026-03-30 11:18:38 -07:00
16 lines
270 B
Swift
16 lines
270 B
Swift
//
|
|
// Error+Arbitrary.swift
|
|
// JSONAPIArbitrary
|
|
//
|
|
// Created by Mathew Polzin on 1/21/19.
|
|
//
|
|
|
|
import SwiftCheck
|
|
import JSONAPI
|
|
|
|
extension UnknownJSONAPIError: Arbitrary {
|
|
public static var arbitrary: Gen<UnknownJSONAPIError> {
|
|
return Gen.pure(.unknownError)
|
|
}
|
|
}
|