Minitest, as the name suggest, does not include a lot of features automatically provided in rspec. Here is a list of gems that you can use to enhance minitest-rails.
Month: January 2014
Protip – Capybara-RSpec integration with Continuous Integration.
If you are dealing with UI test case automation wherein you see your test cases running in the launched browser window - example being using 'Capybara' with 'Selenium web-driver' or for that matter any web-driver , then this post can prove to be useful to you . Each time you run such test case suite, … Continue reading Protip – Capybara-RSpec integration with Continuous Integration.
Access Control in Ruby – understanding public, protected and private
We all know that ruby is different from all the other object oriented programming languages. But in what context? One of the differences lies in how ruby handles the protected and public methods and how other languages like c++ handle them.
