22 lines
465 B
Nim
22 lines
465 B
Nim
# Task Runner Test Suite
|
|
# adapted in parts from
|
|
# Chronos Test Suite
|
|
#
|
|
# (c) Copyright 2018-Present
|
|
# Status Research & Development GmbH
|
|
#
|
|
# Licensed under either of
|
|
# Apache License, version 2.0, (LICENSE-APACHEv2)
|
|
# MIT license (LICENSE-MIT)
|
|
import unittest
|
|
|
|
import chronos
|
|
|
|
import ../task_runner
|
|
|
|
suite "Task runner test suite":
|
|
test "dummy test":
|
|
|
|
check:
|
|
1 == 1
|