Re: [rspec-users] Executing multiple rspec scripts

2008-07-12 Thread Robert Stagner
Wow!! That is also very, very helpful. I was able to get rake to work as described in an earlier posting, but not without several hours of tinkering and reading the RSpec and Rake documentation. Your solution is certainly much more direct. Thanks. On Sat, Jul 12, 2008 at 5:34 PM, Jim Morris <[EM

Re: [rspec-users] Executing multiple rspec scripts

2008-07-12 Thread Jim Morris
Another way to do it instead of the Rake method is what I do... I create a suite.rb in the spec folder with this... # suite.rb - run all my tests in this folder and below if __FILE__ == $0 dir = File.dirname(__FILE__) tests= Dir["#{dir}/**/test_*.rb"] # anything named test_*.rb tests.conca

Re: [rspec-users] Executing multiple rspec scripts

2008-07-11 Thread Robert Stagner
Actually, I'm a member of the QA team (limited development experience). So, we are attempting to use RSpec without rails. What is Rake? Near the end of your response, you list a way of running multiple spec files by creating a spec task. Since, I'm not a developer, could you please provide me wi

Re: [rspec-users] Executing multiple rspec scripts

2008-07-10 Thread Ben Mabey
Robert Stagner wrote: I'm new to RSpec. I've just installed the gem and begun experimenting with developing several scripts. From what I've seen thus far, it looks like it will aid our QA team in testing many web applications. Is there a way to execute multiple rspec test scripts from one cen

Re: [rspec-users] Executing multiple rspec scripts

2008-07-10 Thread Matt Darby
On Jul 10, 2008, at 7:19 PM, Robert Stagner wrote: I'm new to RSpec. I've just installed the gem and begun experimenting with developing several scripts. From what I've seen thus far, it looks like it will aid our QA team in testing many web applications. Is there a way to execute multipl

[rspec-users] Executing multiple rspec scripts

2008-07-10 Thread Robert Stagner
I'm new to RSpec. I've just installed the gem and begun experimenting with developing several scripts. From what I've seen thus far, it looks like it will aid our QA team in testing many web applications. Is there a way to execute multiple rspec test scripts from one central file? -- Regards, R