On Tue, Mar 20, 2012 at 6:45 PM, Ankita <ankita.gu...@adslot.com> wrote:
> I am running by going into specific file folder on command prompt and
> writing ruby file_name.rb to run it...

You'll see less headache if use the "rspec" command instead of ruby to
run your specs:

   rspec file_name_spec.rb

Or, is there a reason why you want to invoke rspec without the rspec command?

Zach




>
> On Mar 20, 10:01 pm, David Chelimsky <dchelim...@gmail.com> wrote:
>> On Mon, Mar 19, 2012 at 11:53 PM, Ankita <ankita.gu...@adslot.com> wrote:
>> > I am trying to run following file, it does nothing and even does not
>> > give any error message.. not sure what is the problem.
>>
>> How are you running it?
>>
>>
>>
>>
>>
>>
>>
>>
>>
>> > require "rubygems"
>> > require 'watir-webdriver'
>> > require "rspec"
>>
>> > describe "ASP TEST Suite" do
>> >  before(:all) do
>> >    client = Selenium::WebDriver::Remote::Http::Default.new
>> >        client.timeout = 230 # seconds – default is 60
>> >        profile = Selenium::WebDriver::Firefox::Profile.new
>> >        driver = Selenium::WebDriver.for(:ff, {:http_client =>
>> > client, :profile => profile})
>> >        $b = Watir::Browser.new(driver)
>> >  end
>> > it "first" do
>> >        puts "test"
>> > end
>> >   after(:all) do
>> >    $b.close
>> >  end
>> > end
>> > _______________________________________________
>> > rspec-users mailing list
>> > rspec-us...@rubyforge.org
>> >http://rubyforge.org/mailman/listinfo/rspec-users
>>
>> _______________________________________________
>> rspec-users mailing list
>> rspec-us...@rubyforge.orghttp://rubyforge.org/mailman/listinfo/rspec-users
> _______________________________________________
> rspec-users mailing list
> rspec-users@rubyforge.org
> http://rubyforge.org/mailman/listinfo/rspec-users



-- 

--
@zachdennis
http://www.continuousthinking.com
http://www.mutuallyhuman.com
_______________________________________________
rspec-users mailing list
rspec-users@rubyforge.org
http://rubyforge.org/mailman/listinfo/rspec-users

Reply via email to