micro_test 0.0.6 → 0.0.7

Sign up to get free protection for your applications and to get access to all the features.
Files changed (2) hide show
  1. data/README.md +3 -2
  2. metadata +4 -4
data/README.md CHANGED
@@ -13,7 +13,7 @@ MiniTest is a step in the right direction, but still feels bigger than it should
13
13
  * __Opinionated & small__ - _only 70 lines of code_
14
14
  * __Only one assertion: `assert`__ - _since this is the heart of testing_
15
15
  * __Tests run in random order__ - _to prevent the bad practice of run order depenencies_
16
- * __Plays nice with others__ - _easy to introduce to an existing code base_
16
+ * __Plays nice with others__ - _easy to introduce to an existing codebase_
17
17
 
18
18
  ## Install
19
19
 
@@ -26,7 +26,8 @@ gem install micro_test
26
26
  * Tests subclass `MicroTest::Test`
27
27
  * Define tests with `test "description" do ...`
28
28
  * Assert statements with `assert [statement]`
29
- * Run tests with `$mt /path/to/test_file_or_dir` or `MicroTest::Runner.run` from code
29
+ * Run tests from the terminal with `$mt /path/to/test_file_or_dir` or simply `$mt`
30
+ * Run tests from Ruby with `MicroTest::Runner.run`
30
31
 
31
32
  That's all there is to learn.
32
33
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: micro_test
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.6
4
+ version: 0.0.7
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors:
@@ -11,7 +11,7 @@ bindir: bin
11
11
  cert_chain: []
12
12
  date: 2012-09-25 00:00:00.000000000 Z
13
13
  dependencies: []
14
- description: ! ' A micro testing "framework".
14
+ description: ! ' A tiny testing framework.
15
15
 
16
16
  '
17
17
  email:
@@ -24,7 +24,7 @@ files:
24
24
  - lib/micro_test.rb
25
25
  - bin/mt
26
26
  - README.md
27
- homepage: https://github.com/hopsoft/micro_test
27
+ homepage: http://hopsoft.github.com/micro_test/
28
28
  licenses:
29
29
  - MIT
30
30
  post_install_message:
@@ -48,5 +48,5 @@ rubyforge_project:
48
48
  rubygems_version: 1.8.24
49
49
  signing_key:
50
50
  specification_version: 3
51
- summary: A tiny testing script.
51
+ summary: A tiny testing framework.
52
52
  test_files: []