X-Git-Url: http://nitlanguage.org diff --git a/tests/test_nitunit7.nit b/tests/test_nitunit7.nit index 63f47ea..3c79772 100644 --- a/tests/test_nitunit7.nit +++ b/tests/test_nitunit7.nit @@ -12,22 +12,20 @@ # See the License for the specific language governing permissions and # limitations under the License. -module test_nitunit7 is test_suite - -import test_suite +module test_nitunit7 is test class TestNitunit7 - super TestSuite + test - fun test_foo do + fun test_foo is test do assert true end end -redef fun before_module do +fun before_module is before_all do assert true end -redef fun after_module do +fun after_module is after_all do assert false end