Created
November 7, 2009 11:13
-
-
Save agrimm/228657 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#Under ruby 1.8 in windows | |
C:\Documents and Settings\Andrew>gem list chaser | |
*** LOCAL GEMS *** | |
C:\Documents and Settings\Andrew>gem list chaser --remote | |
*** REMOTE GEMS *** | |
chaser (0.0.1) | |
C:\Documents and Settings\Andrew>gem list test-unit --remote | |
*** REMOTE GEMS *** | |
test-unit (2.0.5) | |
test-unit-ext (0.5.0) | |
test-unit-full (0.0.1) | |
test-unit-mock (0.30) | |
test-unit-runner-fox (0.0.1) | |
test-unit-runner-gtk2 (0.0.1) | |
test-unit-runner-tk (0.0.1) | |
C:\Documents and Settings\Andrew>gem install chaser | |
Successfully installed chaser-0.0.1 | |
1 gem installed | |
Installing ri documentation for chaser-0.0.1... | |
Installing RDoc documentation for chaser-0.0.1... | |
C:\Documents and Settings\Andrew>gem list chaser | |
*** LOCAL GEMS *** | |
chaser (0.0.1) | |
C:\Documents and Settings\Andrew>gem list test-unit | |
*** LOCAL GEMS *** | |
C:\Documents and Settings\Andrew> | |
#Later in that session, an example of it being used | |
C:\Documents and Settings\Andrew\Desktop\code\philosophy-dump-parser>chaser --tests test/tc_wiki_text.rb WikiText | |
Timeout set to 5 seconds. | |
Initial tests pass. Let's rumble. | |
********************************************************************** | |
*** WikiText#calculate_linked_articles loaded | |
********************************************************************** | |
The mutant didn't survive. Cool! | |
********************************************************************** | |
*** WikiText#is_redirect_syntax? loaded | |
********************************************************************** | |
The affected method didn't cause test failures. | |
********************************************************************** | |
*** WikiText#linked_articles loaded | |
********************************************************************** | |
The mutant didn't survive. Cool! | |
********************************************************************** | |
*** WikiText#parse_external_links loaded | |
********************************************************************** | |
The mutant didn't survive. Cool! | |
********************************************************************** | |
*** WikiText#parse_hatnotes loaded | |
********************************************************************** | |
The mutant didn't survive. Cool! | |
********************************************************************** | |
*** WikiText#parse_non_direct_links loaded | |
********************************************************************** | |
The mutant didn't survive. Cool! | |
********************************************************************** | |
*** WikiText#parse_nowiki loaded | |
********************************************************************** | |
The mutant didn't survive. Cool! | |
********************************************************************** | |
*** WikiText#parse_paired_tags loaded | |
********************************************************************** | |
The mutant didn't survive. Cool! | |
********************************************************************** | |
*** WikiText#parse_templates loaded | |
********************************************************************** | |
The mutant didn't survive. Cool! | |
********************************************************************** | |
*** WikiText#parse_title loaded | |
********************************************************************** | |
The mutant didn't survive. Cool! | |
********************************************************************** | |
*** WikiText#parse_unpaired_tags loaded | |
********************************************************************** | |
The mutant didn't survive. Cool! | |
********************************************************************** | |
*** WikiText#parse_wiki_text loaded | |
********************************************************************** | |
The mutant didn't survive. Cool! | |
********************************************************************** | |
*** WikiText#redirect? loaded | |
********************************************************************** | |
The affected method didn't cause test failures. | |
Chaser Results: | |
Passed : 11 | |
Failed : 2 | |
Improve the tests and try again. | |
C:\Documents and Settings\Andrew\Desktop\code\philosophy-dump-parser> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment