rubyunit 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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 7b282fd7aea1c73823b348dba0c1490f0c524033
4
- data.tar.gz: 688fc628ab4914478f43ea9725fae391f95bf84f
3
+ metadata.gz: c824f83ef80ea854831b4903ba16e885f6984eed
4
+ data.tar.gz: 94c68d1cb3a9a2968746bc3eaee65cc252e30b0d
5
5
  SHA512:
6
- metadata.gz: 0297326918d2fe02b3698824c848fa08abc21fb868f78abc5204f405723aa9885e190ee1429242faa18676e9a9b04d194334f43d56323fa8809bb9a3d83b889e
7
- data.tar.gz: 9d5c621bd08a22bd1016ecce2a52323d29152a369f9353d16f23a330fc2be754e7072fdda1f780455c820d3fd202ab3ecc3dc661693e77524e84d30a808eabf5
6
+ metadata.gz: 6f0327fb44c3f8c3c00524c603e786526c3ef386d2e48933117a0d2d8315125b382f77a4a88d2f7037c8ff93a6c826e0f5d86ad7deba6759490a8d950f6e0153
7
+ data.tar.gz: a0acfceb8e3efc45e2195c97863785afc43fd382fb5b2a9a0ddc0e96aeb50f2a7ed73403f52ce1a64ec0e64c9263f7b30451cca225d264b94567bbf819a11904
data/README.md CHANGED
@@ -1,29 +1,10 @@
1
1
  RubyUnit
2
2
  ========
3
3
 
4
+ <!-- This isn't up yet...
5
+ * http://rubyunit.github.io/ -->
4
6
  * https://github.com/RubyUnit/RubyUnit
5
7
 
6
8
  ## Description
7
9
 
8
10
  A simple Unit Test framework for Ruby
9
-
10
- ## TODO:
11
-
12
- * Flesh out assertion list
13
- * Improve error/failure handling and reporting
14
- * Build mock object and fixture templates
15
- * Build tests for framework
16
- * Add comments to existing code
17
- * Build documentation
18
- * Build better robust data driven test functionality
19
- * Build configuration mechanism (also need to decide what is configurable)
20
- * Build code coverage reporting
21
- * Implement multi-threaded testing
22
- * Add test dependencies for test
23
-
24
- ### Ruby Gem
25
- * Get gem version from library
26
- * Update summary and description to pull a doc
27
-
28
- ### In Progress
29
- * Create Ruby Gem from unit test framework
data/example/test.rb ADDED
@@ -0,0 +1,5 @@
1
+ #!/usr/bin/env ruby
2
+
3
+ # Sample Test
4
+ require 'RubyUnit'
5
+ require_relative 'RealNumberTest'
@@ -1,3 +1,3 @@
1
1
  module RubyUnit
2
- VERSION = '0.0.1'
2
+ VERSION = '0.0.2'
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rubyunit
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
  - Matthew Clower
@@ -22,12 +22,12 @@ files:
22
22
  - README.md
23
23
  - example/RealNumber.rb
24
24
  - example/RealNumberTest.rb
25
+ - example/test.rb
25
26
  - lib/RubyUnit.rb
26
27
  - lib/RubyUnit/AssertionFailure.rb
27
28
  - lib/RubyUnit/Runner.rb
28
29
  - lib/RubyUnit/TestCase.rb
29
30
  - lib/RubyUnit/version.rb
30
- - test.rb
31
31
  homepage: http://github.com/RubyUnit/RubyUnit
32
32
  licenses:
33
33
  - LGPL
data/test.rb DELETED
@@ -1,5 +0,0 @@
1
- #!/usr/bin/env ruby
2
-
3
- # Sample Test
4
- require_relative 'RubyUnit'
5
- require_relative 'example/RealNumberTest'