Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Z
Zope
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
Kirill Smelkov
Zope
Commits
60437053
Commit
60437053
authored
Apr 08, 2010
by
Tres Seaver
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
More coverage for App.ApplicationManager.ApplicationManager.
parent
77f6f71f
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
15 additions
and
0 deletions
+15
-0
src/App/tests/test_ApplicationManager.py
src/App/tests/test_ApplicationManager.py
+15
-0
No files found.
src/App/tests/test_ApplicationManager.py
View file @
60437053
...
...
@@ -319,6 +319,21 @@ class ApplicationManagerTests(ConfigTestBase,
f
.
close
()
return
fqn
def
test_version_txt
(
self
):
from
App.version_txt
import
version_txt
am
=
self
.
_makeOne
()
self
.
assertEqual
(
am
.
version_txt
(),
version_txt
())
def
test_sys_version
(
self
):
import
sys
am
=
self
.
_makeOne
()
self
.
assertEqual
(
am
.
sys_version
(),
sys
.
version
)
def
test_sys_platform
(
self
):
import
sys
am
=
self
.
_makeOne
()
self
.
assertEqual
(
am
.
sys_platform
(),
sys
.
platform
)
def
test_ctor_initializes_Products
(
self
):
from
App.Product
import
ProductFolder
am
=
self
.
_makeOne
()
...
...
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