2014-12-15 14:41:08 -05:00
|
|
|
import Session from "discourse/models/session";
|
|
|
|
|
2013-07-26 14:59:28 -04:00
|
|
|
module("Discourse.Session");
|
|
|
|
|
2013-07-26 15:18:46 -04:00
|
|
|
test('highestSeenByTopic', function() {
|
2014-12-15 14:41:08 -05:00
|
|
|
var session = Session.current();
|
2013-07-26 15:18:46 -04:00
|
|
|
deepEqual(session.get('highestSeenByTopic'), {}, "by default it returns an empty object");
|
2014-07-30 18:56:01 -04:00
|
|
|
});
|