Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorCode Raguet <ignacio.code@gmail.com>2013-09-06 16:27:05 (GMT)
committer Code Raguet <ignacio.code@gmail.com>2013-09-06 16:27:05 (GMT)
commitaac43da330237d31202322aa352deb3be5e2fdb2 (patch)
treee047d0674f5ddb3f7524e238ac68f49f9ef8088e
parent430ad68dc8df2746c35ff788afc7491ee6c1ef9b (diff)
remove test that is cover by another
-rw-r--r--webapp/polls/tests/poll_result_file_tests.py15
1 files changed, 0 insertions, 15 deletions
diff --git a/webapp/polls/tests/poll_result_file_tests.py b/webapp/polls/tests/poll_result_file_tests.py
index f5b4178..59c290e 100644
--- a/webapp/polls/tests/poll_result_file_tests.py
+++ b/webapp/polls/tests/poll_result_file_tests.py
@@ -150,21 +150,6 @@ class NumeroEscuelaTest(MongoTestCase):
data['result']['0']['polled'] = {}
self.data = data
- def test_it_should_respond_to_numero_escuela_as_a_set(self):
- data = self.data
- numero_escuela = '1'
- data['result']['0']['polled']['NUM_ESC'] = numero_escuela
-
- json_str = json_construc(data)
- file_ = tempfile.NamedTemporaryFile(suffix='.poll_result',
- delete=False)
- file_.write(json_str)
- file_.close()
- file_path = file_.name
-
- result = PollResultFile(file_path)
- self.assertEqual(set([numero_escuela]), result.get_numero_escuela())
-
def test_it_should_get_all_numero_escuela_as_unique_items(self):
data = self.data
numero_escuela1 = '1'