Fork channel

Create a new channel as a copy of main.

Rename channel

Rename main to:

Delete channel

Delete main? This cannot be undone.

macros.js
/*
 * macros.js: Simple test macros
 *
 * (C) 2011, Charlie Robbins & the Contributors
 * MIT LICENSE
 *
 */

var assert = require('assert');

var macros = exports;

macros.assertValidResponse = function (err, res) {
  assert.isTrue(!err);
  assert.equal(res.statusCode, 200);
};