|
You are here |
friendgineers.rosenshein.org | ||
| | | | |
golangbot.com
|
|
| | | | | This is the second part in our 2 part interface tutorial. We discuss about pointer receivers, implementing multiple interfaces and zero value of interface. | |
| | | | |
www.joeshaw.org
|
|
| | | | | Decoding all those hex values | |
| | | | |
dougseven.com
|
|
| | | | | Today I am at re:Invent 2022 in Las Vegas, NV. I am spending my days talking to AWS customers about Amazon CodeWhisperer - a new developer productivity service that will accelerate application development by providing automatic code recommendations based on the code and comments in your IDE. For developers, Amazon CodeWhisperer is an IDE extension... | |
| | | | |
mattsencenbaugh.com
|
|
| | | TDD Tip: Invert your assertion One top tip I picked up years ago from a co-worker was to invert your assertions when you are in the midst of your TDD cycles. In other words, if you have an RSpec assertion like this: expect(foo.nil?).to be_truthy flip the truthy to falsey and run the test expect(foo.nil?).to be_falsey What you want to see there is that your test fails. In a 'true' TDD environment the test would be perfectly clean and no state would be acting on your subject, but that's just not how most test suites for production products work. | ||