-1
私は以下の懸念を作成しました。私は何をやっているのですか?私は値0、1、2を持ち、JSONのそれらの文字列を返すテーブルからカラムをマッピングしています。誰かが私にどのようにユニットテストケースを書くことができますか?あなたがこれを行うことができます任意のモジュールについては問題の仕様書を書く方法
module User
extend ActiveSupport::Concern
included do
def user_mapping(user_in_number)
user_hash = {
'0'=> 'Support',
'1'=> 'Developer',
'2'=> 'Business Analyst'
}.freeze
user_hash[user_in_number]
end
end
end
おかげ