Sha256: 3ec8d155da94469eb2e91ecbedb2a7578246eb493e61f6ec24ce573d773911f0
Contents?: true
Size: 451 Bytes
Versions: 14
Compression:
Stored size: 451 Bytes
Contents
# frozen_string_literal: true require 'spec_helper' describe Evostream::Commands::GetStreamInfo do let(:command) { described_class } context 'when id' do let(:cmd) { { id: Faker::Number.between(from: 1, to: 999).to_s } } 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 end
Version data entries
14 entries across 14 versions & 1 rubygems