Skip to content
New issue

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

Spect does not complain about non-nullable struct fields missing #18

Open
23Skidoo opened this issue Feb 9, 2022 · 1 comment
Open

Comments

@23Skidoo
Copy link

23Skidoo commented Feb 9, 2022

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}}
@23Skidoo
Copy link
Author

23Skidoo commented Feb 9, 2022

"Extra" fields being present also don't result in an error:

> Spect.to_spec(%{bar: "baz"}, __MODULE__)
{:ok, %__MODULE__{foo: nil}}

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant