Sha256: 3d797248c06b217d4f35fb8c9bb863681c08b96a2bb970f4f112c9789e3741d9
Contents?: true
Size: 576 Bytes
Versions: 30
Compression:
Stored size: 576 Bytes
Contents
require File.expand_path(File.join(File.dirname(__FILE__), "/../../../../spec_helper.rb")) describe Mongoid::Extensions::Integer::Conversions do describe "#set" do context "when string is a number" do it "converts the string to an Integer" do Integer.set("32").should == 32 end end context "when string is not a number" do it "returns the string" do Integer.set("foo").should == "foo" end end end describe "#get" do it "returns the integer" do Integer.get(44).should == 44 end end end
Version data entries
30 entries across 30 versions & 1 rubygems