-
-
Notifications
You must be signed in to change notification settings - Fork 56
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
Add test cases for some weird issues with Event content type #407
Conversation
@idgserpro I tested both weird issues we are having in collective.cover and was not able to reproduce them here; I think we have a problem in our test suite setup and we would need some help. |
@idgserpro any feedback? |
@idgserpro I tested locally in my own machine and tests are passing; you can do the same. |
yes they do, and that's why I think we have a problem with the test fixture. |
@@ -376,6 +376,46 @@ def test_create_at_with_title_in_request(self): | |||
|
|||
self.assertEqual(page.title, 'Test document') | |||
|
|||
@unittest.skipIf(HAS_PACONTENTYPES, 'Archetypes only') | |||
def test_create_at_event(self): |
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.
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.
Archetypes is going to die soon.
|
||
@unittest.skipUnless(HAS_PACONTENTYPES, 'Dexterity only') | ||
def test_create_dx_event(self): | ||
"""https://github.com/plone/plone.app.contenttypes/issues/465""" |
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.
@hvelarde what's the relationship between plone/plone.app.contenttypes#465 and plone.api
? It seems to me more a problem of plone.app.contenttypes
. What's purpose of this test?
@gbastien FYI.
Test only; do not merge!