Changeset 210:f21c42e4c9cd
- Timestamp:
- 07/26/07 16:53:16
(3 years ago)
- Author:
- "Brian Warner <warner@lothar.com>"
- branch:
- default
- Message:
test_gifts.py: disable the Bad.* tests when we don't have crypto
-
Files:
-
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
| r209 |
r210 |
|
| 1 | 1 | 2007-07-26 Brian Warner <warner@lothar.com> |
|---|
| | 2 | |
|---|
| | 3 | * foolscap/test/test_gifts.py (Bad.setUp): disable these tests when |
|---|
| | 4 | we don't have crypto, since TubIDs are not mangleable in the same |
|---|
| | 5 | way without crypto. |
|---|
| 2 | 6 | |
|---|
| 3 | 7 | * foolscap/slicer.py (BaseUnslicer.receiveChild): new convention: |
|---|
| r209 |
r210 |
|
| 399 | 399 | # errback. |
|---|
| 400 | 400 | |
|---|
| | 401 | def setUp(self): |
|---|
| | 402 | if not crypto_available: |
|---|
| | 403 | raise unittest.SkipTest("crypto not available") |
|---|
| | 404 | Base.setUp(self) |
|---|
| | 405 | |
|---|
| 401 | 406 | def test_swissnum(self): |
|---|
| 402 | 407 | self.createCharacters() |
|---|