Re: [rspec-users] Generated rspec video

2008-02-11 Thread rspec-users
> > Stuff for off-list: > > - created with mencoder, I can play with mplayer. > >Reports on success or failure of other players welcome. > > weird codec combo... you should have used thedora or xvid at least :-P > (cannot play or even recognize the .avi codec signature). > > Anyway, will loo

Re: [rspec-users] Generated rspec video

2008-02-11 Thread Luis Lavena
On Feb 12, 2008 2:45 AM, Andrew WC Brown <[EMAIL PROTECTED]> wrote: > If this is a a video mostly in a text editor like TextMate I'd recommend > converting it to Apple Animation. I've tried several times to get Quicktime output good (ala: highly compressed, small size) files with it and failed...

Re: [rspec-users] Generated rspec video

2008-02-11 Thread Andrew WC Brown
If this is a a video mostly in a text editor like TextMate I'd recommend converting it to Apple Animation. On Feb 11, 2008 11:42 PM, Alex Satrapa <[EMAIL PROTECTED]> wrote: > On 12/02/2008, at 14:07 , [EMAIL PROTECTED] wrote: > > > A sneak preview of what I've been doing with my patch that made i

Re: [rspec-users] Generated rspec video

2008-02-11 Thread Alex Satrapa
On 12/02/2008, at 14:07 , [EMAIL PROTECTED] wrote: > A sneak preview of what I've been doing with my patch that made it > into rspec 1.1.3: >http://chmeee.dyndns.org/ruby/R-Spec%20Demo.avi What format is that video? I've got DivX and various others loaded, but none of them want to work on t

Re: [rspec-users] Generated rspec video

2008-02-11 Thread Luis Lavena
On Feb 12, 2008 1:07 AM, <[EMAIL PROTECTED]> wrote: > Hi all! > > A sneak preview of what I've been doing with my patch that made it > into rspec 1.1.3: >http://chmeee.dyndns.org/ruby/R-Spec%20Demo.avi > (2MB video) > > Stuff for off-list: > - created with mencoder, I can play with mplayer. >

Re: [rspec-users] Generated rspec video

2008-02-11 Thread rspec-users
In reply to "Andrew WC Brown" <[EMAIL PROTECTED]> on Tue Feb 12 05:18:49 2008: > Load Failed > > Reason : Operation could not be completed. (WebKitErrorDomain error 204.) > > http://chmeee.dyndns.org/ruby/R-Spec%20Demo.avi > > (2MB video) No idea what makes webkit (or connection, or ...) fail

Re: [rspec-users] Generated rspec video

2008-02-11 Thread Andrew WC Brown
Load Failed Reason : Operation could not be completed. (WebKitErrorDomain error 204.) On Feb 11, 2008 10:07 PM, <[EMAIL PROTECTED]> wrote: > Hi all! > > A sneak preview of what I've been doing with my patch that made it > into rspec 1.1.3: > http://chmeee.dyndns.org/ruby/R-Spec%20Demo.avi > (2

[rspec-users] Generated rspec video

2008-02-11 Thread rspec-users
Hi all! A sneak preview of what I've been doing with my patch that made it into rspec 1.1.3: http://chmeee.dyndns.org/ruby/R-Spec%20Demo.avi (2MB video) Remarks: - this is a (not-too-comfortable) test of my program itself; that's what causes the double-lines in some places - I can not use

Re: [rspec-users] How to mock an association

2008-02-11 Thread Edvard Majakari
> Obvious 'rails mocking associations' seemed to work for me, unless I ...make that '...Googling for ...'. Duh. -- "One day, when he was naughty, Mr Bunnsy looked over the hedge into Farmer Fred's field and it was full of fresh green lettuces. Mr Bunnsy, however, was not full of lettuces. This d

Re: [rspec-users] How to mock an association

2008-02-11 Thread Edvard Majakari
On Feb 11, 2008 1:43 PM, Wes Shaddix <[EMAIL PROTECTED]> wrote: > I've got a "group" model that has a user_id attribute and a > validates_existence_of :user and validates_presence_of :user_id > validations. What method(s) do I need to stub on the User mock to > intercept those validation calls? My

Re: [rspec-users] colored output for stories?

2008-02-11 Thread David Chelimsky
On Feb 11, 2008 6:41 AM, Neil M. Young <[EMAIL PROTECTED]> wrote: > > > aslak hellesoy wrote: > > > > On Feb 8, 2008 9:50 PM, Neil M. Young <[EMAIL PROTECTED]> wrote: > >> > >> sorry if this is documented somewhere, but do stories support colored > >> output? > >> neither -c nor --color are working

Re: [rspec-users] colored output for stories?

2008-02-11 Thread Neil M. Young
aslak hellesoy wrote: > > On Feb 8, 2008 9:50 PM, Neil M. Young <[EMAIL PROTECTED]> wrote: >> >> sorry if this is documented somewhere, but do stories support colored >> output? >> neither -c nor --color are working for me. > > It works for me. What's your environment? > ubuntu 7.10, rails 2.

[rspec-users] How to mock an association

2008-02-11 Thread Wes Shaddix
I've got a "group" model that has a user_id attribute and a validates_existence_of :user and validates_presence_of :user_id validations. What method(s) do I need to stub on the User mock to intercept those validation calls? My goal is to isolate the Group model from the User model. Thanks Wes