Unit Test

suggest change

Unit tests test parts of the application in isolation. usually a unit under test is a class or module.

let(:gift) { create :gift }

describe '#find' do
  subject { described_class.find(user, Time.zone.now.to_date) }
  it { is_expected.to eq gift }
end

source

This kind if test is as direct and specific as possible.

Feedback about page:

Feedback:
Optional: your email if you want me to get back to you:


Testing Rails Applications:
*Unit Test

Table Of Contents
50Testing Rails Applications
55CSV