Sha256: bc00d2a65d9efb0bd5e054e0687343e5b1f6be3258f1ba1eb518f73d2505b50e
Contents?: true
Size: 377 Bytes
Versions: 52
Compression:
Stored size: 377 Bytes
Contents
require File.expand_path('../../../spec_helper', __FILE__) require File.expand_path('../fixtures/classes', __FILE__) describe "Kernel#format" do it "is a private method" do Kernel.should have_private_instance_method(:format) end end describe "Kernel.format" do it "is accessible as a module function" do Kernel.format("%s", "hello").should == "hello" end end
Version data entries
52 entries across 52 versions & 2 rubygems