mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-22 18:31:57 +03:00
bfade9f50d
no issue
- nothing to explain 😁
16 lines
479 B
JavaScript
16 lines
479 B
JavaScript
var should = require('should'), // jshint ignore:line
|
|
|
|
// Stuff we are testing
|
|
helpers = require('../../../server/helpers');
|
|
|
|
describe('{{encode}} helper', function () {
|
|
it('can escape URI', function () {
|
|
var uri = '$pecial!Charact3r(De[iver]y)Foo #Bar',
|
|
expected = '%24pecial!Charact3r(De%5Biver%5Dy)Foo%20%23Bar',
|
|
escaped = helpers.encode(uri);
|
|
|
|
should.exist(escaped);
|
|
String(escaped).should.equal(expected);
|
|
});
|
|
});
|