Displaying 4 results from an estimated 4 matches for "test_version".
Did you mean:
get_version
2005 Feb 28
3
test/unit error report for win32-service
...;'
tc_service.rb:164:in `test_create_delete''
---------------
2) Error:
test_start_stop(TC_Win32Service):
Win32::ServiceError: The dependency service or group failed to start.
tc_service.rb:140:in `start''
tc_service.rb:140:in `test_start_stop''
3) Failure:
test_version(TC_Win32Service) [tc_service.rb:52]:
Bad version.
<"0.4.5"> expected but was
<"0.4.4">.
25 tests, 78 assertions, 2 failures, 1 errors
C:\win32utils\win32-service\test>ruby tc_daemon.rb
Loaded suite tc_daemon
Started
...F
Finished in 0.02 seconds.
1) Failure:...
2006 Dec 14
11
Tweak to win32-eventlog
All,
I got a bug report from Greg Holmes where the description wasn''t being
returned properly. At the moment, if there''s no event associated with
the event id, then the description is empty.
However, it turns out that there can still be associated information
about the event. So, I propose the following tweak to the
get_description private method:
# If FormatMessage()
2004 Mar 09
6
win32-mmap test suite
...Dir.mkdir("win32") unless File.exists?("win32")
File.copy("mmap.so","win32")
$:.unshift Dir.pwd
end
require "test/unit"
require "win32/mmap"
include Win32
class TC_Mmap < Test::Unit::TestCase
def setup
@a = 1
end
def test_version
assert_equal("0.0.1",Mmap::VERSION,"Bad version")
end
def test_new
assert_nothing_raised{ Mmap.new("Foo") }
assert_nothing_raised{ Mmap.new("Foo",16*1024) }
assert_nothing_raised{ Mmap.new("Foo",16*1024,"test"...
2005 Feb 14
8
DONT_RESOLVE_DLL_REFERENCES info
For future reference, it looks like we should avoid
DONT_RESOLVE_DLL_REFERENCES in any extensions.
http://weblogs.asp.net/oldnewthing/archive/2005/02/14/372266.aspx
Regards,
Dan