CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Groups Pages
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
 
def tearDown
 
def test_init_shell
 

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 
20  def setUp(self):
21  self.connection = querying.connect(prod_connection_string, secrets=secrets_source)
def connect
Definition: querying.py:453
def shell_tests.shell_tests.tearDown (   self)

Definition at line 26 of file shell_tests.py.

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

Definition at line 22 of file shell_tests.py.

References shell.connect().

22 
23  def test_init_shell(self):
24  connection = shell.connect(prod_connection_string, secrets=secrets_source)
25  self.assertTrue(connection != None)
def connect
Definition: shell.py:13

Member Data Documentation

shell_tests.shell_tests.connection

Definition at line 20 of file shell_tests.py.