You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
asciinema.org/spec/models/stdout_spec.rb

27 lines
865 B
Ruby

# encoding: utf-8
require 'spec_helper'
describe Stdout do
let(:stdout) { Stdout.new(data_file, timing_file) }
let(:data_file) { double('data_file', :decompressed_path => 'spec/fixtures/stdout.decompressed') }
let(:timing_file) { double('timing_file', :decompressed_path => 'spec/fixtures/stdout.time.decompressed') }
describe '#each' do
it 'yields for each frame with delay and data' do
expect { |b| stdout.each(&b) }.
to yield_successive_args([0.5, 'foobar'],
[1.0, "bazqux\xC5"],
[2.0, "\xBCółć"])
end
end
describe '#each_until' do
it 'yields for each frame with delay and data until given time (in seconds)' do
expect { |b| stdout.each_until(1.7, &b) }.
to yield_successive_args([0.5, 'foobar'], [1.0, "bazqux\xC5"])
end
end
end