summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSteve Piercy <web@stevepiercy.com>2016-04-24 15:43:31 -0700
committerSteve Piercy <web@stevepiercy.com>2016-04-24 15:43:31 -0700
commit8f556a5568faa5f2df17d6cafc0900074bb0acfe (patch)
tree3ac0a8cb1db45e52becf6fbe09e952322a40f66c
parentb5fcc452c364284648aae4c0ce061b3bac711cd0 (diff)
downloadpyramid-8f556a5568faa5f2df17d6cafc0900074bb0acfe.tar.gz
pyramid-8f556a5568faa5f2df17d6cafc0900074bb0acfe.tar.bz2
pyramid-8f556a5568faa5f2df17d6cafc0900074bb0acfe.zip
remove file for testing
-rw-r--r--abc.py18
1 files changed, 0 insertions, 18 deletions
diff --git a/abc.py b/abc.py
deleted file mode 100644
index c200d64c5..000000000
--- a/abc.py
+++ /dev/null
@@ -1,18 +0,0 @@
-from pyramid import testing
-from pyramid.config import Configurator
-
-
-def total(request, *args):
- return sum(args)
-
-
-def prop(request):
- print("getting the property")
- return "the property"
-
-
-config = Configurator()
-config.add_request_method(total)
-config.add_request_method(prop, reify=True)
-
-request = testing.DummyRequest()