Add more integration tests #31

Merged
joeybaker merged 7 commits from code-coverage into master 2016-10-28 18:28:06 +00:00
Showing only changes of commit 6a2290f064 - Show all commits

View File

@ -158,6 +158,7 @@ Team.findAll({order: ['name']})
```js ```js
// returns the teams ordered by the name column, descending // returns the teams ordered by the name column, descending
// GET /teams?order[0]=name&order[0]=DESC // GET /teams?order[0]=name&order[0]=DESC
// GET /teams?order=name%20DESC
// results in a Sequelize query: // results in a Sequelize query:
Team.findAll({order: [['name', 'DESC']]}) Team.findAll({order: [['name', 'DESC']]})