Sha256: 0c9da1c213137bed44fd76d2f217fa5eda2fff34ab089ce9fcc2d695081f5cff
Contents?: true
Size: 494 Bytes
Versions: 79
Compression:
Stored size: 494 Bytes
Contents
require File.expand_path(File.dirname(__FILE__) + '/../../test_helper') require 'active_support' class Facebooker::UserTest < Test::Unit::TestCase def test_pid_should_be_treated_as_a_string @photo = Facebooker::Photo.new(:pid=>"100000025509592_6801") assert_equal("100000025509592_6801",@photo.pid) end def test_setting_id_should_also_use_new_method @photo = Facebooker::Photo.new(:id=>"100000025509592_6801") assert_equal("100000025509592_6801",@photo.id) end end
Version data entries
79 entries across 79 versions & 20 rubygems