Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/tests/testutils.py
diff options
context:
space:
mode:
authorTomeu Vizoso <tomeu@sugarlabs.org>2009-02-04 11:34:37 (GMT)
committer Tomeu Vizoso <tomeu@sugarlabs.org>2009-02-04 11:34:37 (GMT)
commitf3f36629db33c15030c84fd9228c50b1d7fbab71 (patch)
tree7f3f9d73ffc310c66113f6a0b18f67d03576e72c /tests/testutils.py
parent2a21c290bae0ced719920a784b17ad48b5c4adc6 (diff)
Remove files referring to the old implementation
Diffstat (limited to 'tests/testutils.py')
-rw-r--r--tests/testutils.py10
1 files changed, 0 insertions, 10 deletions
diff --git a/tests/testutils.py b/tests/testutils.py
deleted file mode 100644
index fc667db..0000000
--- a/tests/testutils.py
+++ /dev/null
@@ -1,10 +0,0 @@
-import tempfile
-import os
-
-def tmpData(data):
- """Put data into a temporary file returning the filename """
- fd, fn = tempfile.mkstemp()
- os.write(fd, data)
- os.close(fd)
- return fn
-