14 lines
		
	
	
	
		
			346 B
		
	
	
	
		
			Ruby
		
	
	
	
	
	
			
		
		
	
	
			14 lines
		
	
	
	
		
			346 B
		
	
	
	
		
			Ruby
		
	
	
	
	
	
| # frozen_string_literal: true
 | |
| 
 | |
| require 'rails_helper'
 | |
| 
 | |
| describe ActivityPub::VoteSerializer do
 | |
|   let(:serialization) { serialized_record_json(record, described_class) }
 | |
|   let(:record) { Fabricate(:poll_vote) }
 | |
| 
 | |
|   describe 'type' do
 | |
|     it 'returns correct serialized type' do
 | |
|       expect(serialization['type']).to eq('Create')
 | |
|     end
 | |
|   end
 | |
| end
 |