PageRenderTime 92ms CodeModel.GetById 11ms RepoModel.GetById 1ms app.codeStats 0ms

/js/lib/Socket.IO-node/support/expresso/Readme.md

http://github.com/onedayitwillmake/RealtimeMultiplayerNodeJs
Markdown | 61 lines | 44 code | 17 blank | 0 comment | 0 complexity | 7e123cb37dd1ce1eca38d3e44fd6b1e4 MD5 | raw file
Possible License(s): GPL-2.0, LGPL-2.1, MPL-2.0-no-copyleft-exception, BSD-3-Clause
  1. # Expresso
  2. TDD framework for [nodejs](http://nodejs.org).
  3. ## Features
  4. - light-weight
  5. - intuitive async support
  6. - intuitive test runner executable
  7. - test coverage support and reporting
  8. - uses the _assert_ module
  9. - `assert.eql()` alias of `assert.deepEqual()`
  10. - `assert.response()` http response utility
  11. - `assert.includes()`
  12. - `assert.type()`
  13. - `assert.isNull()`
  14. - `assert.isUndefined()`
  15. - `assert.isNotNull()`
  16. - `assert.isDefined()`
  17. - `assert.match()`
  18. - `assert.length()`
  19. ## Installation
  20. To install both expresso _and_ node-jscoverage run:
  21. $ make install
  22. To install expresso alone (no build required) run:
  23. $ make install-expresso
  24. Install via npm:
  25. $ npm install expresso
  26. ## License
  27. (The MIT License)
  28. Copyright (c) 2010 TJ Holowaychuk <tj@vision-media.ca>
  29. Permission is hereby granted, free of charge, to any person obtaining
  30. a copy of this software and associated documentation files (the
  31. 'Software'), to deal in the Software without restriction, including
  32. without limitation the rights to use, copy, modify, merge, publish,
  33. distribute, sublicense, and/or sell copies of the Software, and to
  34. permit persons to whom the Software is furnished to do so, subject to
  35. the following conditions:
  36. The above copyright notice and this permission notice shall be
  37. included in all copies or substantial portions of the Software.
  38. THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
  39. EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
  40. MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
  41. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
  42. CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
  43. TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
  44. SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.