describe('strings.alpha(string)', function () {
  it('should return true if the string contains only letters', function () {
    assert(alpha('foo'));
  });