Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: rubinius/rubinius
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: b2a82222847d
Choose a base ref
...
head repository: rubinius/rubinius
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: ca5e847e66d3
Choose a head ref
  • 2 commits
  • 1 file changed
  • 2 contributors

Commits on Jul 15, 2015

  1. Copy the full SHA
    bf9cd61 View commit details
  2. Merge pull request #3460 from rideliner/2.2-frozen-spec

    Fix true/false frozen specs to operate on the proper values
    jemc committed Jul 15, 2015
    Copy the full SHA
    ca5e847 View commit details
Showing with 2 additions and 2 deletions.
  1. +2 −2 spec/ruby/core/kernel/frozen_spec.rb
4 changes: 2 additions & 2 deletions spec/ruby/core/kernel/frozen_spec.rb
Original file line number Diff line number Diff line change
@@ -50,13 +50,13 @@

describe "on true" do
it "returns true" do
nil.frozen?.should be_true
true.frozen?.should be_true
end
end

describe "on false" do
it "returns true" do
nil.frozen?.should be_true
false.frozen?.should be_true
end
end
end