tests: remove deprecated test base_attr_def
authorJean Privat <jean@pryen.org>
Mon, 23 Nov 2015 16:30:06 +0000 (11:30 -0500)
committerJean Privat <jean@pryen.org>
Mon, 23 Nov 2015 16:30:06 +0000 (11:30 -0500)
Signed-off-by: Jean Privat <jean@pryen.org>

tests/base_attr_def.nit [deleted file]
tests/sav/base_attr_def.res [deleted file]

diff --git a/tests/base_attr_def.nit b/tests/base_attr_def.nit
deleted file mode 100644 (file)
index ecab175..0000000
+++ /dev/null
@@ -1,65 +0,0 @@
-# This file is part of NIT ( http://www.nitlanguage.org ).
-#
-# Copyright 2005-2008 Jean Privat <jean@pryen.org>
-#
-# 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 (file)
index 66b1ef1..0000000
+++ /dev/null
@@ -1,5 +0,0 @@
-1
-2
-10
-20
-30