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