=========================
iw_plone_project template
=========================

Check that the directory does not exist::

  >>> rmdir(tempdir, 'my_project')

Go to a directory::

  >>> cd(tempdir)

Then use paster::

  >>> sh('paster create -t iw_plone_project my_project --no-interactive')
  paster create -t iw_plone_project my_project --no-interactive
  Selected and implied templates:
  ...

  >>> ls(tempdir, 'my_project')
  d buildout
  d bundles
  d docs
  d packages
  d releases

Let's try a bootstrap::

  >>> cd(os.path.join(tempdir, 'my_project', 'buildout'))
  >>> sh('python bootstrap.py')
  python bootstrap.py
  Using setuptools from .../buildout/eggs/setuptools-...egg
  Using zc.buildout from .../buildout/eggs/zc.buildout-...egg
  Using zope.testing from .../buildout/eggs/zope.testing-...egg

