1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24
|
require File.expand_path('../../../spec_helper', __FILE__)
require File.expand_path('../fixtures/classes', __FILE__)
require File.expand_path('../shared/sprintf', __FILE__)
require File.expand_path('../shared/sprintf_encoding', __FILE__)
describe "Kernel#sprintf" do
it_behaves_like :kernel_sprintf, -> (format, *args) {
sprintf(format, *args)
}
it_behaves_like :kernel_sprintf_encoding, -> (format, *args) {
sprintf(format, *args)
}
end
describe "Kernel.sprintf" do
it_behaves_like :kernel_sprintf, -> (format, *args) {
Kernel.sprintf(format, *args)
}
it_behaves_like :kernel_sprintf_encoding, -> (format, *args) {
Kernel.sprintf(format, *args)
}
end
|