summary refs log tree commit diff stats
path: root/lib/pure/unittest.nim
Commit message (Expand)AuthorAgeFilesLines
* make testSetupIMPL and testTeardownIMPL non-publicfenekku2015-08-121-5/+4
* failed unittest check causes identifiers and calls to be printed outfenekku2015-08-121-10/+17
* Fix multiple requires in a testNycto2015-08-011-1/+1
* Merge pull request #3094 from fenekku/unittest-workDominik Picheta2015-07-261-13/+131
|\
| * document unittest.nim + code agreementfenekku2015-07-091-13/+131
* | Remove access modifiers from inner templatesSergey Avseyev2015-07-231-2/+2
|/
* Fixed unittest output.yglukhov2015-06-111-1/+0
* Perform lambda lifting for compile-time stuff when targeting JS. Enable unitt...yglukhov2015-05-291-5/+4
* Don't inspect typedescsFlaviu Tamas2015-05-261-6/+7
* Rename PNimrodNode to NimNodedef2015-03-171-3/+3
* Try to fix unittest for JS backend, still not workingdef2015-02-041-2/+1
* Fix named argument handlingFlaviu Tamas2015-01-161-2/+11
* Merge pull request #1876 from flaviut/unittest-stacktraceAndreas Rumpf2015-01-071-0/+1
|\
| * Make unittest.nim print stack traceFlaviu Tamas2015-01-051-0/+1
* | Merge pull request #1883 from flaviut/add-unittest-docsVarriount2015-01-051-6/+21
|\ \
| * | Add an example and remove future claimsFlaviu Tamas2015-01-051-6/+21
| |/
* / Properly use the terminal moduleFlaviu Tamas2015-01-051-0/+2
|/
* work around a regression caused by the new 'echo' implementationAraq2014-12-281-1/+3
* Removed extra line breaks from unittest output.gmpreussner2014-12-211-9/+9
* made some tests greenAraq2014-08-311-13/+13
* Nimrod renamed to NimAraq2014-08-281-1/+1
* more modules updatedAraq2014-08-281-2/+2
* big renameAraq2014-08-271-14/+17
* distinguish between 'defined' and 'declared'Araq2014-08-111-3/+3
* unittest module works againAraq2014-01-181-5/+6
* progress towards adding negative type classesZahary Karadjov2013-12-091-2/+4
* adding some provisions for writing lower-level unit tests targeting specific ...Zahary Karadjov2013-12-071-2/+6
* WA for #329, caused by #335Simon Hafner2013-02-151-1/+1
* on the path to get unittest running from JSSimon Hafner2013-02-151-12/+27
* syntax compatibility between do blocks and stmt blocksZahary Karadjov2012-10-041-6/+5
* [unittest] even deeper inspection of expressions and variables for the check ...Zahary Karadjov2012-09-141-76/+46
* [unittest] the check macro will print the values of params involved in failed...Zahary Karadjov2012-09-131-183/+211
* made some tests greenAraq2012-09-121-9/+9
* unittest bugfix; made some tests greenAraq2012-09-081-2/+2
* made tests green againAraq2012-08-311-0/+1
* next steps towards term rewriting macros; simple examples workAraq2012-08-301-1/+3
* documented hygienic templates; made tests green; fixed system.clampAraq2012-08-221-12/+13
* making tests green againZahary Karadjov2012-03-201-2/+2
* unittest module compiles againAraq2012-03-171-5/+5
* unit test for #100Zahary Karadjov2012-03-101-4/+7
* year 2012 for most copyright headersAraq2012-01-021-1/+1
* The test runner will print out encountered exceptionsZahary Karadjov2011-12-071-0/+4
* when running unit tests, the tester will print only failures using colorless ...Zahary Karadjov2011-11-101-8/+24
* Added system.program_results for controlling the exit code of the program und...Zahary Karadjov2011-11-101-11/+20
* memfiles now uses winlean; changed the interface to raise EOSAraq2011-11-051-3/+2
* small bugfixes to make more tests greenAraq2011-11-021-3/+5
* *Pimped up* the test runner with colorful outputZahary Karadjov2011-10-071-2/+6
* Cleaned up the circular dependecies and remaining issuesZahary Karadjov2011-10-071-16/+5
* Basic unit testing facilities (suites, fixtures, cases)Zahary Karadjov2011-10-071-0/+157
/a> 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756