Sha256: 10027df86bb198a7d445b90b7a5e7952ac3bb1e25aeaae2f9c5d7f9f7bf6b646

Contents?: true

Size: 473 Bytes

Versions: 6

Compression:

Stored size: 473 Bytes

Contents

require './spec/spec_helper'

describe FlexmlsApi::Authentication::BaseAuth  do
  subject {FlexmlsApi::Authentication::BaseAuth.new(nil) }
  it "should raise an error" do
    expect {subject.authenticate()}.to raise_error(){ |e| e.message.should == "Implement me!"}
    expect {subject.logout()}.to raise_error(){ |e| e.message.should == "Implement me!"}
    expect {subject.request(nil, nil, nil, nil)}.to raise_error(){ |e| e.message.should == "Implement me!"}
  end
end

Version data entries

6 entries across 6 versions & 2 rubygems

Version Path
spark_api-1.0.2 spec/unit/spark_api/authentication/base_auth_spec.rb~
spark_api-1.0.1 spec/unit/spark_api/authentication/base_auth_spec.rb~
spark_api-1.0.0 spec/unit/spark_api/authentication/base_auth_spec.rb~
flexmls_api-0.7.3 spec/unit/flexmls_api/authentication/base_auth_spec.rb
flexmls_api-0.7.5 spec/unit/flexmls_api/authentication/base_auth_spec.rb
flexmls_api-0.7.0 spec/unit/flexmls_api/authentication/base_auth_spec.rb