Sha256: db3b1386d8c329571c984e5a13766b0731816a25cf759f3fcfd171813f48c8b2

Contents?: true

Size: 791 Bytes

Versions: 243

Compression:

Stored size: 791 Bytes

Contents

require 'common'
require 'net/ssh/transport/identity_cipher'

module Transport

  class TestIdentityCipher < Test::Unit::TestCase

    def test_block_size_should_be_8
      assert_equal 8, cipher.block_size
    end

    def test_encrypt_should_return_self
      assert_equal cipher, cipher.encrypt
    end

    def test_decrypt_should_return_self
      assert_equal cipher, cipher.decrypt
    end

    def test_update_should_return_argument
      assert_equal "hello, world", cipher.update("hello, world")
    end

    def test_final_should_return_empty_string
      assert_equal "", cipher.final
    end

    def test_name_should_be_identity
      assert_equal "identity", cipher.name
    end

    private

      def cipher
        Net::SSH::Transport::IdentityCipher
      end

  end

end

Version data entries

243 entries across 203 versions & 28 rubygems

Version Path
net-ssh-2.9.2.rc1 test/transport/test_identity_cipher.rb
net-ssh-2.9.2.beta test/transport/test_identity_cipher.rb
auser-poolparty-1.3.10 vendor/gems/net-ssh/test/transport/test_identity_cipher.rb
auser-poolparty-1.3.11 vendor/gems/net-ssh/test/transport/test_identity_cipher.rb
auser-poolparty-1.3.12 vendor/gems/net-ssh/test/transport/test_identity_cipher.rb
auser-poolparty-1.3.13 vendor/gems/net-ssh/test/transport/test_identity_cipher.rb
auser-poolparty-1.3.14 vendor/gems/net-ssh/test/transport/test_identity_cipher.rb
auser-poolparty-1.3.15 vendor/gems/net-ssh/test/transport/test_identity_cipher.rb
auser-poolparty-1.3.16 vendor/gems/net-ssh/test/transport/test_identity_cipher.rb
auser-poolparty-1.3.17 vendor/gems/net-ssh/test/transport/test_identity_cipher.rb
auser-poolparty-1.3.5 vendor/gems/net-ssh/test/transport/test_identity_cipher.rb
auser-poolparty-1.3.6 vendor/gems/net-ssh/test/transport/test_identity_cipher.rb
auser-poolparty-1.3.7 vendor/gems/net-ssh/test/transport/test_identity_cipher.rb
auser-poolparty-1.3.8 vendor/gems/net-ssh/test/transport/test_identity_cipher.rb
ddollar-net-ssh-2.0.1 test/transport/test_identity_cipher.rb
fairchild-poolparty-1.3.17 vendor/gems/net-ssh/test/transport/test_identity_cipher.rb
fairchild-poolparty-1.3.5 vendor/gems/net-ssh/test/transport/test_identity_cipher.rb
jayniz-net-ssh-2.0.15 test/transport/test_identity_cipher.rb
kjvarga-net-ssh-2.0.12 test/transport/test_identity_cipher.rb
net-ssh-net-ssh-2.0.12 test/transport/test_identity_cipher.rb