Sha256: 719aeae49a2e6ffdbff3b57186daf6e6c0b881fa2e602877572f2ee45aad81fa
Contents?: true
Size: 894 Bytes
Versions: 9
Compression:
Stored size: 894 Bytes
Contents
require File.expand_path('spec_helper.rb', File.dirname(__FILE__)) include CassandraCQL describe "UUID" do it "should respond_to to_guid" do UUID.new.respond_to?(:to_guid) end it "should respond_to to_time" do UUID.new.respond_to?(:to_time) end it "should instantiate from raw bytes" do UUID.new("\252}\303\374\3137\021\340\237\214\251}\315\351 ]") end it "should instantiate from a Time object" do ts = Time.new # Nanosecond precision is available on some platforms but not in UUIDv1 so they may not match, just be v.close # Note that the time returned from two UUIDs using these two timestamps will still be the same (UUID.new(ts).to_time - ts).should < 0.000001 end it "should turn have a to_time class method that takes bytes" do UUID.to_time("\252}\303\374\3137\021\340\237\214\251}\315\351 ]").should be_kind_of(Time) end end
Version data entries
9 entries across 9 versions & 1 rubygems