Sha256: 9f0690ef271c49064108087d66be766a5946227b638c478bb869b42948d9eb1e
Contents?: true
Size: 613 Bytes
Versions: 31
Compression:
Stored size: 613 Bytes
Contents
# frozen_string_literal: true require 'spec_helper' describe Evostream::Commands::Destroy do let(:command) { Evostream::Commands::Destroy.new(cmd) } context 'id' do let(:arg_value) { Faker::Number.between(1, 99) } let(:argument) { 'id' } include_examples 'command' end context 'remove_hls_hds_files' do let(:arg_value) { Faker::Number.between(0, 1) } let(:argument) { 'remove_hls_hds_files' } include_examples 'command' end context 'group_name' do let(:arg_value) { Faker::Pokemon.name } let(:argument) { 'group_name' } include_examples 'command' end end
Version data entries
31 entries across 31 versions & 1 rubygems