citrusbyte-contest 0.0.1 → 0.0.2

Sign up to get free protection for your applications and to get access to all the features.
Files changed (4) hide show
  1. data/LICENSE +1 -1
  2. data/README.markdown +9 -1
  3. data/lib/contest.rb +2 -0
  4. metadata +1 -1
data/LICENSE CHANGED
@@ -1,4 +1,4 @@
1
- Copyright (c) 2009 Damian Janowski
1
+ Copyright (c) 2009 Damian Janowski and Michel Martens for Citrusbyte
2
2
 
3
3
  Permission is hereby granted, free of charge, to any person obtaining a copy
4
4
  of this software and associated documentation files (the "Software"), to deal
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
@@ -1,6 +1,8 @@
1
1
  require "test/unit"
2
2
 
3
3
  class Test::Unit::TestCase
4
+ def default_test; end
5
+
4
6
  def self.setup(&block)
5
7
  setup_blocks << block
6
8
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: citrusbyte-contest
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.1
4
+ version: 0.0.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Damian Janowski