The chat is already removed for 0.8, so there is no need to still export this data since it can't be imported anyway. Related to #8069 closes #8265
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
|