Sha256: 1b1cc10d406d2d52453f2a82bffc718e5987fc6e8e1d19579e2f3cd56863d679
Contents?: true
Size: 625 Bytes
Versions: 14
Compression:
Stored size: 625 Bytes
Contents
# frozen_string_literal: true require 'spec_helper' describe Evostream::Commands::Destroy do let(:command) { Evostream::Commands::PushStream } context 'when uri' do let(:cmd) { { uri: 'rtmp://de.pscp.tv:80/x/31' } } include_examples 'command' end context 'when local_stream_name' do let(:arg_value) { Faker::Games::Pokemon.name } let(:argument) { 'local_stream_name' } include_examples 'command raise' end context 'when target_stream_name' do let(:arg_value) { Faker::Games::Pokemon.name } let(:argument) { 'target_stream_name' } include_examples 'command raise' end end
Version data entries
14 entries across 14 versions & 1 rubygems