File: testunit_good.rb

package info (click to toggle)
ruby-simplecov 0.22.0-4
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 1,512 kB
  • sloc: ruby: 5,550; makefile: 10
file content (9 lines) | stat: -rw-r--r-- 213 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
$LOAD_PATH.unshift(File.join(File.dirname(__FILE__), "..", "..", "..", "lib"))
require "simplecov"
SimpleCov.start
require "test/unit"
class FooTest < Test::Unit::TestCase
  def test_foo
    assert true
  end
end