Re: [rspec-users] Can't access https://www.relishapp.com/rspec from Chrome

2012-04-07 Thread Matt Wynne
Hi Rodrigo, On 7 Apr 2012, at 16:30, Rodrigo Rosenfeld Rosas wrote: > It seems it has an invalid certificate. Could you please try this on some other computers to see whether it's a problem with your particular machine? I haven't had any other reports of this issue. If it still persists, pleas

Re: [rspec-users] Can't access https://www.relishapp.com/rspec from Chrome

2012-04-07 Thread Ben Lovell
On 7 April 2012 16:30, Rodrigo Rosenfeld Rosas wrote: > It seems it has an invalid certificate. > __**_ > Fine here. ___ rspec-users mailing list rspec-users@rubyforge.org http://rubyforge.org/mailman/listinf

[rspec-users] Can't access https://www.relishapp.com/rspec from Chrome

2012-04-07 Thread Rodrigo Rosenfeld Rosas
It seems it has an invalid certificate. ___ rspec-users mailing list rspec-users@rubyforge.org http://rubyforge.org/mailman/listinfo/rspec-users

Re: [rspec-users] Autotest and Colors with Rspec

2012-04-07 Thread David Chelimsky
I added basic information to the README: https://github.com/rspec/rspec-core -- David Chelimsky Sent with Sparrow (http://www.sparrowmailapp.com/?sig) On Saturday, April 7, 2012 at 9:59 AM, David Chelimsky wrote: > On Apr 6, 2012, at 16:07, seattlelite (mailto:ryanac...@gmail.com)> wrote: >

Re: [rspec-users] Autotest and Colors with Rspec

2012-04-07 Thread David Chelimsky
On Apr 6, 2012, at 16:07, seattlelite wrote: > Question 1. > I'm using Ruby 1.9.2, Rails 3.0.7 and I have RSpec and Autotest installed, > but Autotest is not running my specs - it's running Unit:Test installed. How > do I get it to run my Rspecs? > > I tried this: > > (a) http://blog.davidc

Re: [rspec-users] before(:all) leaves records in database

2012-04-07 Thread nathanvda
When using before(:all) to create records in the database, you should use after(:all) to clean that up. Sometimes when you need to setup a lot of data, this can speed your tests a lot. Otherwise avoid it. On Friday, November 25, 2011 3:04:08 PM UTC+1, Zhi-Qiang Lei wrote: > > Hi, > > When I te