Sha256: 836871b394efd2131840ff3de498c57d4afd2a7cd8888b74a1ec1319589b8733

Contents?: true

Size: 720 Bytes

Versions: 6

Compression:

Stored size: 720 Bytes

Contents

require File.expand_path(File.join(File.dirname(__FILE__), '..', '..', 'spec_helper'))

describe Evri::RPX::Mappings do
  describe "identifiers" do
    it "should return the identifiers present in the response" do
      json = json_fixture('mappings/identifiers.json')
      mappings = Evri::RPX::Mappings.new(json)
      mappings.identifiers.should include("http://brian.myopenid.com/")
      mappings.identifiers.should include("http://brianellin.com/")
    end
  end

  describe "raw/json" do
    it "should return the raw JSON that was passed to the constructor" do
      json = {}
      mappings = Evri::RPX::Mappings.new(json)
      mappings.raw.should == json
      mappings.json.should == json
    end
  end
end

Version data entries

6 entries across 6 versions & 2 rubygems

Version Path
dbalatero-evri_rpx-0.1.0 spec/evri/rpx/mappings_spec.rb
dbalatero-evri_rpx-0.1.1 spec/evri/rpx/mappings_spec.rb
dbalatero-evri_rpx-1.0.0 spec/evri/rpx/mappings_spec.rb
dbalatero-evri_rpx-1.0.1 spec/evri/rpx/mappings_spec.rb
dbalatero-evri_rpx-1.0.2 spec/evri/rpx/mappings_spec.rb
evri_rpx-1.0.0 spec/evri/rpx/mappings_spec.rb