Re: [rspec-users] How to setup rspec to be included on the PATH

2010-11-09 Thread Robert Stagner
hich seemed to do the trick. Thanks for the information!!! Regards, Robert On Mon, Nov 8, 2010 at 5:23 PM, David Chelimsky wrote: > > On Nov 8, 2010, at 6:12 PM, Robert Stagner wrote: > > I've recently installed a copy of rspec (2.0.0) on my Linux distribution > (Ubuntu 9.

[rspec-users] How to setup rspec to be included on the PATH

2010-11-08 Thread Robert Stagner
I've recently installed a copy of rspec (2.0.0) on my Linux distribution (Ubuntu 9.10). All went well. However, when I attempt to access cucumber from the shell, like so $ rspec --help I receive the following: No command 'rspec' found I know there is a simple solution to this, likely dealing

Re: [rspec-users] Executing multiple rspec scripts

2008-07-12 Thread Robert Stagner
;< File.join(dir, f) + ".rb" > end > > puts "Testing: #{tests.join(', ')}" > > tests.each do |file| >load file, true > end > end > > > then you can run all your tests via... > > > ruby suite.rb > > You could also use

Re: [rspec-users] Executing multiple rspec scripts

2008-07-11 Thread Robert Stagner
) end it "should support a password text field" do @login.test_password_field.should be_an_instance_of(Watir::TextField) end . . . . end On Thu, Jul 10, 2008 at 8:17 PM, Ben Mabey <[EMAIL PROTECTED]> wrote: > Robert Stagner wrote: > >> I'm new to

[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