tests: suppr a depreciated test
authorJean Privat <jean@pryen.org>
Tue, 16 Oct 2012 17:32:18 +0000 (13:32 -0400)
committerJean Privat <jean@pryen.org>
Wed, 17 Oct 2012 13:17:18 +0000 (09:17 -0400)
Signed-off-by: Jean Privat <jean@pryen.org>

tests/module_2.nit [deleted file]
tests/sav/module_2.sav [deleted file]
tests/sav/simple.sav [deleted file]
tests/simple.nit [deleted file]

diff --git a/tests/module_2.nit b/tests/module_2.nit
deleted file mode 100644 (file)
index e73f7f6..0000000
+++ /dev/null
@@ -1,65 +0,0 @@
-# This file is part of NIT ( http://www.nitlanguage.org ).
-#
-# Copyright 2004-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 module_1
-
-redef class A # class 3
-   redef fun a13
-   do
-          print(13)
-          print(3)
-   end
-   redef fun a123
-   do
-          print(123)
-          print(3)
-   end   
-
-   init do end
-end
-
-# B is class 4
-
-class C # class 5
-       super B
-   redef fun all25
-   do
-          print(250)
-          print(5)
-          a1
-          a12
-          a13
-          a123
-   end
-
-   init do end
-end
-
-var a = new A
-var c = new C
-a.a1
-a.a12
-a.a13
-a.a123
-print(0) 
-c.a1
-c.a12
-c.a13
-c.a123
-print(0)
-c.all2
-print(0)
-c.all25
diff --git a/tests/sav/module_2.sav b/tests/sav/module_2.sav
deleted file mode 100644 (file)
index b603ae7..0000000
+++ /dev/null
@@ -1 +0,0 @@
-Property inheritance conflict in class C for `a123': conflicting properties are defined in B, A
diff --git a/tests/sav/simple.sav b/tests/sav/simple.sav
deleted file mode 100644 (file)
index f80b714..0000000
+++ /dev/null
@@ -1,2 +0,0 @@
-53
-53
diff --git a/tests/simple.nit b/tests/simple.nit
deleted file mode 100644 (file)
index 5a36ca9..0000000
+++ /dev/null
@@ -1,34 +0,0 @@
-# This file is part of NIT ( http://www.nitlanguage.org ).
-#
-# Copyright 2004-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 module_0
-
-redef class Sys
-   var _a: Object
-   var _b: Int
-   fun printn(i: Object)
-      do
-         i.output
-      end
-   redef fun main
-      do
-         _a = 53
-         _b = 53
-         printn(_a)
-         printn(_b)
-      end   
-end
-