summary refs log tree commit diff stats
path: root/tests/niminaction
Commit message (Expand)AuthorAgeFilesLines
* use lowercase --define switches (#17283)flywind2021-03-071-3/+3
* `--nilseqs` is now a deprecated noop (#17211)Timothee Cour2021-03-013-5/+5
* use doAssert in tests (#16486)flywind2020-12-281-13/+13
* Remove deprecated stuff from stdlib (#14699)Miran2020-06-173-4/+4
* Set cincludes and clibdir for FreeBSD, OpenBSD and NetBSD. (#14680)Euan2020-06-161-3/+0
* update tests that tested for the 'discard' error messagesAraq2020-05-022-2/+2
* Error -> Defect for defects (#13908)Jacek Sieka2020-04-282-3/+3
* Fix #14088 and #14089 on NetBSD (#14104)Euan2020-04-242-1/+2
* #12103 - CI for OpenBSD (#12105)Euan2020-04-211-0/+1
* #12103 - CI for FreeBSD (#12179)Euan2019-11-291-0/+1
* remove deprecated procs (#12535)Andreas Rumpf2019-11-059-14/+14
* #12141 Define SDL lib name for OpenBSD and FreeBSD (#12143)Euan2019-09-061-1/+5
* fix sdl_test test that failed in CI cpp mode (#10314)Timothee Cour2019-01-151-6/+18
* lots of small changesArne Döring2018-12-119-9/+9
* require errormsg to be specified before file.Arne Döring2018-12-115-12/+12
* fix for nimInActionArne Döring2018-11-2315-18/+76
* Adds smaller code samples from Chapters 1-3 to the tester.Dominik Picheta2018-06-1710-0/+605
* enable unguarded_access testAndreas Rumpf2017-10-021-0/+5
* attempt to make appveyor green againAndreas Rumpf2017-10-021-0/+4
* Add tests for examples from Nim in Action.Dominik Picheta2017-10-0133-0/+1169
__author__ = __maintainer__ = 'Roman Zimbelmann' __email__ = 'hut@hut.pm' # Constants RANGERDIR = os.path.dirname(__file__) TICKS_BEFORE_COLLECTING_GARBAGE = 100 TIME_BEFORE_FILE_BECOMES_GARBAGE = 1200 MAX_RESTORABLE_TABS = 3 MACRO_DELIMITER = '%' MACRO_DELIMITER_ESC = '%%' DEFAULT_PAGER = 'less' USAGE = '%prog [options] [path]' VERSION = 'ranger-master {0}'.format(__version__) # These variables are ignored if the corresponding # XDG environment variable is non-empty and absolute CACHEDIR = os.path.expanduser('~/.cache/ranger') CONFDIR = os.path.expanduser('~/.config/ranger') DATADIR = os.path.expanduser('~/.local/share/ranger') args = None # pylint: disable=invalid-name from ranger.core.main import main # NOQA pylint: disable=wrong-import-position