Sha256: b2df9c8c132166943d6dfb87eac7c2c4941ae6eaccd06ca1a5e5cc097d5044d2

Contents?: true

Size: 384 Bytes

Versions: 22

Compression:

Stored size: 384 Bytes

Contents

require 'test/unit'

class MyTest < Test::Unit::TestCase

  # Called before every test method runs. Can be used
  # to set up fixture information.
  def setup
    # Do nothing
  end

  # Called after every test method runs. Can be used to tear
  # down fixture information.

  def teardown
    # Do nothing
  end

  # Fake test
  def test_fail
    # fail('Not implemented')

  end
end

Version data entries

22 entries across 22 versions & 1 rubygems

Version Path
hyla-1.0.1 test/my_test.rb
hyla-1.0 test/my_test.rb