Discover How To Test Ajax Forms Using Capybara, Cucumber Rails, & Selenium

Manual UI testing plays a crucial part in test life cycle. However doing the same UI testing on every other day will became tedious. By using cucumber with capybara we can transform these mundane tasks into some interesting learning. We can easily automate manual UI testing by using capybara with cucumber. While automating, ajax forms … Continue reading Discover How To Test Ajax Forms Using Capybara, Cucumber Rails, & Selenium

Learn How Factory Girl Works With Non-active Record Classes

In earlier post we have seen how to test active record associations with factory girl. Now we will learn how factory girl works with non-active record classes. When we want to test external API responses, this will be useful.  By using this we can build no of responses at a time and test, how system … Continue reading Learn How Factory Girl Works With Non-active Record Classes

Integrity Continuous Integration

Integrity is a Continuous Integration Tool where we can run our tests (Rspec or Cucumber) to check whether the application is running fine or not.  Whenever there is a commit it will run the test cases and checks whether the specs are passed or failed. Installation For basic instructions on setting up the Integrity go … Continue reading Integrity Continuous Integration