Re: [rspec-users] Cucumber in Spanish?

2011-05-05 Thread Carmen Díaz Echauri
my mistake! Thanks :-) On Wed, May 4, 2011 at 3:22 AM, David Chelimsky wrote: > On May 3, 2011, at 9:40 PM, Carmen Díaz Echauri wrote: > > Hi All > > I'm trying to write test scenarios in Spanish with cucumber. But all my > test are passing :( I haven't really used cucumber that much. > Is there

Re: [rspec-users] api (class/method) renaming, will a simple controller test verify this?

2011-05-05 Thread Mike Mazur
Hi, On Fri, May 6, 2011 at 02:28, S Ahmed wrote: > I want my tests to fail if I rename a method in my /lib folder in a rails > app. > > Say I have a class like: > > /lib > /lib/formatter.rb > > class Formatter >    def self.do_transforms(text) >   text >    end > end > > > And say I reference

[rspec-users] jruby PATH and RUBYOPTS integration

2011-05-05 Thread Jonatas Paganini
Hi, I download the last jruby version and install the rspec gem using jgem to install. After it, I export RUBYOPTS=rubygems to guarantee that the spec can be found. Trying to run the spec by normal mode I got: jonatas@branco:~/jruby-1.6.1$ jruby -S spec LoadError: no such file to load -- spec/au

[rspec-users] api (class/method) renaming, will a simple controller test verify this?

2011-05-05 Thread S Ahmed
I want my tests to fail if I rename a method in my /lib folder in a rails app. Say I have a class like: /lib /lib/formatter.rb class Formatter def self.do_transforms(text) text end end And say I reference this in my HomeController's index action: def index text = params[:tex