File: test_init.py

package info (click to toggle)
rpy 1.0.3-15
  • links: PTS
  • area: main
  • in suites: squeeze
  • size: 692 kB
  • ctags: 671
  • sloc: ansic: 2,144; python: 1,592; makefile: 129; sh: 69
file content (24 lines) | stat: -rw-r--r-- 568 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
from __future__ import nested_scopes

import unittest
import sys
sys.path.insert(1, "..")
import os.path, time

import rpy


class InitTestCase(unittest.TestCase):

    def testInitFails(self):
        """
        R does not support multiple R interpraters.  Further, rpy
        doesn't support restarting a deleted interpreter.  So, we
        need to check that an exception is raised if someone tries
        to do either.
        """
        
        self.failUnlessRaises(RuntimeError, lambda: rpy.R() )
         
if __name__ == '__main__':
     unittest.main()