| bio | website | barsukov.net |
|---|---|---|
| location | Kiev, Ukraine | |
| age | 29 | |
| visits | member for | 2 years |
| seen | Feb 27 at 10:43 | |
| stats | profile views | 11 |
A test engineer in Kiev that is tipping his toes to programming and databases.
Favorite books: Catch-22, 1984, New-York Trilogy
|
May 11 |
comment |
BDD with 3rd party services No-no, it's much simpler.Suppose a webservice returns an XML document. WIth an actual working webservice you would write something like doc = Nokogiri::XML(open('webservice.com?user="Adam Smith"')) (code in Ruby using XML parsing library Nokogiri), and then manipulate variable doc. With mock response files you should just use something like doc = Nokogiri::XML(File.new(AdamSmith.xml)). |
|
May 4 |
comment |
How to organize test documentation? Test documentation for testers/QA managers |
|
May 4 |
comment |
Suggestions for “Selling” TDD, and FDD to sceptical non engineering managers Numerous related questions on programmers.SE: programmers.stackexchange.com/questions/41773/… programmers.stackexchange.com/questions/41409/why-does-tdd-work programmers.stackexchange.com/questions/65081/… |