Recently in minitest Category

minitest/unit is a small and fast replacement for ruby's huge and slow test/unit. This is meant to be clean and easy to use both as a regular test writer and for language implementors that need a minimal set of methods to bootstrap a working unit test suite.

mini/spec is a functionally complete spec engine.

mini/mock, by Steven Baker, is a beautifully tiny mock object framework.

(This package was called miniunit once upon a time)

Changes:

1.7.1 / 2010-09-01

minitest/unit is a small and fast replacement for ruby's huge and slow test/unit. This is meant to be clean and easy to use both as a regular test writer and for language implementors that need a minimal set of methods to bootstrap a working unit test suite.

mini/spec is a functionally complete spec engine.

mini/mock, by Steven Baker, is a beautifully tiny mock object framework.

(This package was called miniunit once upon a time)

Changes:

1.7.0 / 2010-07-15

  • 5 minor enhancements:

    • Added assertoutput (mapped to mustoutput).
    • Added assertsilent (mapped to mustbe_silent).
    • Added examples to readme (Mike Dalessio)
    • Added options output at the top of the run, for fatal run debugging (tenderlove)
    • Spec's describe method returns created class
  • http://rubyforge.org/projects/bfts

minitest/unit is a small and fast replacement for ruby's huge and slow test/unit. This is meant to be clean and easy to use both as a regular test writer and for language implementors that need a minimal set of methods to bootstrap a working unit test suite.

mini/spec is a functionally complete spec engine.

mini/mock, by Steven Baker, is a beautifully tiny mock object framework.

(This package was called miniunit once upon a time)

Changes:

1.6.0 / 2010-03-27

  • 10 minor enhancements:

    • Added --seed argument so you can reproduce a random order for debugging.
    • Added documentation for assertions
    • Added more rdoc and tons of :nodoc:
    • Added output to give you all the options you need to reproduce that run.
    • Added proper argument parsing to minitest.
    • Added unique serial # to spec names so order can be preserved (needs tests). (phrogz)
    • Empty 'it' fails with default msg. (phrogz)
    • Remove previous method on expect to remove 1.9 warnings
    • Spec#it is now order-proof wrt subclasses/nested describes.
    • assert_same error message now reports in decimal, eg: oid=123. (mattkent)
  • 2 bug fixes:

    • Fixed message on refutesame to be consistent with assertsame.
    • Fixed method randomization to be stable for testing.
  • http://rubyforge.org/projects/bfts

minitest/unit is a small and fast replacement for ruby's huge and slow test/unit. This is meant to be clean and easy to use both as a regular test writer and for language implementors that need a minimal set of methods to bootstrap a working unit test suite.

mini/spec is a functionally complete spec engine.

mini/mock, by Steven Baker, is a beautifully tiny mock object framework.

(This package was called miniunit once upon a time)

Changes:

1.5.0 / 2010-01-06

  • 4 minor enhancements:

    • Added ability to specify what assertions should have their args flipped.
    • Don't flip arguments on *include and *respond_to assertions.
    • Refactored Module.infectanassertion from Module.infectwithassertions.
    • before/after :all now bitches and acts like :each
  • 3 bug fixes:

    • Nested describes now map to nested test classes to avoid namespace collision.
    • Using undefmethod instead of removemethod to clean out inherited specs.
    • assert_raises was ignoring passed in message.
  • http://rubyforge.org/projects/bfts

minitest/unit is a small and fast replacement for ruby's huge and slow test/unit. This is meant to be clean and easy to use both as a regular test writer and for language implementors that need a minimal set of methods to bootstrap a working unit test suite.

mini/spec is a functionally complete spec engine.

mini/mock, by Steven Baker, is a beautifully tiny mock object framework.

(This package was called miniunit once upon a time)

Changes:

1.4.2 / 2009-06-25

minitest/unit is a small and fast replacement for ruby's huge and slow test/unit. This is meant to be clean and easy to use both as a regular test writer and for language implementors that need a minimal set of methods to bootstrap a working unit test suite.

mini/spec is a functionally complete spec engine.

