Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
モデルでいくつかのメソッドをテストしようとしています。例えば、
私のモデルで
def name self.first_name + " " + self.last_name end
テストしたいのですが、できません。model_spec.rb ファイルでこのメソッドをテストするにはどうすればよいですか?
もしかして、こういうこと?
describe YourModel do subject { YourModel.new(first_name: "Some", last_name: "Guy) } its(:first_name) { should eql "Some" } its(:last_name) { should eql "Guy" } its(:name) { should eql "Some Guy" } end
と正規表現を使用することもでき=~ますが、少しうるさいと思います。
=~