No results found in makandra dev.
Best results in other decks
Apply Test Driven Development(TDD) to the process of building container images by defining test before writing code and automate the testing process. Iterate through the TDD cycle while developing...
...and running the tests later in continuous integration to ensure robust and reliable container images. Installation We create a Gemfile for installing all required gems. Gemfile # Gemfile gem 'docker-api...
Learn to create test data effectively using factories. Decouple tests by having each test start with an empty database and create only the records needed for the test.
...Factories, not fixtures By default Rails uses global fixtures for its tests. This is a giant world of example data that grows with every test. In our experience the use...