Sha256: e2ad638fce10c5944f231e8ea47f8fda27fb832c56d205ad727911bc5b44757f

Contents?: true

Size: 411 Bytes

Versions: 5

Compression:

Stored size: 411 Bytes

Contents

# encoding: utf-8
require 'spec_helper'

describe SocialProfile::People::Vkontakte do
  it "should be a Module" do
    SocialProfile::People.should be_a(Module)
  end

  context "facebook" do
    before(:each) do
      @user = SocialProfile::Person.get(:vkontakte, "123456789", "abc")
    end

    it "should be a facebook profile" do
      @user.should be_a(SocialProfile::People::Vkontakte)
    end
  end
end

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
social_profile-0.1.4 spec/people/vkontakte_spec.rb
social_profile-0.1.3 spec/people/vkontakte_spec.rb
social_profile-0.1.2 spec/people/vkontakte_spec.rb
social_profile-0.1.1 spec/people/vkontakte_spec.rb
social_profile-0.1.0 spec/people/vkontakte_spec.rb