mirror of
https://github.com/codeninjasllc/discourse.git
synced 2024-11-25 08:39:38 -05:00
14 lines
428 B
JavaScript
14 lines
428 B
JavaScript
module("Discourse.Category");
|
|
|
|
test('slugFor', function(){
|
|
|
|
var slugFor = function(args, val, text) {
|
|
equal(Discourse.Category.slugFor(args), val, text);
|
|
};
|
|
|
|
slugFor({slug: 'hello'}, "hello", "It calculates the proper slug for hello");
|
|
slugFor({id: 123, slug: ''}, "123-category", "It returns id-category for empty strings");
|
|
slugFor({id: 456}, "456-category", "It returns id-category for undefined slugs");
|
|
|
|
});
|
|
|