summaryrefslogtreecommitdiff
path: root/spec/ruby/core/string/percent_spec.rb
diff options
context:
space:
mode:
Diffstat (limited to 'spec/ruby/core/string/percent_spec.rb')
-rw-r--r--spec/ruby/core/string/percent_spec.rb14
1 files changed, 14 insertions, 0 deletions
diff --git a/spec/ruby/core/string/percent_spec.rb b/spec/ruby/core/string/percent_spec.rb
new file mode 100644
index 0000000000..5eeb98c217
--- /dev/null
+++ b/spec/ruby/core/string/percent_spec.rb
@@ -0,0 +1,14 @@
+require File.expand_path('../../../spec_helper', __FILE__)
+require File.expand_path('../../kernel/shared/sprintf', __FILE__)
+require File.expand_path('../../kernel/shared/sprintf_encoding', __FILE__)
+
+describe "String#%" do
+ it_behaves_like :kernel_sprintf, -> (format, *args) {
+ format % args
+ }
+
+ it_behaves_like :kernel_sprintf_encoding, -> (format, *args) {
+ format % args
+ }
+end
+