dust 0.1.4 → 0.1.6

Sign up to get free protection for your applications and to get access to all the features.
data/README CHANGED
@@ -16,16 +16,20 @@ You may use, copy and redistribute this library under the same terms as Ruby its
16
16
 
17
17
  == Examples
18
18
 
19
- unit_tests do
19
+ unit_tests do
20
20
 
21
- test "assert true" do
22
- assert_equal true, true
23
- end
21
+ test "assert true" do
22
+ assert_equal true, true
23
+ end
24
24
 
25
- end
25
+ end
26
26
 
27
27
  See the tests for more examples
28
28
 
29
+ == IDE specific files
30
+
31
+ You can download TextMate and JEdit Run Focused Test Commands from http://rubyforge.org/projects/dust/ (in Files)
32
+
29
33
  == Contributors
30
34
 
31
- Dan Manges
35
+ Dan Manges, David Vollbracht, Shane Harvie
@@ -1,3 +1,4 @@
1
+ require 'test/unit'
1
2
  require File.expand_path(File.dirname(__FILE__) + '/object_extension')
2
3
  require File.expand_path(File.dirname(__FILE__) + '/array_extension')
3
4
  require File.expand_path(File.dirname(__FILE__) + '/nil_extension')
@@ -16,7 +16,7 @@ class Object
16
16
  do_tests("Units", options, &block)
17
17
  end
18
18
 
19
- # call-seq: unit_tests(options={}, &block)
19
+ # call-seq: functional_tests(options={}, &block)
20
20
  #
21
21
  # Used to define a block of functional tests.
22
22
  #
@@ -28,7 +28,7 @@ Gem::manage_gems
28
28
  specification = Gem::Specification.new do |s|
29
29
  s.name = "dust"
30
30
  s.summary = "Dust is an add on for Test::Unit that allows an alternative test definintion syntax."
31
- s.version = "0.1.4"
31
+ s.version = "0.1.6"
32
32
  s.author = 'Jay Fields'
33
33
  s.description = "Dust is an add on for Test::Unit that allows an alternative test definintion syntax."
34
34
  s.email = 'dust-developer@rubyforge.org'
@@ -1,2 +1 @@
1
- require 'test/unit'
2
1
  require File.dirname(__FILE__) + '/../lib/dust'
metadata CHANGED
@@ -3,8 +3,8 @@ rubygems_version: 0.9.2
3
3
  specification_version: 1
4
4
  name: dust
5
5
  version: !ruby/object:Gem::Version
6
- version: 0.1.4
7
- date: 2007-08-17 00:00:00 -04:00
6
+ version: 0.1.6
7
+ date: 2007-11-04 00:00:00 -04:00
8
8
  summary: Dust is an add on for Test::Unit that allows an alternative test definintion syntax.
9
9
  require_paths:
10
10
  - lib