Sha256: a68e08ce41ee6029b575a7b25ba89d54bcdd07b3ccee422e7b4ee87c3e85d343
Contents?: true
Size: 467 Bytes
Versions: 98
Compression:
Stored size: 467 Bytes
Contents
require 'spec_helper' describe FbGraph::Image, '.new' do let :attributes do { :source => 'https://fbcdn-sphotos-a.akamaihd.net/hphotos-ak-ash1/168119_10150146071831729_20531316728_7844072_5116892_n.jpg', :height => 483, :width => 720 } end subject { FbGraph::Image.new(attributes) } its(:source) { should == attributes[:source] } its(:height) { should == attributes[:height] } its(:width) { should == attributes[:width] } end
Version data entries
98 entries across 98 versions & 1 rubygems