mirror of
https://github.com/edgecase/ruby_koans.git
synced 2026-04-15 07:23:19 -04:00
Added src directory
This commit is contained in:
157
src/about_methods.rb
Normal file
157
src/about_methods.rb
Normal file
@@ -0,0 +1,157 @@
|
||||
require 'edgecase'
|
||||
|
||||
def my_global_method(a,b)
|
||||
a + b
|
||||
end
|
||||
|
||||
class AboutMethods < EdgeCase::Koan
|
||||
|
||||
def test_calling_global_methods
|
||||
assert_equal __(5), my_global_method(2,3)
|
||||
end
|
||||
|
||||
def test_calling_global_methods_without_parenthesis
|
||||
result = my_global_method 2, 3
|
||||
assert_equal __(5), result
|
||||
end
|
||||
|
||||
# (NOTE: We are Using eval below because the example code is
|
||||
# considered to be syntactically invalid).
|
||||
def test_sometimes_missing_parenthesis_are_ambiguous
|
||||
#--
|
||||
eval "assert_equal 5, my_global_method(2, 3)" # REMOVE CHECK
|
||||
if false
|
||||
#++
|
||||
eval "assert_equal 5, my_global_method 2, 3" # ENABLE CHECK
|
||||
#--
|
||||
end
|
||||
#++
|
||||
#
|
||||
# Ruby doesn't know if you mean:
|
||||
#
|
||||
# assert_equal(5, my_global_method(2), 3)
|
||||
# or
|
||||
# assert_equal(5, my_global_method(2, 3))
|
||||
#
|
||||
# Rewrite the eval string to continue.
|
||||
#
|
||||
end
|
||||
|
||||
# NOTE: wrong number of argument is not a SYNTAX error, but a
|
||||
# runtime error.
|
||||
def test_calling_global_methods_with_wrong_number_of_arguments
|
||||
exception = assert_raise(___(ArgumentError)) do
|
||||
my_global_method
|
||||
end
|
||||
assert_match(/#{__("wrong number of arguments")}/, exception.message)
|
||||
|
||||
exception = assert_raise(___(ArgumentError)) do
|
||||
my_global_method(1,2,3)
|
||||
end
|
||||
assert_match(/#{__("wrong number of arguments")}/, exception.message)
|
||||
end
|
||||
|
||||
# ------------------------------------------------------------------
|
||||
|
||||
def method_with_defaults(a, b=:default_value)
|
||||
[a, b]
|
||||
end
|
||||
|
||||
def test_calling_with_default_values
|
||||
assert_equal [1, __(:default_value)], method_with_defaults(1)
|
||||
assert_equal [1, __(2)], method_with_defaults(1, 2)
|
||||
end
|
||||
|
||||
# ------------------------------------------------------------------
|
||||
|
||||
def method_with_var_args(*args)
|
||||
args
|
||||
end
|
||||
|
||||
def test_calling_with_variable_arguments
|
||||
assert_equal __([]), method_with_var_args
|
||||
assert_equal __([:one]), method_with_var_args(:one)
|
||||
assert_equal __([:one, :two]), method_with_var_args(:one, :two)
|
||||
end
|
||||
|
||||
# ------------------------------------------------------------------
|
||||
|
||||
def method_with_explicit_return
|
||||
:a_non_return_value
|
||||
return :return_value
|
||||
:anoher_non_return_value
|
||||
end
|
||||
|
||||
def test_method_with_explicit_return
|
||||
assert_equal __(:return_value), method_with_explicit_return
|
||||
end
|
||||
|
||||
# ------------------------------------------------------------------
|
||||
|
||||
def method_without_explicit_return
|
||||
:a_non_return_value
|
||||
:return_value
|
||||
end
|
||||
|
||||
def test_method_without_explicit_return
|
||||
assert_equal __(:return_value), method_without_explicit_return
|
||||
end
|
||||
|
||||
# ------------------------------------------------------------------
|
||||
|
||||
def my_same_class_method(a, b)
|
||||
a * b
|
||||
end
|
||||
|
||||
def test_calling_methods_in_same_class
|
||||
assert_equal __(12), my_same_class_method(3,4)
|
||||
end
|
||||
|
||||
def test_calling_methods_in_same_class_with_explicit_receiver
|
||||
assert_equal __(12), self.my_same_class_method(3,4)
|
||||
end
|
||||
|
||||
# ------------------------------------------------------------------
|
||||
|
||||
def my_private_method
|
||||
"a secret"
|
||||
end
|
||||
private :my_private_method
|
||||
|
||||
def test_calling_private_methods_without_receiver
|
||||
assert_equal __("a secret"), my_private_method
|
||||
end
|
||||
|
||||
def test_calling_private_methods_with_an_explicit_receiver
|
||||
exception = assert_raise(___(NoMethodError)) do
|
||||
self.my_private_method
|
||||
end
|
||||
assert_match /#{__("private method `my_private_method' called ")}/, exception.message
|
||||
end
|
||||
|
||||
# ------------------------------------------------------------------
|
||||
|
||||
class Dog
|
||||
def name
|
||||
"Fido"
|
||||
end
|
||||
|
||||
private
|
||||
|
||||
def tail
|
||||
"tail"
|
||||
end
|
||||
end
|
||||
|
||||
def test_calling_methods_in_other_objects_require_explicit_receiver
|
||||
rover = Dog.new
|
||||
assert_equal __("Fido"), rover.name
|
||||
end
|
||||
|
||||
def test_calling_private_methods_in_other_objects
|
||||
rover = Dog.new
|
||||
assert_raise(___(NoMethodError)) do
|
||||
rover.tail
|
||||
end
|
||||
end
|
||||
end
|
||||
Reference in New Issue
Block a user