search for: blatz

Displaying 3 results from an estimated 3 matches for "blatz".

Did you mean: platz
2003 Jun 15
2
a few questions about sip implementation
I'm looking at RFC 3261, I think the latest SIP standard and have a few questions about the * sip implementation: 1. 8.2.6.1 Sending a Provisional Response says that UASs SHOULD NOT issue a provisional response to non-INVITE requests.
2007 May 05
10
have_one and have_present
>Comment By: Luis Lavena (luislavena) > Date: 2007-05-04 23:37 > describe "An Asset" do > before(:each) do > @asset = Asset.new > end > > it { @asset.should have_one(:attachment) } > it { @asset.should have_present(:something) } > end Food for thought on these. I like have_one a lot. It speaks to me as a Rails developer and I think it speaks to
2007 May 31
28
Another attempt for a succinct model validation DSL
On 5/28/07, David Chelimsky <dchelimsky at gmail.com> wrote: > The behaviour you''re trying to describe is that the User should > require that passwords bear certain qualities - in this case a length > between 5 and 40. So you need to ask yourself how the User should > behave when this requirement is violated, and then specify that it > behaves that way. > >