Following code will print all google python lib paths
import google
print "google path: {}.".format(google.__path__)
running the code on my machine prints this
google path:
['/usr/local/Cellar/protobuf/2.6.1/libexec/lib/python2.7/site-packages/google',
'/usr/local/Cellar/python/2.7.11/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/google'].
this is not the same as looking for google appengine installation directories.
On my mac, the installer creates sym links
/usr/local/google_appengine
incase you are unit testing, you probably need to add the path to your code
import sys
sys.path.insert(1, '/usr/local/google_appengine')
sys.path.insert(1, '/usr/local/google_appengine/lib/yaml/lib')