To get set up, first up, create your MySQL database:
rake db:createThen run the bootstrap task:
rake bootstrapThe bootstrap task will ask you for a username and password for a regular user that will have ownership of the provider that is created, as well as another user that will have admin rights.
You’ll also need to create a site_config.yml file in the config/ dir. You can start with the example:
cp config/site_config.yml.example config/site_config.ymlCreate the test database…
rake testing db:create… and populate it:
rake db:test:cloneRun the tests:
rake specor using ZenTest
autospeccucumber featuresor add them to your ZenTests:
AUTOFEATURE=true autospec