From: Jean Privat Date: Mon, 23 Nov 2015 16:30:06 +0000 (-0500) Subject: tests: remove deprecated test base_attr_def X-Git-Tag: v0.8~80^2~2 X-Git-Url: http://nitlanguage.org tests: remove deprecated test base_attr_def Signed-off-by: Jean Privat --- diff --git a/tests/base_attr_def.nit b/tests/base_attr_def.nit deleted file mode 100644 index ecab175..0000000 --- a/tests/base_attr_def.nit +++ /dev/null @@ -1,65 +0,0 @@ -# This file is part of NIT ( http://www.nitlanguage.org ). -# -# Copyright 2005-2008 Jean Privat -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - -import end - -interface Object -end - -class Int - fun output is intern -end - -class Foo - var a1: Int - var a2: Int - fun run - do - a1.output - a2.output - end - - init is - old_style_init - do - a1 = 1 - a2 = 2 - end -end - -class Bar - super Foo - var a3: Int - redef fun run - do - a1.output - a2.output - a3.output - end - - init is - old_style_init - do - a1 = 10 - a2 = 20 - a3 = 30 - end -end - -var f = new Foo -var b = new Bar -f.run -b.run diff --git a/tests/sav/base_attr_def.res b/tests/sav/base_attr_def.res deleted file mode 100644 index 66b1ef1..0000000 --- a/tests/sav/base_attr_def.res +++ /dev/null @@ -1,5 +0,0 @@ -1 -2 -10 -20 -30