Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/webapp/polls/tests/result_tests.py
diff options
context:
space:
mode:
authorRogelio Mita <rogeliomita@activitycentral.com>2013-09-12 20:47:03 (GMT)
committer Rogelio Mita <rogeliomita@activitycentral.com>2013-09-12 20:47:03 (GMT)
commitebd064e6309d66df4891249b23aa8b621f94b3b7 (patch)
treed646ecdeb40605f6f6152ba690ba4fb9332e9a86 /webapp/polls/tests/result_tests.py
parent457d266f17bbe18b44cad254831566c181568905 (diff)
Deleting dead code: static method get
Diffstat (limited to 'webapp/polls/tests/result_tests.py')
-rw-r--r--webapp/polls/tests/result_tests.py7
1 files changed, 0 insertions, 7 deletions
diff --git a/webapp/polls/tests/result_tests.py b/webapp/polls/tests/result_tests.py
index 7afd48f..f3f6501 100644
--- a/webapp/polls/tests/result_tests.py
+++ b/webapp/polls/tests/result_tests.py
@@ -87,13 +87,6 @@ class PollResultTests(MongoTestCase):
self.assertEqual(1, self.db.poll_results.count())
- def test_get(self):
- data = {'poll_id': 'ID'}
- poll_result = PollResult(data)
- poll_result_id = poll_result.save()
-
- self.assertIsNotNone(PollResult.get(poll_result_id))
-
def test_merge_results(self):
data = {'name': "poll #1"}
poll = Poll(data=data)