summaryrefslogtreecommitdiff
path: root/spec/ruby/core/proc/dup_spec.rb
diff options
context:
space:
mode:
Diffstat (limited to 'spec/ruby/core/proc/dup_spec.rb')
-rw-r--r--spec/ruby/core/proc/dup_spec.rb7
1 files changed, 7 insertions, 0 deletions
diff --git a/spec/ruby/core/proc/dup_spec.rb b/spec/ruby/core/proc/dup_spec.rb
index 6da2f3080c..dd19b3c1e9 100644
--- a/spec/ruby/core/proc/dup_spec.rb
+++ b/spec/ruby/core/proc/dup_spec.rb
@@ -3,4 +3,11 @@ require_relative 'shared/dup'
describe "Proc#dup" do
it_behaves_like :proc_dup, :dup
+
+ it "resets frozen status" do
+ proc = Proc.new { }
+ proc.freeze
+ proc.frozen?.should == true
+ proc.dup.frozen?.should == false
+ end
end