asciinema.org/spec/services/asciicast_processor_spec.rb
2013-09-10 21:29:17 +02:00

33 lines
827 B
Ruby

require 'spec_helper'
describe AsciicastProcessor do
let(:processor) { described_class.new }
describe '#process' do
let(:asciicast) { double('asciicast') }
let(:snapshot_updater) { double('snapshot_updater', :update => nil) }
let(:frames_file_updater) { double('frames_file_updater', :update => nil) }
subject { processor.process(asciicast) }
before do
allow(AsciicastSnapshotUpdater).to receive(:new) { snapshot_updater }
allow(AsciicastFramesFileUpdater).to receive(:new) { frames_file_updater }
end
it 'generates a snapshot' do
subject
expect(snapshot_updater).to have_received(:update).with(asciicast)
end
it 'generates animation frames' do
subject
expect(frames_file_updater).to have_received(:update).with(asciicast)
end
end
end