2014-12-15 14:41:08 -05:00
|
|
|
import Session from "discourse/models/session";
|
|
|
|
|
2015-08-07 15:08:27 -04:00
|
|
|
module("model:session");
|
2013-07-26 14:59:28 -04:00
|
|
|
|
2013-07-26 15:18:46 -04:00
|
|
|
test('highestSeenByTopic', function() {
|
2015-08-07 15:08:27 -04:00
|
|
|
const 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
|
|
|
});
|