Merge: nitrpg: Move `nitrpg` to its own repository
[nit.git] / contrib / nitrpg / src / test_helper.nit
diff --git a/contrib/nitrpg/src/test_helper.nit b/contrib/nitrpg/src/test_helper.nit
deleted file mode 100644 (file)
index d8ba14e..0000000
+++ /dev/null
@@ -1,54 +0,0 @@
-# This file is part of NIT ( http://www.nitlanguage.org ).
-#
-# Copyright 2014-2015 Alexandre Terrasa <alexandre@moz-code.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.
-
-# Test tools for NitRPG.
-module test_helper is test_suite
-
-import test_suite
-import game
-import github::cache
-
-# Used to factorize test treatments.
-abstract class NitrpgTestHelper
-       super TestSuite
-
-       # Github API client
-       var api: GithubAPI do
-               var api = new GithubAPI(get_github_oauth)
-               api.enable_cache = true
-               return api
-       end
-
-       # Mongo API client
-       var mongo = new MongoClient("mongodb://localhost:27017/")
-
-       # Load a new test database by with a name
-       fun load_db(name: String): MongoDb do return mongo.database(name)
-
-       # Load a repo by its name.
-       fun load_repo(name: String): Repo do
-               var repo = api.load_repo(name)
-               assert repo != null
-               return repo
-       end
-
-       # Load a game by its name.
-       fun load_game(name: String, db: MongoDb): Game do
-               var game = new Game(api, load_repo(name))
-               game.db_name = db.name
-               return game
-       end
-end