Changes between Version 7 and Version 8 of SetupDev
- Timestamp:
- 2012-11-17T03:02:23Z (12 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
SetupDev
v7 v8 1 [[PageOutline(0-7, Table of Contents, floated)]] 2 1 3 So, you want to do some contribution for iPeer project. Just follow the following steps to make your own local development environment. 4 5 == Setup == 2 6 3 7 === For External Developers and Contributers === … … 64 68 Configure::write('debug', 2); 65 69 }}} 70 71 == Running Tests == 72 In order to run tests, you will need [http://www.phing.info/ Phing] and [http://pecl.php.net/package/oauth OAuth] (required to run controller tests). You also need to set up a test database, named the same as your database in app/config/database.php with suffix "_test", e.g. ipeer_test. 73 74 To run the tests, simply call the following commands at the root of the directory: 75 {{{ 76 phing test 77 }}}