Sha256: 5788e841c44ed8294c10d667a9dfaa4b61d75ac4b03fa4bf165c8c6d12b92eff

Contents?: true

Size: 450 Bytes

Versions: 2

Compression:

Stored size: 450 Bytes

Contents

# frozen_string_literal: true

When /^the client appends (.*)$/ do |args|
  capture_error do
    step "the client successfully appends #{args}"
  end
end

When /^the client successfully appends text "(.*?)" onto "(.*?)"$/ do
|local_path, remote_path|
  client.append_text local_path, remote_path
end

When /^the client successfully appends binary "(.*?)" onto "(.*?)"$/ do
|local_path, remote_path|
  client.append_binary local_path, remote_path
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
ftpd-2.0.1 features/step_definitions/append.rb
ftpd-2.0.0 features/step_definitions/append.rb