As per discussion on https://discourse.diasporafoundation.org/t/removing-diaspora-s-current-chat-integration/2718, nobody raised serious concerns or objections. Given future plans, we do not think having an unfinished implementation of something that likely will not get finished in the current form is worth it. So let's get rid of it.
12 lines
289 B
Ruby
12 lines
289 B
Ruby
# frozen_string_literal: true
|
|
|
|
describe Export::AspectSerializer do
|
|
let(:aspect) { FactoryGirl.create(:aspect) }
|
|
let(:serializer) { Export::AspectSerializer.new(aspect) }
|
|
|
|
it "has aspect attributes" do
|
|
expect(serializer.attributes).to eq(
|
|
name: aspect.name
|
|
)
|
|
end
|
|
end
|