mirror of
https://github.com/codeninjasllc/discourse.git
synced 2024-11-24 08:09:13 -05:00
12 lines
No EOL
385 B
JavaScript
12 lines
No EOL
385 B
JavaScript
module("Discourse.Site");
|
|
|
|
test('instance', function(){
|
|
|
|
var site = Discourse.Site.instance();
|
|
|
|
present(site, "We have a current site singleton");
|
|
present(site.get('categories'), "The instance has a list of categories");
|
|
present(site.get('flagTypes'), "The instance has a list of flag types");
|
|
present(site.get('trustLevels'), "The instance has a list of trust levels");
|
|
|
|
}); |