Sha256: d6d7b8c79b744e284b1fe03028b5d3b630672c4a63be24a850bd845872af0e2f

Contents?: true

Size: 716 Bytes

Versions: 2

Compression:

Stored size: 716 Bytes

Contents

require 'minitest/autorun'
require 'minitest/around'

class TestWithoutAround < MiniTest::Unit::TestCase
  def test_no_around_defined
    assert true
  end
end

class TestWithoutArgs < MiniTest::Unit::TestCase
  def around
    $before = true
    yield
    $before = false # hard to test?
  end

  def test_runs_around
    assert_equal true, $before
  end
end

class TestWithSingleArg < MiniTest::Unit::TestCase
  def around
    yield "string"
  end

  def test_around_passes_string(string)
    assert_equal "string", string
  end
end

class TestWithMultipleArgs < MiniTest::Unit::TestCase
  def around
    yield 1, 2
  end

  def test_passes_multiple_args(a, b)
    assert_equal 1, a
    assert_equal 2, b
  end
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
minitest-around-0.0.3 test/around_test.rb
minitest-around-0.0.2 test/around_test.rb