citrusbyte-contest 0.0.1 → 0.0.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/LICENSE +1 -1
- data/README.markdown +9 -1
- data/lib/contest.rb +2 -0
- metadata +1 -1
data/LICENSE
CHANGED
data/README.markdown
CHANGED
|
@@ -47,6 +47,14 @@ are `setup`, `context` and `test`:
|
|
|
47
47
|
end
|
|
48
48
|
end
|
|
49
49
|
|
|
50
|
+
You can run it normaly, it's Test::Unit after all. If you want to run a particular test, say "yet more tests", try this:
|
|
51
|
+
|
|
52
|
+
$ testrb my_test.rb -n test_yet_more_tests
|
|
53
|
+
|
|
54
|
+
Or with a regular expression:
|
|
55
|
+
|
|
56
|
+
$ testrb my_test.rb -n /yet_more_tests/
|
|
57
|
+
|
|
50
58
|
Installation
|
|
51
59
|
------------
|
|
52
60
|
|
|
@@ -56,7 +64,7 @@ Installation
|
|
|
56
64
|
License
|
|
57
65
|
-------
|
|
58
66
|
|
|
59
|
-
Copyright (c) 2009 Damian Janowski
|
|
67
|
+
Copyright (c) 2009 Damian Janowski and Michel Martens for Citrusbyte
|
|
60
68
|
|
|
61
69
|
Permission is hereby granted, free of charge, to any person
|
|
62
70
|
obtaining a copy of this software and associated documentation
|
data/lib/contest.rb
CHANGED