9 lines
103 B
Ruby
9 lines
103 B
Ruby
|
require 'test/unit'
|
||
|
|
||
|
class SyncTest < Test::Unit::TestCase
|
||
|
def test_truth
|
||
|
assert true
|
||
|
end
|
||
|
end
|
||
|
|