Sha256: b363da7c38dee3c97732d049c9af2c85bb4bbe8a8360445c57a6182d0cfb2d30
Contents?: true
Size: 467 Bytes
Versions: 8
Compression:
Stored size: 467 Bytes
Contents
# frozen_string_literal: true require 'spec_helper' describe Evostream::Commands::GetStreamInfo do let(:command) { Evostream::Commands::GetStreamInfo.new(cmd) } context 'id' do let(:arg_value) { Faker::Number.between(1, 999) } let(:argument) { 'id' } include_examples 'command' end context 'local_stream_name' do let(:arg_value) { Faker::Pokemon.name } let(:argument) { 'local_stream_name' } include_examples 'command' end end
Version data entries
8 entries across 8 versions & 1 rubygems