mini/mock, by Steven Baker, is a beautifully tiny mock object framework.

(This package was called miniunit once upon a time)

Changes:

1.4.1 / 2009-06-23

  • 1 major enhancement:

    • Handle ^C and other fatal exceptions by failing
  • 1 minor enhancement:

    • Added something to catch mixed use of test/unit and minitest if $DEBUG
  • 1 bug fix:

    • Added SIGINFO handler for finding slow tests without verbose
  • http://rubyforge.org/projects/bfts

minitest/unit is a small and fast replacement for ruby's huge and slow test/unit. This is meant to be clean and easy to use both as a regular test writer and for language implementors that need a minimal set of methods to bootstrap a working unit test suite.

mini/spec is a functionally complete spec engine.

mini/mock, by Steven Baker, is a beautifully tiny mock object framework.

(This package was called miniunit once upon a time)

Changes:

1.4.1 / 2009-06-23

  • 1 major enhancement:

    • Handle ^C and other fatal exceptions by failing
  • 1 minor enhancement:

    • Added something to catch mixed use of test/unit and minitest if $DEBUG
  • 1 bug fix:

    • Added SIGINFO handler for finding slow tests without verbose
  • http://rubyforge.org/projects/bfts

minitest/unit is a small and fast replacement for ruby's huge and slow test/unit. This is meant to be clean and easy to use both as a regular test writer and for language implementors that need a minimal set of methods to bootstrap a working unit test suite.

mini/spec is a functionally complete spec engine.

mini/mock, by Steven Baker, is a beautifully tiny mock object framework.

(This package was called miniunit once upon a time)

Changes:

1.4.0 / 2009-06-18

  • 5 minor enhancement:

    • Added clarification doco.
    • Added specs and mocks to autorun.
    • Changed spec test class creation to be non-destructive.
    • Updated rakefile for new hoe capabilities.
    • describes are nestable (via subclass). before/after/def inherits, specs don't.
  • 3 bug fixes:

    • Fixed location on must/wont.
    • Switched to __name__ to avoid common ivar name.
    • Fixed indentation in test file (1.9).
  • http://rubyforge.org/projects/bfts

minitest/unit is a small and fast replacement for ruby's huge and slow test/unit. This is meant to be clean and easy to use both as a regular test writer and for language implementors that need a minimal set of methods to bootstrap a working unit test suite.

mini/spec is a functionally complete spec engine.

mini/mock, by Steven Baker, is a beautifully tiny mock object framework.

(This package was called miniunit once upon a time)

Changes:

1.3.1 / 2009-01-20

  • 1 minor enhancement:

    • Added miniunit/autorun.rb as replacement for test/unit.rb's autorun.
  • 16 bug fixes:

    • 1.9 test fixes.
    • Bug fixes from nobu and akira for really odd scenarios. They run ruby funny.
    • Fixed (assert|refute)_match's argument order.
    • Fixed LocalJumpError in autorun if exception thrown before at_exit.
    • Fixed assertindelta (should be >=, not >).
    • Fixed assert_raises to match Modules.
    • Fixed capture_io to not dup IOs.
    • Fixed indentation of capture_io for ruby 1.9 warning.
    • Fixed location to deal better with custom assertions and load paths. (Yuki)
    • Fixed order of (must|wont)_include in MiniTest::Spec.
    • Fixed skip's backtrace.
    • Got arg order wrong in *_match in tests, message wrong as a result.
    • Made describe private. For some reason I thought that an attribute of Kernel.
    • Removed disable_autorun method, added autorun.rb instead.
    • assert_match escapes if passed string for pattern.
    • instanceof? is different from ===, use instanceof.
  • http://rubyforge.org/projects/bfts

minitestteshim bridges the gap between the small and fast minitest and ruby's huge and slow test/unit.

Changes:

1.3.0 / 2008-10-09

About this Archive

This page is a archive of recent entries in the minitest category.

hoe is the previous category.

rubyforge is the next category.

Find recent content on the main index or look in the archives to find all content.

Pages

Powered by Movable Type 4.32-en