We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
For example, given the following struct definition:
typed_struct enforce: true do field :foo, String.t() end
Spect will happily accept an empty map as valid:
> Spect.to_spec(%{}, __MODULE__) {:ok, %__MODULE__{foo: nil}}
The text was updated successfully, but these errors were encountered:
"Extra" fields being present also don't result in an error:
> Spect.to_spec(%{bar: "baz"}, __MODULE__) {:ok, %__MODULE__{foo: nil}}
Sorry, something went wrong.
No branches or pull requests
For example, given the following struct definition:
Spect will happily accept an empty map as valid:
The text was updated successfully, but these errors were encountered: