Displaying 20 results from an estimated 6000 matches similar to: "revision 1000"
2006 Nov 09
2
Focused Specs/Tests in Non-Textmate editors
Hello,
I wrote a script that runs a focused spec/test from the filename and line
number.
I bound this to an external tool in my Idea environment.
http://weblog.freeopinion.org/articles/2006/11/04/focused-unit-test-spec-script
Brian
-------------- next part --------------
An HTML attachment was scrubbed...
URL:
2006 Nov 21
10
Rspec Brown Bag
Hello,
I''m scheduled to give a rspec brown bag this Wednesday (11/22) for my
company (Pivotal Computer Systems, http://www.pivotalsf.com). I did see Dave
Astel''s talk as well as several of my coworkers.
The developers at my workplace are experienced Agile developers.
What would be some good things to focus on for this brown bag?
Are there slides to presentations that would be
2006 Oct 04
3
do we need stubbing?
Hey all -
The trunk currently supports three types of mocking/stubbing:
Mock Objects (created dynamically at runtime)
Partial Mocking of methods on existing classes
Stubbing of methods on existing objects or classes
The main difference between Partial Mocking and Stubbing is that Stubs
don''t verify.
I''m wondering if we really need the stubbing facility at all, given
that we
2005 Sep 13
6
form_tag & form_remote_tag html id attribute
Hello,
Is there a way to set the html element id for the form_tag and
form_remote_tag on the server side?
I want to have this resultant html...
<form id=''something'' ...
...
</form>
Thank you,
Brian Takita
2010 Mar 24
1
Release plans
Hi everyone.
So I'd like to start with an update saying that we've hit a pretty big
milestone in our 0.9.0 plans for world domination - that is that the
last plugin, DBus, has finally been ported and works. [1] The code is
currently undergoing review, and once some inconsistencies are fixed
up, it looks set for inclusion into master.
This means that along with this, a 2D GTK Window
2005 Dec 21
3
Patch Cycle
Hello,
I submitted a patch <http://dev.rubyonrails.org/ticket/3287> (
http://dev.rubyonrails.org/ticket/3287) a couple of days ago. The patch adds
some methods into and changes the existing methods in the CaptureHelper
module. It should not, as I can see, affect any existing Rails
implementations.
I added the relevant unit tests and all but one of the tests pass. The test
that fails failed
2005 Dec 08
1
SwitchTower, Apache, and Routing Errors
Hello,
I deployed a Rails App using Switchtower and now I''m getting a Routing Error
to my Javascript and Stylesheet files.
Has anybody else had this issue?
Here is the log file.
> ActionController::RoutingError (Recognition failed for
> "/javascripts/prototype.js"):
> /vendor/rails/actionpack/lib/action_controller/routing.rb:470:in
>
2007 May 02
4
Terse Mocks
Hello,
I recently made a feature request with a patch for terser mocks.
http://rubyforge.org/tracker/index.php?func=detail&aid=10412&group_id=1917&atid=7480
Here are some examples with their current equivalents:
the_mock.expects.foo(1,2) {|a, b| :bar}
the_mock.expects.foo(1,2).returns(:bar)
the_mock.expects(:foo).with(1,2) {|a, b| :bar}
the_mock.expects(:foo).with(1,2).returns(:bar)
2008 Jan 13
4
TextMate bundle not compatible with nested specs for running focused tests?
Seems like the recently updated (and wonderful) textmate bundle does not
take into account running individual tests that are in nested specs.
Anybody else notice this? Any ideas?
Matt
-------------- next part --------------
An HTML attachment was scrubbed...
URL: http://rubyforge.org/pipermail/rspec-users/attachments/20080113/15d5cc2f/attachment.html
2007 May 06
2
NetBeans gets RSpec support
It looks like the lates NetBeans milestone can run RSpec specifications:
http://wiki.netbeans.org/wiki/view/NewAndNoteWorthyMilestone9
I haven''t tried it myself, but if anyone else does please tell us
about your experience.
Aslak
2010 Jul 16
4
1.2 released!
http://www.winehq.org/announce/1.2
I also submitted it to Slashdot, please click up:
http://slashdot.org/submission/1284766/Wine-12-released
- d.
---------- Forwarded message ----------
From: Alexandre Julliard <julliard at winehq.org>
Date: 16 July 2010 19:22
Subject: Post-release plans
To: wine-devel at winehq.org
Folks,
First I want to thank everybody for your great work of the
2006 May 31
2
AEL2 and CID
Does anyone know how to get CID working in AEL2 ?
In extensions.conf you can do:
exten => 111/666,1,PlayBack(demo-congrats)
exten => 111/666,2,Hangup()
exten => 111,1,PlayBack(demo-moreinfo)
exten => 111,2,Hangup()
and if callerid 666 dialed 111, they would get demo-congrats, everyone
else gets demo-moreinfo.
In AEL:
111 => {
Playback(demo-moreinfo);
2003 Sep 26
3
dialing out with the outgoing queue problem.
Hi,
I have cvs updated all my modules (zapata, libpri, zaptel and asterisk).
I have also read in the archives & seems that no-one has run into this
problem.
What I'm trying to do is simple. Just make and outbound call using the
/var/spool/asterisk/outgoing directory.
I copied /usr/src/asterisk/sample.call and only changed the context &
extension.
I configured my Zap1 to the same
2003 Jun 19
1
Unable to find a path
Hi!
I just installed Asterisk 0.4.0 with all the default options, and the
configuration samples it has. When I try to dial from an h323 client
(gnomemeeting) I get this message on the messages file:
Jun 19 11:48:45 WARNING[15375]: File file.c, Line 410 (ast_openstream):
File demo-congrats does not exist in any format
Jun 19 11:48:45 WARNING[15375]: File file.c, Line 553 (ast_streamfile):
2003 Nov 23
1
agi exec problem (followup)
actually, i do have a workaround which bypasses the exec command entirely:
system("asterisk -r -x 'add extension s,3,Playback(demo-congrats) into local'");
but it's ugly. seems like it should be possible to do this with exec.
.t
---------- Forwarded message ----------
Date: Sun, 23 Nov 2003 21:17:50 -0500 (EST)
From: tad <tad@media.mit.edu>
To:
2011 Sep 13
12
Assertions for asynchronous behaviour
Hi all,
In GOOS[1] they use an assertion called assertEventually which samples the system for a success state until a certain timeout has elapsed. This allows you to synchronise the tests with asynchronous code.
Do we have an equivalent of that in the Ruby / RSpec world already? I know capybara has wait_until { } but that''s fairly rudimentary - the failure message isn''t very
2003 Nov 24
1
Re: Asterisk-Users digest, Vol 1 #1994 - 14 msgs
as i said, right now i'm just getting my feet wet. but, i will be needing
to build dialplans on the fly. 'add extension' seems like the right call
to make.
.t
> What is the goal of this? It doesn't make much sense to me. Care to
> share some insite into what your goal is?
>
> bkw
>
> On Sun, 23 Nov 2003, tad wrote:
>
> > actually, i do have a
2008 Jan 02
2
Proxies
I really like the idea of Mock Proxies as explained in Brian Takita''s post here:
http://pivots.pivotallabs.com/users/brian/blog/articles/352-introducing-rr
I posted to this list eariler with an incomplete implementation of
.stops_mocking in the thread "Mocking Time, delegating to original
object." The Mock Proxy pattern would make this simpler.
2004 Sep 14
2
Spawn extension.....exited non-zero
I am recieving inbound calls to my asterisk box over IAX.
And getting "spawn extension....exited non-zero" errors.
Im not entirely sure what this means, and would appreciate any help in
fixing my problem.
FYI:
********** is the inbound phone number
x.x.x.x is a remote asterisk box calling my own asterisk box.
When I choose it to dial an internal extension using this dialplan:
exten
2007 Apr 24
1
[LLVMdev] LLVM conference
Dear Chris et al,
James Weisner and I would like to attend your conference on the 25th.
We will have to get up earlier than we tend to so we can make it there
from Santa Cruz by 8 AM! See you there!
By the way, we reached a major milestone last Friday. We can now turn
pretty much anything reasonably simple that can be compiled by LLVM into
one giant "virtual" combinatorial