debian-mirror-gitlab/spec/serializers/event_entity_spec.rb
2017-08-17 22:00:37 +05:30

13 lines
279 B
Ruby

require 'spec_helper'
describe EventEntity do
subject { described_class.represent(create(:event)).as_json }
it 'exposes author' do
expect(subject).to include(:author)
end
it 'exposes core elements of event' do
expect(subject).to include(:updated_at)
end
end