Merge: tests: Test result update for `curl_http`
[nit.git] / tests / sav / nit_args6.res
1 Test program for model tools.
2
3 This program creates a fake model that can be used to test tools like:
4
5 * `nitdoc`
6 * `nitmetrics`
7 * `nitx`
8 * or others `modelbuilder`.
9
10 An image:
11
12 ![Tinks3D](../../contrib/tinks/doc/tinks3d.png)
13 # This file is part of NIT ( http://www.nitlanguage.org ).
14 #
15 # Licensed under the Apache License, Version 2.0 (the "License");
16 # you may not use this file except in compliance with the License.
17 # You may obtain a copy of the License at
18 #
19 # http://www.apache.org/licenses/LICENSE-2.0
20 #
21 # Unless required by applicable law or agreed to in writing, software
22 # distributed under the License is distributed on an "AS IS" BASIS,
23 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
24 # See the License for the specific language governing permissions and
25 # limitations under the License.
26
27 # A test program with a fake model to check model tools.
28 module test_prog
29
30 import rpg
31 import game
32
33 class Starter
34         fun start do end
35 end
36
37 var starter = new Starter
38 starter.start
39