I am having problems using the global variable defined in my test class that the library file refers to. I am using Ruby 1.9.3p392 and test block 2.5.4.
This is the code that runs the tests:
require 'rubygems' gem 'test-unit' require 'test/unit' require 'ci/reporter/rake/test_unit_loader' load '../lib/functions.rb' require 'watir' class Test_002 < Test::Unit::TestCase include Functions class << self def startup @browser = Watir::Browser.new :ie @browser.speed = :fast end def shutdown @browser.close end end def test_001_login login('some_url', 'some_user', 'some_passw') end end
And this is the part of the library that contains the login function:
require 'rubygems' module Functions def login(url, user, passw) @browser.goto(url) ... end end
This is the conclusion:
Started E =============================================================================== Error: test_001_login(Test_002) NoMethodError: undefined method `goto' for nil:NilClass (...) 23: end 24: 25: def test_001_login => 26: login('some_url', 'some_user', 'some_passw') 27: end 28: 29: end =============================================================================== Finished in 3.0043 seconds. 1 tests, 0 assertions, 0 failures, 1 errors, 0 pendings, 0 omissions, 0 notifications 0% passed 0.33 tests/s, 0.00 assertions/s
Any ideas?
source share