Skip to content

Instantly share code, notes, and snippets.

View abhinavmathur's full-sized avatar

Abhinav Mathur abhinavmathur

View GitHub Profile

Keybase proof

I hereby claim:

  • I am abhinavmathur on github.
  • I am amathur5000 (https://keybase.io/amathur5000) on keybase.
  • I have a public key ASAhM12uzklbwIVRdX7fOVP8_zkC2l1Ic1hgXDNaWJG_hAo

To claim this, I am signing this object:

@abhinavmathur
abhinavmathur / rspec_model_testing_template.rb
Created June 25, 2018 02:05 — forked from SabretWoW/rspec_model_testing_template.rb
Rails Rspec model testing skeleton & cheat sheet using rspec-rails, shoulda-matchers, shoulda-callbacks, and factory_girl_rails. Pretty much a brain dump of examples of what you can (should?) test in a model. Pick & choose what you like, and please let me know if there are any errors or new/changed features out there. Reddit comment thread: http…
# This is a skeleton for testing models including examples of validations, callbacks,
# scopes, instance & class methods, associations, and more.
# Pick and choose what you want, as all models don't NEED to be tested at this depth.
#
# I'm always eager to hear new tips & suggestions as I'm still new to testing,
# so if you have any, please share!
#
# @kyletcarlson
#
# This skeleton also assumes you're using the following gems: