aboutsummaryrefslogtreecommitdiffstats
path: root/spec/ruby/core/module/class_variable_defined_spec.rb
diff options
context:
space:
mode:
Diffstat (limited to 'spec/ruby/core/module/class_variable_defined_spec.rb')
-rw-r--r--spec/ruby/core/module/class_variable_defined_spec.rb8
1 files changed, 4 insertions, 4 deletions
diff --git a/spec/ruby/core/module/class_variable_defined_spec.rb b/spec/ruby/core/module/class_variable_defined_spec.rb
index 25fd73a136..f867d383c3 100644
--- a/spec/ruby/core/module/class_variable_defined_spec.rb
+++ b/spec/ruby/core/module/class_variable_defined_spec.rb
@@ -42,11 +42,11 @@ describe "Module#class_variable_defined?" do
it "raises a NameError when the given name is not allowed" do
c = Class.new
- lambda {
+ -> {
c.class_variable_defined?(:invalid_name)
}.should raise_error(NameError)
- lambda {
+ -> {
c.class_variable_defined?("@invalid_name")
}.should raise_error(NameError)
end
@@ -60,12 +60,12 @@ describe "Module#class_variable_defined?" do
it "raises a TypeError when the given names can't be converted to strings using to_str" do
c = Class.new { class_variable_set :@@class_var, "test" }
o = mock('123')
- lambda {
+ -> {
c.class_variable_defined?(o)
}.should raise_error(TypeError)
o.should_receive(:to_str).and_return(123)
- lambda {
+ -> {
c.class_variable_defined?(o)
}.should raise_error(TypeError)
end