mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-22 10:21:36 +03:00
0ccc24bf11
refs bcf5a1bc34
- leftovers
16 lines
457 B
JavaScript
16 lines
457 B
JavaScript
var should = require('should'),
|
|
|
|
// 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);
|
|
});
|
|
});
|