Sha256: 6ef14c19dfb5411257ccb0a047a7014911d0c6c518193db4cc3ceead58cea1bf

Contents?: true

Size: 832 Bytes

Versions: 3

Compression:

Stored size: 832 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 == 31 }
    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

3 entries across 3 versions & 2 rubygems

Version Path
faye-0.8.11 spec/ruby/faye_spec.rb
face-faye-0.8.9 spec/ruby/faye_spec.rb
faye-0.8.9 spec/ruby/faye_spec.rb