Displaying 4 results from an estimated 4 matches for "shmoe".
Did you mean:
shmoo
2006 Jul 25
1
Managing backtrace
I''m writing a method_missing handler to "automagically" create
assertions from predicate functions. So, for example, one use might be:
assert_not_include ''joes@shmoe.com'', response.to
-or-
assert_include ''info@mydomain.com'', response.from
The code is working properly, but when I trigger an assert, the
backtrace shows something like:
1) Failure:
test_confirm(ContactMailerTest)
[./test/unit/../test_helper.rb:74:in `method_mi...
2007 Feb 01
3
should_redirect_to in rspec-0.8.0 / rspec_on_rails 1453
I have a spec:
specify "a post with no user id should add a record" do
post :edit_or_create, :user => {:login => ''joeschmoe'', :email =>
''joe at shmoe.com'', :email_confirmation => ''joe at shmoe.com'', :full_name
=> ''Joe Schmoe''}
assigns[:user].should_not_be_nil
assigns[:user].new_record?.should_not_be(true)
flash[:notice].should_match(/user added/)
response.should_be_redirect...
2007 Feb 11
1
Debugging a SIP / AudioCodes Problem
...phone, I
get a fast busy and the logs/debug show an automatic hangup. On the other
device, I can make calls without a problem. I can even call the phone that
can't make a call. Any ideas where I could start to figure out where the
problem is?
Shlomo
extensions.conf
[globals]
JOE=SIP/joe
SHMOE=SIP/shmoe
SHLOMO=SIP/shlomo
DAVID=SIP/david
SIMON=SIP/simon
[internal]
exten
=> s,1,Answer()
exten => 611,1,Answer()
exten => 611,n,Playback(hello-world)
exten => 611,n,Hangup()
exten => 612,1,Answer()
exten => 9010,1,Answer()
exten => 9010,n,Dial(${JOE},10)
exten => 901...
2007 Feb 04
10
Spec''ing ActionMailer
Good morning (Pacific Time). I have a controller action that, as a
side-effect, sends an email to an administrator. I want it to do
something like this:
specify "when someone successfully signs up, an email should be sent
to the administrator with the person''s contact page" do
post :signup, {...lots o'' params}
response should_be success
#