Skip to content

Instantly share code, notes, and snippets.

@aaira-a
aaira-a / README.md
Created November 3, 2014 02:51
oba essentials

oba2014

Developed on Microsoft Visual C++ 2010 Express (http://go.microsoft.com/?linkid=9709949)

Specific settings:

  1. Right click Project -> Properties
  2. Linker -> Input -> Ignore All Default Libraries -> No
@aaira-a
aaira-a / connectionstrings.py
Created April 17, 2014 09:53
Robot Framework variable file in Python, accessed using extended syntax from test case file.
class database(object):
def __init__(self, env):
if env == 'test':
self.name = str('test mysql 1')
self.host = str('1.1.1.1')
self.port = str('11')
self.login = str('testlogin')
self.password = str('testpass')