discourse/spec/serializers/topic_list_item_serializer_spec.rb
Luciano Sousa b3d769ff4f Update rspec syntax to v3
update rspec syntax to v3

change syntax to rspec v3

oops. fix typo

mailers classes with rspec3 syntax

helpers with rspec3 syntax

jobs with rspec3 syntax

serializers with rspec3 syntax

views with rspec3 syntax

support to rspec3 syntax

category spec with rspec3 syntax
2015-01-05 11:59:30 -03:00

19 lines
487 B
Ruby

require 'spec_helper'
require_dependency 'post_action'
describe TopicListItemSerializer do
it "correctly serializes topic" do
date = Time.zone.now
topic = Topic.new
topic.title = "test"
topic.created_at = date - 2.minutes
topic.bumped_at = date
topic.posters = []
serialized = TopicListItemSerializer.new(topic, scope: Guardian.new, root: false).as_json
expect(serialized[:title]).to eq("test")
expect(serialized[:bumped]).to eq(true)
end
end