-
-
Notifications
You must be signed in to change notification settings - Fork 176
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
refactor test_issue_345 #415
refactor test_issue_345 #415
Conversation
Pull Request Test Coverage Report for Build 3089973912
💛 - Coveralls |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
These tests would need to be added to be sure that future changes do not break dependent code.
"""Issue #345 - Why is tools.UIDGenerator a class (that must be instantiated) instead of a module? """ | ||
uid1 = icalendar.tools.UIDGenerator.uid() | ||
uid2 = icalendar.tools.UIDGenerator.uid('test.test') | ||
uid3 = icalendar.tools.UIDGenerator.uid(unique='123') |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The tests are missing these cases:
- one argument
host_name
- one argument
unique
- no arguments
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I create a PR for that...
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks for your pull request! I saw through it and created a PR adding to the changes. jacadzaca#2 Please review :) |
…ssue_345 Jacadzaca test restructure issue 345
Thanks for that! |
splitting as per #400