#!/usr/bin/python
#
# gathers all Actions in pyMoleCuilder module and tests them with some default
# values.
#
# date: Oct 5, 2011
# author: Gregor Bollerhey

import pyMoleCuilder as mol
import sys

cmds =  filter(lambda s: s[0] != '_' and s[:10] != 'PythonType', dir(mol))

for value in cmds:
  sys.stdout.write(value+"\t")
sys.stdout.write("\n")

sys.exit(0)

