Sha256: 8b5f0f76a6c7c0263d36f609d1946c3bb3c19eebb806419cf1be19c36c680cf6

Contents?: true

Size: 573 Bytes

Versions: 4

Compression:

Stored size: 573 Bytes

Contents

# Copyright (C) 2013 Dmitry Yakimenko (detunized@gmail.com).
# Licensed under the terms of the MIT license. See LICENCE for details.

require "spec_helper"

describe LastPass::Session do
    let(:id) { "53ru,Hb713QnEVM5zWZ16jMvxS0" }
    let(:key_iteration_count) { 5000 }
    let(:encrypted_private_key) { "DEADBEEF" }

    subject { LastPass::Session.new id, key_iteration_count, encrypted_private_key }

    its(:id) { should eq id }
    its(:key_iteration_count) { should eq key_iteration_count }
    its(:encrypted_private_key) { should eq encrypted_private_key }
end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
lastpass-1.7.1 spec/session_spec.rb
lastpass-1.7.0 spec/session_spec.rb
lastpass-1.6.1 spec/session_spec.rb
lastpass-1.6.0 spec/session_spec.rb