Sha256: 36e343bd476988006e759e8f0d76a04a1fbb0be2091c4129553223c4ec2a95d0

Contents?: true

Size: 850 Bytes

Versions: 2

Compression:

Stored size: 850 Bytes

Contents

require "spec_helper"

describe Faye do
  describe :random do
    it "returns a 128-bit random number in base 36" do
      Faye.random.should =~ /^[a-z0-9]+$/
    end
    
    it "always produces the same length of string" do
      ids = (1..100).map { Faye.random }
      ids.should be_all { |id| id.size == 25 }
    end
  end
  
  describe :copy_obect do
    let(:object) { {"foo" => "bar", "qux" => 42, "hey" => nil, "obj" => {"bar" => 67}} }
    
    it "returns an equal object" do
      Faye.copy_object(object).should == {"foo" => "bar", "qux" => 42, "hey" => nil, "obj" => {"bar" => 67}}
    end
    
    it "does not return the same object" do
      Faye.copy_object(object).should_not be_equal(object)
    end
    
    it "performs a deep clone" do
      Faye.copy_object(object)["obj"].should_not be_equal(object["obj"])
    end
  end
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
faye-0.8.3 spec/ruby/faye_spec.rb
faye-0.8.2 spec/ruby/faye_spec.rb