File: test_rgfatools.rb

package info (click to toggle)
ruby-rgfa 1.3.1-1
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 820 kB
  • ctags: 768
  • sloc: ruby: 5,649; makefile: 9
file content (11 lines) | stat: -rw-r--r-- 228 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
require "rgfatools.rb"
require "test/unit"

class TestRGFATools < Test::Unit::TestCase

  def test_basics
    assert_nothing_raised { RGFA.new }
    assert_nothing_raised { RGFA.included_modules.include?(RGFATools) }
  end

end