I am new new in Watir, Rspec testing and i am just getting familiar with it. I found one test on internet, combination of Rspec and watir but id does nothing. it throws error require 'spec' does not exist. I have rspec 2.12 installed. Did I miss something here, do i need to install something? Rspec scripts are working as well as watir but this combination not.
require 'watir'
require 'spec'
describe "Google" do
before :all do
@browser = Watir::Browser.new
@browser.goto "http://google.com"
end
it "has word 'Google' on main page" do
@browser.text.should include("Google")
end
it "has word 'Bing' as it's title" do
@browser.title.should == "Bing"
end
after :all do
@browser.close
end
end