Business Value in rSpec Stories
July 9th, 2008
Because rSpec provides a friendly, more readable means of describing use cases/stories, I’ve taken to inserting business value statements directly into the specs. While this could get unwieldy, I think it helps keep stories focused while providing clear context and value to coders.
describe "Filtered fields" do
it "should filter content on save to cache expensive transforms while preserving source" do
# do it
end
end
Doing this in xUnit would probably cause you to have a camel-induced nervous breakdown.
Add Your Comment