CMS 3D CMS Logo

List of all members | Public Member Functions | Public Attributes
shell_tests.shell_tests Class Reference
Inheritance diagram for shell_tests.shell_tests:

Public Member Functions

def setUp (self)
 
def tearDown (self)
 
def test_init_shell (self)
 

Public Attributes

 connection
 

Detailed Description

Definition at line 17 of file shell_tests.py.

Member Function Documentation

def shell_tests.shell_tests.setUp (   self)

Definition at line 19 of file shell_tests.py.

19  def setUp(self):
20  self.connection = querying.connect(prod_connection_string, secrets=secrets_source)
21 
def connect(connection_data, mode="r", map_blobs=False, secrets=None, pooling=True)
Definition: querying.py:452
def shell_tests.shell_tests.tearDown (   self)

Definition at line 26 of file shell_tests.py.

26  def tearDown(self):
27  self.connection.tear_down()
28 
def shell_tests.shell_tests.test_init_shell (   self)

Definition at line 22 of file shell_tests.py.

References shell.connect().

22  def test_init_shell(self):
23  connection = shell.connect(prod_connection_string, secrets=secrets_source)
24  self.assertTrue(connection != None)
25 
def connect(connection_data=None, mode="r", map_blobs=False, secrets=None, pooling=True)
Definition: shell.py:15

Member Data Documentation

shell_tests.shell_tests.connection

Definition at line 20 of file shell_tests.py.