mirror of
https://github.com/http-party/node-http-proxy.git
synced 2025-12-08 20:59:18 +00:00
16 lines
347 B
JavaScript
16 lines
347 B
JavaScript
/*
|
|
* examples.js: Tests which ensure all examples do not throw errors.
|
|
*
|
|
* (C) 2010, Charlie Robbins
|
|
*
|
|
*/
|
|
|
|
var vows = require('vows')
|
|
macros = require('./macros'),
|
|
examples = macros.examples;
|
|
|
|
vows.describe('node-http-proxy/examples').addBatch(
|
|
examples.shouldHaveDeps()
|
|
).addBatch(
|
|
examples.shouldHaveNoErrors()
|
|
).export(module); |