mirror of
https://github.com/discourse/discourse.git
synced 2025-05-24 03:36:18 +08:00
Refactor: move category slug helper to Category model
This commit is contained in:
@ -2,22 +2,6 @@
|
||||
|
||||
describe("Discourse.Utilities", function() {
|
||||
|
||||
describe("categoryUrlId", function() {
|
||||
|
||||
it("returns the slug when it exists", function() {
|
||||
expect(Discourse.Utilities.categoryUrlId({ slug: 'hello' })).toBe("hello");
|
||||
});
|
||||
|
||||
it("returns id-category when slug is an empty string", function() {
|
||||
expect(Discourse.Utilities.categoryUrlId({ id: 123, slug: '' })).toBe("123-category");
|
||||
});
|
||||
|
||||
it("returns id-category without a slug", function() {
|
||||
expect(Discourse.Utilities.categoryUrlId({ id: 456 })).toBe("456-category");
|
||||
});
|
||||
|
||||
});
|
||||
|
||||
describe("emailValid", function() {
|
||||
|
||||
it("allows upper case in first part of emails", function() {
|
||||
|
Reference in New Issue
Block a user