vapor / fluent-postgres-driver

🐘 PostgreSQL driver for Fluent.
MIT License
149 stars 53 forks source link

add test for enum support #85

Closed tanner0101 closed 6 years ago

tanner0101 commented 6 years ago

Add a test to ensure enums like the following are fully supported:

/// The Exact enum from my project
enum Availability: UInt8, Content {
    case everyday
    case sunday
    case monday
    case tuesday
    case wednesday
    case thursday
    case friday
    case saturday
}