Merge remote-tracking branch 'upstream/master' into init_auto
[nit.git] / tests / test_nitunit4 / test_nitunit4_base.nit
index af21e73..3fe9e16 100644 (file)
 # See the License for the specific language governing permissions and
 # limitations under the License.
 
-module test_nitunit4_base is test_suite
-
-import test_suite
+module test_nitunit4_base
 
 class SuperTestSuite
-       super TestSuite
 
        var before = false
 
-       redef fun before_test do
+       fun before_test is before do
                print "Before Test"
                before = true
        end
 
-       redef fun after_test do
+       fun after_test is after do
                print "After Test"
                assert before
        end