mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
Update to ruby/spec@e57f49c
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@66929 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
a53ee2136f
commit
42921458ff
11 changed files with 127 additions and 15 deletions
|
@ -38,14 +38,14 @@ describe "The alias keyword" do
|
|||
@obj.a.should == 5
|
||||
end
|
||||
|
||||
it "works with a doubule quoted symbol on the left-hand side" do
|
||||
it "works with a double quoted symbol on the left-hand side" do
|
||||
@meta.class_eval do
|
||||
alias :"a" value
|
||||
end
|
||||
@obj.a.should == 5
|
||||
end
|
||||
|
||||
it "works with an interoplated symbol on the left-hand side" do
|
||||
it "works with an interpolated symbol on the left-hand side" do
|
||||
@meta.class_eval do
|
||||
alias :"#{'a'}" value
|
||||
end
|
||||
|
@ -66,14 +66,14 @@ describe "The alias keyword" do
|
|||
@obj.a.should == 5
|
||||
end
|
||||
|
||||
it "works with a doubule quoted symbol on the right-hand side" do
|
||||
it "works with a double quoted symbol on the right-hand side" do
|
||||
@meta.class_eval do
|
||||
alias a :"value"
|
||||
end
|
||||
@obj.a.should == 5
|
||||
end
|
||||
|
||||
it "works with an interoplated symbol on the right-hand side" do
|
||||
it "works with an interpolated symbol on the right-hand side" do
|
||||
@meta.class_eval do
|
||||
alias a :"#{'value'}"
|
||||
end
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue