Re: [rspec-users] attachment_fu and story runner, any updates

2008-01-21 Thread David Chelimsky
On Jan 21, 2008 2:12 PM, Rick DeNatale <[EMAIL PROTECTED]> wrote: > I'm trying to write a story for a Rails app which involves using the > attachment_fu plugin to upload images. > > After blunting my pick on this for a while, google found me this: > http://www.ruby-forum.com/topic/134743#600831 > >

[rspec-users] RSpec 1.1.2, --colour and Windows

2008-01-21 Thread Luis Lavena
Hello RSpec'ers :-) In reply to this message: http://rubyforge.org/pipermail/rspec-users/2008-January/005477.html I provided a patch against CURRENT for fixing the latest issue introduced in 1.1.2 regarding colour and Windows. http://rspec.lighthouseapp.com/projects/5645/tickets/244-no-coloured

Re: [rspec-users] Rspec 1.1.2 on Windows

2008-01-21 Thread Luis Lavena
On Jan 21, 2008 6:53 PM, BenFyvie <[EMAIL PROTECTED]> wrote: > > I am using Rspec 1.1.2 on Windows XP SP2 > > I am receiving the following error when I run 'rake spec' from a brand new > project: > C:/SVN_Projects/rspec/vendor/plugins/rspec/lib/spec/runner/options.rb:107:in > `colour=': You must ge

[rspec-users] Rspec 1.1.2 on Windows

2008-01-21 Thread BenFyvie
I am using Rspec 1.1.2 on Windows XP SP2 I am receiving the following error when I run 'rake spec' from a brand new project: C:/SVN_Projects/rspec/vendor/plugins/rspec/lib/spec/runner/options.rb:107:in `colour=': You must gem install win32console to use colour on Windows (RuntimeError) I have th

[rspec-users] attachment_fu and story runner, any updates

2008-01-21 Thread Rick DeNatale
I'm trying to write a story for a Rails app which involves using the attachment_fu plugin to upload images. After blunting my pick on this for a while, google found me this: http://www.ruby-forum.com/topic/134743#600831 So it seems that there's a hole in Rails integration testing and multipart fo

Re: [rspec-users] "should_not ==" vs "should !="

2008-01-21 Thread David Chelimsky
On Jan 21, 2008 8:22 AM, Jim Lindley <[EMAIL PROTECTED]> wrote: > > I'm 99 44/100% sure that you have it right. The expression x != y is > > syntactic sugar for !(x == y) much like x += y is syntactic sugar for > > x = (x +y) > > > > The parser turns these into an internal representation (abstract

Re: [rspec-users] "should_not ==" vs "should !="

2008-01-21 Thread Jim Lindley
> I'm 99 44/100% sure that you have it right. The expression x != y is > syntactic sugar for !(x == y) much like x += y is syntactic sugar for > x = (x +y) > > The parser turns these into an internal representation (abstract > syntax tree for 1.8, byte-codes for 1.9) which is identical to the > se

[rspec-users] specin' update_attributes! + Hash

2008-01-21 Thread CNNN NICK
Hi, I am facing a problem while trying to test a method that updates an attribute. The attribute format should be converted to YAML format before storing in the table which is excatly what is going on. But when testing it using expectations in rspec it returns an error. *** below is the error mes

Re: [rspec-users] specin' update_attributes! + Hash

2008-01-21 Thread CNNN NICK
Oh, it's escaping the characters in the YAML format... sorry for that -- Posted via http://www.ruby-forum.com/. ___ rspec-users mailing list rspec-users@rubyforge.org http://rubyforge.org/mailman/listinfo/rspec-users