File tree Expand file tree Collapse file tree 7 files changed +29
-25
lines changed
Expand file tree Collapse file tree 7 files changed +29
-25
lines changed Original file line number Diff line number Diff line change 11
2- Lunit Release 0.5
2+ Lunit Release 0.6
33 ===================
44
5- Lunit is a unit testing framework for lua, written in lua.
5+ Lunitx is a unit testing framework for lua, written in lua,
6+ based heavily on Lunit 0.5, but modified to work with Lua 5.2
67
7- Lunit provides 27 assert functions, and a few misc functions
8+ Lunitx provides 27 assert functions, and a few misc functions
89for usage in an easy unit testing framework.
910
1011Lunit comes with a test suite to test itself. The testsuite
1112consists of approximately 710 assertions.
1213
1314Lunit is licensed under the MIT license.
1415
15- Lunit can downloaded from http://www.mroth.net/lunit/
16+ The original Lunit can downloaded from http://www.mroth.net/lunit/
17+
18+ The eXtended Lunit can downloaded from https://github.com/dcurrie/lunit
Original file line number Diff line number Diff line change 1- Next release :
1+ Release 0.6 :
22
33 Lunit no longer depends on lunit.sh. The script moved to the
44 extra-directory.
5+ See README.lunitx for Sam Roberts's enhancments:
6+ - fixed the -t switch for selecting only a single test
7+ - example files for using Lunit without the wrapper script
8+ Support for Lua 5.2 using lunit.module.
9+ Tests added and examples modified for lunit.module
10+ Bug fixes by Reuben Thomas, Joshua Haberman, and Ildar Mulyukov
11+ Debian packaging by Ricky Cormier
512
613Release 0.5:
714
Original file line number Diff line number Diff line change 1- Extended lunit, see README.lunitx.
2-
3- --
4-
5- This is lunit Version 0.5.
1+ This is lunitx Version 0.6, an extended version of Lunit
2+ for Lua 5.2.
63
74Lunit is a unit testing framework for lua.
85
96To learn more about lunit take a look in ANNOUNCE
10- and look in DOCUMENTATION and check example.lua.
11-
12- If you have suggestions, questions or feature request please
13- feel free to contact me.
14-
15-
16- Michael Roth <mroth@nessie.de>
7+ and look in DOCUMENTATION and check lunitx/ example files
Original file line number Diff line number Diff line change 11#! /bin/sh
22
3- # This file is part of lunit 0.5 .
3+ # This file is part of lunit 0.6 .
44#
55# For Details about lunit look at: http://www.mroth.net/lunit/
66#
@@ -45,7 +45,7 @@ while true ; do
4545 case " $1 " in
4646 -h|--help)
4747 cat << EOT
48- lunit 0.5
48+ lunit 0.6
4949Copyright (c) 2004-2009 Michael Roth <mroth@nessie.de>
5050This program comes WITHOUT WARRANTY OF ANY KIND.
5151
6868 exit ;;
6969
7070 --version)
71- echo " lunit 0.5 Copyright 2004-2009 Michael Roth <mroth@nessie.de>"
71+ echo " lunit 0.6 Copyright 2004-2009 Michael Roth <mroth@nessie.de>"
7272 exit ;;
7373
7474 -i|--interpreter)
Original file line number Diff line number Diff line change 11--[[ --------------------------------------------------------------------------
22
3- This file is part of lunit 0.5 .
3+ This file is part of lunit 0.6 .
44
55 For Details about lunit look at: http://www.mroth.net/lunit/
6+ For Details about lunitx look at: https://github.com/dcurrie/lunit
67
78 Author: Michael Roth <mroth@nessie.de>
89
910 Copyright (c) 2004, 2006-2010 Michael Roth <mroth@nessie.de>
11+ Copyright (c) 2011-2012 Doug Currie
1012
1113 Permission is hereby granted, free of charge, to any person
1214 obtaining a copy of this software and associated documentation
@@ -687,8 +689,9 @@ function main(argv)
687689 testpatterns [# testpatterns + 1 ] = arg
688690 elseif arg == " --help" or arg == " -h" then
689691 print [[
690- lunit 0.5
691- Copyright (c) 2004-2009 Michael Roth <mroth@nessie.de>
692+ lunit 0.6
693+ Copyright (c) 2004-2010 Michael Roth <mroth@nessie.de>
694+ Copyright (c) 2011-2012 Doug Currie
692695This program comes WITHOUT WARRANTY OF ANY KIND.
693696
694697Usage: lua test [OPTIONS] [--] scripts
Original file line number Diff line number Diff line change 11
22--[[ --------------------------------------------------------------------------
33
4- This file is part of lunit 0.5 .
4+ This file is part of lunit 0.6 .
55
66 For Details about lunit look at: http://www.mroth.net/lunit/
77
Original file line number Diff line number Diff line change 11
22--[[ --------------------------------------------------------------------------
33
4- This file is part of lunit 0.5 .
4+ This file is part of lunit 0.6 .
55
66 For Details about lunit look at: http://www.mroth.net/lunit/
77
You can’t perform that action at this time.
0 commit comments