Sha256: 3ff9bf628461c0f7c0afe271471db2a0bfa7e828dec92b93ef1077c764ea1220
Contents?: true
Size: 547 Bytes
Versions: 14
Compression:
Stored size: 547 Bytes
Contents
# frozen_string_literal: true require 'spec_helper' describe Evostream::Commands::CreateDASH do let(:command) { described_class } context 'when manifest_name' do let(:arg_value) { Faker::Games::Pokemon.name } let(:argument) { 'manifest_name' } include_examples 'command raise' end context 'with mandatory argument(s)' do let(:cmd) do { local_stream_names: Faker::Games::Pokemon.name, target_folder: Faker::File.file_name(dir: '/path/to') } end include_examples 'command' end end
Version data entries
14 entries across 14 versions & 1 rubygems