0
Fork 0
mirror of https://github.com/TryGhost/Ghost.git synced 2025-02-03 23:00:14 -05:00
ghost/test/unit/apps/private-blogging/input_password_spec.js
Hannah Wolfe 7f1d3ebc07
Move tests from core to root (#11700)
- move all test files from core/test to test/
- updated all imports and other references
- all code inside of core/ is then application code
- tests are correctly at the root level
- consistent with other repos/projects

Co-authored-by: Kevin Ansfield <kevin@lookingsideways.co.uk>
2020-03-30 16:26:47 +01:00

47 lines
1.6 KiB
JavaScript

// We use the name input_password to match the helper for consistency:
var should = require('should'),
// Stuff we are testing
input_password = require('../../../../core/frontend/apps/private-blogging/lib/helpers/input_password');
describe('{{input_password}} helper', function () {
it('has input_password helper', function () {
should.exist(input_password);
});
it('returns the correct input when no custom options are specified', function () {
var markup = '<input class="private-login-password" type="password" name="password" autofocus="autofocus" />',
rendered = input_password();
should.exist(rendered);
String(rendered).should.equal(markup);
});
it('returns the correct input when a custom class is specified', function () {
var markup = '<input class="test-class" type="password" name="password" autofocus="autofocus" />',
options = {
hash: {
class: 'test-class'
}
},
rendered = input_password(options);
should.exist(rendered);
String(rendered).should.equal(markup);
});
it('returns the correct input when a custom placeholder is specified', function () {
var markup = '<input class="private-login-password" type="password" name="password" autofocus="autofocus" placeholder="Test" />',
options = {
hash: {
placeholder: 'Test'
}
},
rendered = input_password(options);
should.exist(rendered);
String(rendered).should.equal(markup);
});
});