Revision: 602
          http://rpy.svn.sourceforge.net/rpy/?rev=602&view=rev
Author:   lgautier
Date:     2008-08-03 08:48:24 +0000 (Sun, 03 Aug 2008)

Log Message:
-----------
Removed test (irrelevant Python is forcing kw arguments to be in a Python dict)

Modified Paths:
--------------
    branches/rpy_nextgen/rpy/rlike/tests/test_container.py

Modified: branches/rpy_nextgen/rpy/rlike/tests/test_container.py
===================================================================
--- branches/rpy_nextgen/rpy/rlike/tests/test_container.py      2008-08-03 
07:29:05 UTC (rev 601)
+++ branches/rpy_nextgen/rpy/rlike/tests/test_container.py      2008-08-03 
08:48:24 UTC (rev 602)
@@ -60,19 +60,7 @@
         self.assertEquals(1, x.index('b'))
         self.assertEquals(3, x['a'])
         self.assertEquals(2, x.index('a'))
-        
-    def testCall(self):
 
-        def f(**kwargs):
-            return [k for k in kwargs]
-
-        args = (('a', 5), ('b', 4), ('c', 3),
-                ('d', 2), ('e', 1))
-        x = rlc.ArgsDict(args)
-        k = f(**x)
-        for ki, ko in itertools.izip(args, k):
-            self.assertEquals(ki[0], ko)
-
     def testItems(self):
 
         args = (('a', 5), ('b', 4), ('c', 3),


This was sent by the SourceForge.net collaborative development platform, the 
world's largest Open Source development site.

-------------------------------------------------------------------------
This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
Build the coolest Linux based applications with Moblin SDK & win great prizes
Grand prize is a trip for two to an Open Source event anywhere in the world
http://moblin-contest.org/redirect.php?banner_id=100&url=/
_______________________________________________
rpy-list mailing list
rpy-list@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/rpy-list

Reply via email to