-
Notifications
You must be signed in to change notification settings - Fork 101
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* fix issue #411 * rename `dict` to `version_dict` * `getZopeVersion`: Tests and `CHANGES.txt` entry * Update CHANGES.rst (reference syntax) Co-Authored-By: d-maurer <d-maurer@users.noreply.github.com> * `self._assert(isinstance(...))` --> `self.assertIsInstance`
- Loading branch information
Showing
3 changed files
with
68 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
############################################################################## | ||
# | ||
# Copyright (c) 2004 Zope Foundation and Contributors. | ||
# All Rights Reserved. | ||
# | ||
# This software is subject to the provisions of the Zope Public License, | ||
# Version 2.1 (ZPL). A copy of the ZPL should accompany this distribution. | ||
# THIS SOFTWARE IS PROVIDED "AS IS" AND ANY AND ALL EXPRESS OR IMPLIED | ||
# WARRANTIES ARE DISCLAIMED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED | ||
# WARRANTIES OF TITLE, MERCHANTABILITY, AGAINST INFRINGEMENT, AND FITNESS | ||
# FOR A PARTICULAR PURPOSE. | ||
# | ||
############################################################################## | ||
"""Tests for the recreated `getZopeVersion`.""" | ||
|
||
import unittest | ||
|
||
from pkg_resources import get_distribution | ||
from App.version_txt import getZopeVersion | ||
|
||
class Test(unittest.TestCase): | ||
def test_major(self): | ||
self.assertEqual( | ||
getZopeVersion().major, | ||
int(get_distribution("Zope").version.split(".")[0]) | ||
) | ||
|
||
def test_types(self): | ||
zv = getZopeVersion() | ||
for i in (0, 1, 2, 4): | ||
self.assertIsInstance(zv[i], int, str(i)) | ||
self.assertIsInstance(zv[3], str, '3') |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters