Sha256: b7309381ce9c439ad91ffe9bb907d23f431e49024f5227940a0fbfb5ba4784bd

Contents?: true

Size: 480 Bytes

Versions: 1

Compression:

Stored size: 480 Bytes

Contents

Given /^the test server is started$/ do
  @server = TestServer.new
  @server.start
end

Given /^the test server is started with TLS$/ do
  @server = TestServer.new
  @server.tls = :explicit
  @server.start
end

Given /^the test server is started with debug$/ do
  @server = TestServer.new
  @server.debug = true
  @server.start
end

Given /^the test server is started without (\w+)$/ do |feature|
  @server = TestServer.new
  @server.send "#{feature}=", false
  @server.start
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
ftpd-0.2.0 features/ftp_server/step_definitions/test_server.rb