From 4ff1fccd95614f6eb64374883455e1116f49f954 Mon Sep 17 00:00:00 2001 From: Jean Privat Date: Mon, 23 Nov 2015 11:30:06 -0500 Subject: [PATCH 1/1] tests: remove deprecated test base_attr_def Signed-off-by: Jean Privat --- tests/base_attr_def.nit | 65 ------------------------------------------- tests/sav/base_attr_def.res | 5 ---- 2 files changed, 70 deletions(-) delete mode 100644 tests/base_attr_def.nit delete mode 100644 tests/sav/base_attr_def.res 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 -- 1.7.9.5