livinginthepast/fake_ftp

View on GitHub
lib/fake_ftp/server_commands/pass.rb

Summary

Maintainability
A
0 mins
Test Coverage
# frozen_string_literal: true

module FakeFtp
  module ServerCommands
    class Pass
      def run(*)
        '230 logged in'
      end
    end
  end
end