You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Apr 29, 2022. It is now read-only.
Currently all the logic is put inside NewAccountForm and it only supports single case-sensitive answer (it only does .strip() on the input)
Things to fix:
Check should be case insensitive (eg. "Three" and "three" are both correct answer)
We should be able to support multiple answers (eg. "3" and "three" are both correct) (note: maybe we just specify all correct answer in the model as a comma separated string?)
encapsulate the logic – so that it's easier to integrate it in other places if we need it + we could put less logic in the NewAccountForm
maybe write a separate set of unit tests for this as well.
The text was updated successfully, but these errors were encountered:
I've been working on this one. Seems that the biggest challenge is seperating the textcha and the NewAccountForm logic. Best I can come up with is simply letting the NewAccountForm inherit from a new textcha form class.
Currently all the logic is put inside NewAccountForm and it only supports single case-sensitive answer (it only does .strip() on the input)
Things to fix:
NewAccountForm
The text was updated successfully, but these errors were encountered: