зеркало из https://github.com/github/ruby.git
13 строки
204 B
Ruby
13 строки
204 B
Ruby
|
require 'test/unit'
|
||
|
|
||
|
begin
|
||
|
require 'curses'
|
||
|
rescue LoadError
|
||
|
end
|
||
|
|
||
|
class TestCurses < Test::Unit::TestCase
|
||
|
def test_version
|
||
|
assert_instance_of(String, Curses::VERSION)
|
||
|
end
|
||
|
end if defined? Curses
|