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
there should be a validator that will check strings for cidr values and throw a validation error if the correct cidr format isn't specified
once created, cidr attributes should be updated to use the validator
currently we only pass through str values to the template
should be able to define a builder with a cidr attribute and call builder.to_dict() similar to how the tests currently detect a validation error
builder.to_dict()
The text was updated successfully, but these errors were encountered:
Add ip network (cidr) validation
3604cf3
Uses a backport of the Python 3.3 ipaddress library for Python 2.x implementation. Fixes mayn#80
Successfully merging a pull request may close this issue.
Expected behavior
there should be a validator that will check strings for cidr values and throw a validation error if the correct cidr format isn't specified
once created, cidr attributes should be updated to use the validator
Actual behavior
currently we only pass through str values to the template
Steps to reproduce
should be able to define a builder with a cidr attribute and call
builder.to_dict()
similar to how the tests currently detect a validation errorThe text was updated successfully, but these errors were encountered: