Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
erp5
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
preetwinder
erp5
Commits
767d77a3
Commit
767d77a3
authored
Jun 01, 2012
by
Ivan Tyagov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Adjust test to recent changes in discussions (by default forum is public).
parent
622ad2e3
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
11 additions
and
6 deletions
+11
-6
product/ERP5/tests/testERP5Discussion.py
product/ERP5/tests/testERP5Discussion.py
+11
-6
No files found.
product/ERP5/tests/testERP5Discussion.py
View file @
767d77a3
...
...
@@ -127,14 +127,19 @@ class TestERP5Discussion(ERP5TypeTestCase):
self
.
assertEqual
(
group1
,
discussion_thread_object1
.
getGroupValue
())
self
.
assertEqual
(
group2
,
discussion_thread_object2
.
getGroupValue
())
# check getDocumentValue.. on Web Section context
# check getDocumentValue.. on Web Section context (by default forum is public
# so threads should be part of document list)
self
.
assertSameSet
([
discussion_thread_object1
],
[
x
.
getObject
()
for
x
in
web_section1
.
getDocumentValueList
()])
self
.
assertSameSet
([
discussion_thread_object2
],
[
x
.
getObject
()
for
x
in
web_section2
.
getDocumentValueList
()])
# test archiving threads so the do not belong any more to web section document list
discussion_thread_object1
.
archive
()
discussion_thread_object2
.
archive
()
self
.
tic
()
self
.
assertSameSet
([],
web_section1
.
getDocumentValueList
())
self
.
assertSameSet
([],
web_section2
.
getDocumentValueList
())
discussion_thread_object1
.
publish
()
discussion_thread_object2
.
publish
()
self
.
tic
()
self
.
assertSameSet
([
discussion_thread_object1
],
[
x
.
getObject
()
for
x
in
web_section1
.
getDocumentValueList
()])
self
.
assertSameSet
([
discussion_thread_object2
],
[
x
.
getObject
()
for
x
in
web_section2
.
getDocumentValueList
()])
def
test_suite
():
suite
=
unittest
.
TestSuite
()
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment