summaryrefslogtreecommitdiff
path: root/src/zope/security/tests
diff options
context:
space:
mode:
authorTres Seaver <tseaver@palladion.com>2010-06-03 17:34:32 +0000
committerTres Seaver <tseaver@palladion.com>2010-06-03 17:34:32 +0000
commitd357d20d7bd13a3930c96581413ed258eed35082 (patch)
tree550ffbf41dcd09fee22e4d377abe0772fcd0a7a5 /src/zope/security/tests
parent3a9f6fb3249a34a6a70f8d3bc9989041f82ba43d (diff)
downloadzope-security-d357d20d7bd13a3930c96581413ed258eed35082.tar.gz
Remove CVS-era Id fossils.
Diffstat (limited to 'src/zope/security/tests')
-rw-r--r--src/zope/security/tests/adapter.py2
-rw-r--r--src/zope/security/tests/components.py2
-rw-r--r--src/zope/security/tests/emptymodule.py2
-rw-r--r--src/zope/security/tests/exampleclass.py2
-rw-r--r--src/zope/security/tests/module.py2
-rw-r--r--src/zope/security/tests/modulehookup.py2
-rw-r--r--src/zope/security/tests/test_adapter.py3
-rw-r--r--src/zope/security/tests/test_checker.py2
-rw-r--r--src/zope/security/tests/test_contentdirective.py2
-rw-r--r--src/zope/security/tests/test_decorator.py2
-rw-r--r--src/zope/security/tests/test_directives.py2
-rw-r--r--src/zope/security/tests/test_location.py2
-rw-r--r--src/zope/security/tests/test_management.py2
-rw-r--r--src/zope/security/tests/test_module_directives.py2
-rw-r--r--src/zope/security/tests/test_permission.py2
-rw-r--r--src/zope/security/tests/test_protectclass.py2
-rw-r--r--src/zope/security/tests/test_protectsubclass.py2
-rw-r--r--src/zope/security/tests/test_proxy.py2
-rw-r--r--src/zope/security/tests/test_set_checkers.py2
-rw-r--r--src/zope/security/tests/test_simpleinteraction.py2
20 files changed, 0 insertions, 41 deletions
diff --git a/src/zope/security/tests/adapter.py b/src/zope/security/tests/adapter.py
index d2ff156..1fcdaf9 100644
--- a/src/zope/security/tests/adapter.py
+++ b/src/zope/security/tests/adapter.py
@@ -12,8 +12,6 @@
#
##############################################################################
"""Sample adapter class for testing
-
-$Id$
"""
import zope.interface
import zope.component
diff --git a/src/zope/security/tests/components.py b/src/zope/security/tests/components.py
index 2a9523f..1d7341b 100644
--- a/src/zope/security/tests/components.py
+++ b/src/zope/security/tests/components.py
@@ -12,8 +12,6 @@
#
##############################################################################
"""Components for testing
-
-$Id$
"""
from zope.interface import Interface, Attribute, implements
from zope.component import adapts
diff --git a/src/zope/security/tests/emptymodule.py b/src/zope/security/tests/emptymodule.py
index b319132..f35cab6 100644
--- a/src/zope/security/tests/emptymodule.py
+++ b/src/zope/security/tests/emptymodule.py
@@ -15,6 +15,4 @@
(There is a problem with the way the unit tests interact with the modules
being tests, so the objects can't be expected to show up in place.)
-
-$Id$
"""
diff --git a/src/zope/security/tests/exampleclass.py b/src/zope/security/tests/exampleclass.py
index 60e9a3a..1d73b4b 100644
--- a/src/zope/security/tests/exampleclass.py
+++ b/src/zope/security/tests/exampleclass.py
@@ -12,8 +12,6 @@
#
##############################################################################
"""Example test classes
-
-$Id$
"""
from zope.interface import Interface
diff --git a/src/zope/security/tests/module.py b/src/zope/security/tests/module.py
index 199d53c..3ae0ffb 100644
--- a/src/zope/security/tests/module.py
+++ b/src/zope/security/tests/module.py
@@ -17,8 +17,6 @@ This is necessary because the test framework interferes with seeing changes in
the running modules via the module namespace. This enables having some
subject classes, instances, permissions, etc, that don't live in the test
modules, themselves.
-
-$Id$
"""
from zope.interface import Interface
from zope.schema import Text
diff --git a/src/zope/security/tests/modulehookup.py b/src/zope/security/tests/modulehookup.py
index 924cc88..eb56905 100644
--- a/src/zope/security/tests/modulehookup.py
+++ b/src/zope/security/tests/modulehookup.py
@@ -17,8 +17,6 @@ This is necessary because the test framework interferes with seeing changes in
the running modules via the module namespace. This enables having some
subject classes, instances, permissions, etc, that don't live in the test
modules, themselves.
-
-$Id$
"""
from zope.interface import Interface
diff --git a/src/zope/security/tests/test_adapter.py b/src/zope/security/tests/test_adapter.py
index ed368ac..73a8303 100644
--- a/src/zope/security/tests/test_adapter.py
+++ b/src/zope/security/tests/test_adapter.py
@@ -11,9 +11,6 @@
# FOR A PARTICULAR PURPOSE.
#
##############################################################################
-"""
-$Id$
-"""
import unittest
from doctest import DocTestSuite
diff --git a/src/zope/security/tests/test_checker.py b/src/zope/security/tests/test_checker.py
index bec4c71..f732fd8 100644
--- a/src/zope/security/tests/test_checker.py
+++ b/src/zope/security/tests/test_checker.py
@@ -12,8 +12,6 @@
#
##############################################################################
"""Security Checker tests
-
-$Id$
"""
from unittest import TestCase, TestSuite, main, makeSuite
from zope.interface import implements
diff --git a/src/zope/security/tests/test_contentdirective.py b/src/zope/security/tests/test_contentdirective.py
index b6282cc..a0f1b66 100644
--- a/src/zope/security/tests/test_contentdirective.py
+++ b/src/zope/security/tests/test_contentdirective.py
@@ -12,8 +12,6 @@
#
##############################################################################
"""Test 'zope:class' directive.
-
-$Id$
"""
import unittest
from StringIO import StringIO
diff --git a/src/zope/security/tests/test_decorator.py b/src/zope/security/tests/test_decorator.py
index 1c82521..15f64fd 100644
--- a/src/zope/security/tests/test_decorator.py
+++ b/src/zope/security/tests/test_decorator.py
@@ -12,8 +12,6 @@
#
##############################################################################
"""Context Tests
-
-$Id$
"""
import doctest
diff --git a/src/zope/security/tests/test_directives.py b/src/zope/security/tests/test_directives.py
index d2ee3a7..63cd508 100644
--- a/src/zope/security/tests/test_directives.py
+++ b/src/zope/security/tests/test_directives.py
@@ -12,8 +12,6 @@
#
##############################################################################
"""Component Directives Tests
-
-$Id$
"""
import re
import unittest
diff --git a/src/zope/security/tests/test_location.py b/src/zope/security/tests/test_location.py
index b7f002d..912d885 100644
--- a/src/zope/security/tests/test_location.py
+++ b/src/zope/security/tests/test_location.py
@@ -12,8 +12,6 @@
#
##############################################################################
"""Context Tests
-
-$Id: test_decorator.py 95518 2009-01-29 19:16:15Z ctheune $
"""
import doctest
diff --git a/src/zope/security/tests/test_management.py b/src/zope/security/tests/test_management.py
index 9e5b7fc..0d9e521 100644
--- a/src/zope/security/tests/test_management.py
+++ b/src/zope/security/tests/test_management.py
@@ -12,8 +12,6 @@
#
##############################################################################
""" Unit tests for SecurityManagement
-
-$Id$
"""
import unittest
diff --git a/src/zope/security/tests/test_module_directives.py b/src/zope/security/tests/test_module_directives.py
index 8068348..327f9b8 100644
--- a/src/zope/security/tests/test_module_directives.py
+++ b/src/zope/security/tests/test_module_directives.py
@@ -12,8 +12,6 @@
#
##############################################################################
"""Directives Tests
-
-$Id$
"""
import doctest
diff --git a/src/zope/security/tests/test_permission.py b/src/zope/security/tests/test_permission.py
index cf3f85f..3827ebe 100644
--- a/src/zope/security/tests/test_permission.py
+++ b/src/zope/security/tests/test_permission.py
@@ -12,8 +12,6 @@
#
##############################################################################
"""Test permissions
-
-$Id$
"""
import unittest
from doctest import DocTestSuite
diff --git a/src/zope/security/tests/test_protectclass.py b/src/zope/security/tests/test_protectclass.py
index c73a612..6e0daec 100644
--- a/src/zope/security/tests/test_protectclass.py
+++ b/src/zope/security/tests/test_protectclass.py
@@ -12,8 +12,6 @@
#
##############################################################################
"""Test handler for 'protectClass' directive
-
-$Id$
"""
import unittest
from zope.interface import implements
diff --git a/src/zope/security/tests/test_protectsubclass.py b/src/zope/security/tests/test_protectsubclass.py
index 8908728..6e6abe4 100644
--- a/src/zope/security/tests/test_protectsubclass.py
+++ b/src/zope/security/tests/test_protectsubclass.py
@@ -12,8 +12,6 @@
#
##############################################################################
"""Test proper protection of inherited methods
-
-$Id$
"""
import unittest
from zope.security.checker import selectChecker
diff --git a/src/zope/security/tests/test_proxy.py b/src/zope/security/tests/test_proxy.py
index eb55b13..e2fdaaa 100644
--- a/src/zope/security/tests/test_proxy.py
+++ b/src/zope/security/tests/test_proxy.py
@@ -12,8 +12,6 @@
#
##############################################################################
"""Security proxy tests
-
-$Id$
"""
import unittest
diff --git a/src/zope/security/tests/test_set_checkers.py b/src/zope/security/tests/test_set_checkers.py
index 768aa40..3a6368b 100644
--- a/src/zope/security/tests/test_set_checkers.py
+++ b/src/zope/security/tests/test_set_checkers.py
@@ -15,8 +15,6 @@
This is a test of the assertions made in
zope.security.checkers._default_checkers.
-
-$Id$
"""
import sys
import unittest
diff --git a/src/zope/security/tests/test_simpleinteraction.py b/src/zope/security/tests/test_simpleinteraction.py
index e2457ca..1755c52 100644
--- a/src/zope/security/tests/test_simpleinteraction.py
+++ b/src/zope/security/tests/test_simpleinteraction.py
@@ -12,8 +12,6 @@
#
##############################################################################
"""Unit tests for zope.security.simpleinteraction.
-
-$Id$
"""
import unittest