Sha256: e85dc0bd59434be5af77e4887768e1c3dd54b3308b446c984af466df35a6c032

Contents?: true

Size: 420 Bytes

Versions: 11

Compression:

Stored size: 420 Bytes

Contents

require_relative '../spec_helper'

describe Bitstampede do
  it "ought to be an instance rather than a retarded singleton like every freaking btc-related gem in existence apparently" do
    client = Bitstampede::Client.new
    expect(client.key).to eq(nil)
    expect(client.secret).to eq(nil)
    client.key = '1'
    client.secret = '2'
    expect(client.key).to eq('1')
    expect(client.secret).to eq('2')
  end
end

Version data entries

11 entries across 11 versions & 1 rubygems

Version Path
bitstampede-0.1.9 spec/unit/bitstampede_spec.rb
bitstampede-0.1.8 spec/unit/bitstampede_spec.rb
bitstampede-0.1.7 spec/unit/bitstampede_spec.rb
bitstampede-0.1.6 spec/unit/bitstampede_spec.rb
bitstampede-0.1.5 spec/unit/bitstampede_spec.rb
bitstampede-0.1.4 spec/unit/bitstampede_spec.rb
bitstampede-0.1.3 spec/unit/bitstampede_spec.rb
bitstampede-0.1.2 spec/unit/bitstampede_spec.rb
bitstampede-0.1.1 spec/unit/bitstampede_spec.rb
bitstampede-0.1.0 spec/unit/bitstampede_spec.rb
bitstampede-0.0.1 spec/unit/bitstampede_spec.rb