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
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
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
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
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
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