aboutsummaryrefslogtreecommitdiffstats
path: root/spec/ruby/core/file/extname_spec.rb
diff options
context:
space:
mode:
Diffstat (limited to 'spec/ruby/core/file/extname_spec.rb')
-rw-r--r--spec/ruby/core/file/extname_spec.rb8
1 files changed, 3 insertions, 5 deletions
diff --git a/spec/ruby/core/file/extname_spec.rb b/spec/ruby/core/file/extname_spec.rb
index 1513b30e90..7632b6adc0 100644
--- a/spec/ruby/core/file/extname_spec.rb
+++ b/spec/ruby/core/file/extname_spec.rb
@@ -44,11 +44,9 @@ describe "File.extname" do
lambda { File.extname("foo.bar", "foo.baz") }.should raise_error(ArgumentError)
end
- with_feature :encoding do
-
- it "returns the extension for a multibyte filename" do
- File.extname('Имя.m4a').should == ".m4a"
- end
+ it "returns the extension for a multibyte filename" do
+ File.extname('Имя.m4a').should == ".m4a"
end
+
end