Skip to content
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

add test for "Better Method#inspect" introduced in Ruby 2.7 #793

Merged
merged 2 commits into from
Oct 8, 2020
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions core/method/shared/to_s.rb
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,13 @@
@string.should =~ /\#bar/
end

ruby_version_is "2.7" do
it "returns a String containing method arguments" do
m = MethodSpecs::Methods.new.method :two_req
m.send(@method).should =~ /\#two_req\(a, b\)/
Copy link
Member

@eregon eregon Oct 7, 2020

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Could you use m.send(@method).should.include?("two_req(a, b)")?
That way, there is no need to escape any character.

end
end

it "returns a String containing the Module the method is defined in" do
@string.should =~ /MethodSpecs::MyMod/
end
Expand Down