How can I test a method's parameter?
def create_person child
end
Above code is my method. It takes a parameter named "child". I try to test this parameter. So, if method doesn't take parameter, test will give me error. I use minitest and Ruby on Rails.