-
Notifications
You must be signed in to change notification settings - Fork 5.5k
Magic comment "immutable: string" makes "literal".freeze the default for that file #487
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Closed
+97
−1
Closed
Changes from all commits
Commits
Show all changes
4 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,72 @@ | ||
# -*- immutable: string -*- | ||
|
||
require 'test/unit' | ||
require_relative 'test_string_literal_mutable.rb' | ||
|
||
|
||
STRINGS = [ | ||
'hello', | ||
"hello", | ||
%{Hello}, | ||
%Q{Hello}, | ||
%q{Hello}, | ||
<<-EOS | ||
Hello World | ||
EOS | ||
] | ||
|
||
class TestStringLiteral < Test::Unit::TestCase | ||
def mutate(str) | ||
str.slice!(1, 2) | ||
end | ||
|
||
def interpolated_string(message) | ||
"Interpolated: #{message}" | ||
end | ||
|
||
def some_string | ||
"A nice frozen string!" | ||
end | ||
|
||
def test_strings_are_immutable_in_this_file | ||
STRINGS.each do |s| | ||
exception = assert_raise RuntimeError, s do | ||
mutate(s) | ||
end | ||
assert_match /can't modify frozen String/, exception.message | ||
end | ||
end | ||
|
||
def test_strings_in_other_file_are_mutable | ||
mutate(TestStringLiteralMutable::CONSTANT) | ||
assert_equal "SING", TestStringLiteralMutable::CONSTANT | ||
end | ||
|
||
def test_literal_strings_should_have_the_same_object_id | ||
s1 = some_string | ||
s2 = some_string | ||
assert_equal s1.object_id, s2.object_id | ||
end | ||
|
||
def test_different_literal_strings_with_the_same_value_in_the_same_file_should_have_the_same_object_id | ||
s1 = some_string | ||
s2 = "A nice frozen string!" | ||
assert_equal s2.object_id, s2.object_id | ||
end | ||
|
||
def test_string_interpolation | ||
str = interpolated_string("blah blah") | ||
exception = assert_raise RuntimeError do | ||
mutate(str) | ||
end | ||
assert_match /can't modify frozen String/, exception.message | ||
end | ||
|
||
def test_interpolated_strings_should_have_a_different_object_id | ||
s1 = interpolated_string('x') | ||
s2 = interpolated_string('x') | ||
assert_equal "Interpolated: x", s1 | ||
assert_equal "Interpolated: x", s2 | ||
assert_not_equal s1.object_id, s2.object_id | ||
end | ||
end |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
module TestStringLiteralMutable | ||
CONSTANT = "STRING" | ||
end |
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
ditto