Replies: 2 comments 1 reply
-
Hey, thanks for your feedback and the suggestions. These are all features that make sense and would be nice additions to current feature set.
The tests are indeed a weak spot of the project right now (I only started with some tests for the provider classes). I can only develop this project in my spare time and we currently are using simple bash SQL-statements for the anonymizing process. But we are planning to use the anonymizer, especially due to the increasing number of sensitive data to handle. It would be great to have your suggestions being part of the project, but that would mean to add tests for at least those methods you would change for the features. Or you could wait for me to add tests for the existing methods, but honastly I cannot say right now how long that will take. |
Beta Was this translation helpful? Give feedback.
-
Hey, just to mention it: with the pull request from #28 the code coverage for the tests dramatically increases and the contributor also added a string interpolation, like: format: '+65-{pga_value}-55-{id}'
So it might be worth taking a look into the next PyPi release that includes the PR. Best regards! |
Beta Was this translation helpful? Give feedback.
-
Hey!
Thank you for this project.
I wanted to have some more functions. E.g.
fake.first_name
to replace a column that is otherwise a unique username I will have collisions using justfake.first_name
. But if I could usefake.first_name
-primary-key
(I'd need more general string interpolation for this, I know), then I wouldn't have collisions. I could use UUID to avoid collisions, but the UUID does not make for a convincing username.Anyway, I didn't see any tests in the repo so I'm a bit worried making edits. What would you recommend?
Thanks!
Beta Was this translation helpful? Give feedback.
All reactions