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 +4 -4
- data/README.md +2 -21
- data/example/test.rb +5 -0
- data/lib/RubyUnit/version.rb +1 -1
- metadata +2 -2
- data/test.rb +0 -5
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: c824f83ef80ea854831b4903ba16e885f6984eed
|
4
|
+
data.tar.gz: 94c68d1cb3a9a2968746bc3eaee65cc252e30b0d
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
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
data/lib/RubyUnit/version.rb
CHANGED
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.
|
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
|