Explore >> Select a destination


You are here

conductofcode.io
| | www.synesthesia.co.uk
2.1 parsecs away

Travel
| | "RubyUnit":https://homepage1.nifty.com/markey/ruby/rubyunit/index_e.html Unit testing framework for Ruby
| | smsohan.com
7.2 parsecs away

Travel
| | At ScrumPad most of our controllers are bounded by filters for authentication/authorization. Some filters apply to all actions in a controller while others apply to only a few or leave out only a few. However, since we are following TDD, we need to test the filter is invoked before each of the desired action. This makes the test code MOIST (not DRY)! Example of Moist Code: The following example only captures two test methods.
| | mattiasgustavsson.com
2.8 parsecs away

Travel
| | I wanted to talk a little about my approach to unit testing, and the small framework I've written to help me write and run tests. Iam not an expert in unit testing. Idon't even give it that much priority, to be honest. Imean, sure, I recognize its usefulness in many circumstances, but I do fee
| | blog.bittersweetryan.com
85.5 parsecs away

Travel
| In functional programming a map function is a way to create an array by passing each element of the array into a function. Mapping function...