Sha256: b5407e3d7db546a78dacb824ac2122e587dfe04baca0f7851f12256e6f86bbd1

Contents?: true

Size: 539 Bytes

Versions: 9

Compression:

Stored size: 539 Bytes

Contents

# frozen_string_literal: true

require 'spec_helper'

describe Evostream::Commands::CreateDASH do
  let(:command) { Evostream::Commands::CreateDASH }

  context 'manifest_name' do
    let(:arg_value) { Faker::Pokemon.name }
    let(:argument) { 'manifest_name' }

    include_examples 'command raise'
  end

  context 'with mandatory argument(s)' do
    let(:cmd) do
      {
        local_stream_names: Faker::Pokemon.name,
        target_folder: Faker::File.file_name('/path/to')
      }
    end

    include_examples 'command'
  end
end

Version data entries

9 entries across 9 versions & 1 rubygems

Version Path
evostream-event-1.0.3.pre.83 spec/evostream/commands/create_dash_spec.rb
evostream-event-1.0.2 spec/evostream/commands/create_dash_spec.rb
evostream-event-1.0.2.pre.75 spec/evostream/commands/create_dash_spec.rb
evostream-event-1.0.2.pre.74 spec/evostream/commands/create_dash_spec.rb
evostream-event-1.0.1 spec/evostream/commands/create_dash_spec.rb
evostream-event-1.0.1.pre.72 spec/evostream/commands/create_dash_spec.rb
evostream-event-1.0.0 spec/evostream/commands/create_dash_spec.rb
evostream-event-1.0.0.pre.69 spec/evostream/commands/create_dash_spec.rb
evostream-event-1.0.0.pre.65 spec/evostream/commands/create_dash_spec.rb