2022-05-01から1ヶ月間の記事一覧

nilはクラスであり、メソッドの使用ができる

sum関数でエラーがでた 下記のメソッドを使いたいとします。 def calc_score [@first_shot.point, @second_shot.point, @third_shot.point].sum end インスタンスはこうやって作られます。 def initialize(first_shot, second_shot = nil, third_shot = nil)…

テストでタイムゾーンを考慮した

テストのプラクティスにて Date型への変換メソッドのテストを行いました。 テストの観点 対象のメソッドは下記です。app/models/report.rb class Report < ApplicationRecord belongs_to :user has_many :comments, as: :commentable, dependent: :destroy v…