ruby_tdd 0.2.0 → 0.2.1

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
  SHA256:
3
- metadata.gz: 36d5fb41863c890e387737e0d977afc44893a50d1917a174ebc604991c689f2f
4
- data.tar.gz: 4e301b225ee2c0c917bff2378fa37b5037a16351b5191ac6a6a9bd92397935fb
3
+ metadata.gz: 27ae6f9b164116fcf733974c7ca03e99ce3973a3751c6a034f4aae2f0ecee9a0
4
+ data.tar.gz: 7984879ee303c8a67392079d9b60ef69cce732552d6af4819348424c7bc4673c
5
5
  SHA512:
6
- metadata.gz: 0463e7f464260d9bb884b86d20936717425fe80ce2febfccb610636386bb4e8dfdefd8d0d2a5a86dda080f93f7afca2b3814ca3c6986239528d8758e60a137f0
7
- data.tar.gz: 5c31ed157453b4011f68a2b6ed61f2ad80e4f7de32fd3cb5c4b0c31714b7255e53b38dd3ff1f85eab17aabc9ac11e5e26498f70c2d53ddd4e55e7eedbb2aa812
6
+ metadata.gz: e02a560693e9f5d6096e10824f01bfbe5374757c58d55d9d078bfccc349dd102d815660b7377b82df787096ab5879eaa0b046db476cdd3749526d2bdd46fcd76
7
+ data.tar.gz: 9c100687ce43d5867bd94e86a24d977f35fd8242341d2a348c4fcc352c1d97a17dae0b2e138f3f50152aa437d600c12bfc7cb3dacb500aaa5d76de2d8db291f6
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- ruby_tdd (0.2.0)
4
+ ruby_tdd (0.2.1)
5
5
 
6
6
  GEM
7
7
  remote: https://rubygems.org/
data/lib/ruby_tdd/run.rb CHANGED
@@ -1,3 +1,3 @@
1
1
  require_relative '../ruby_tdd'
2
2
 
3
- TestWatch.new(Dir.pwd + '/lib', Dir.pwd + '/tests/')
3
+ TestWatch.new(Dir.pwd + '/', Dir.pwd + '/tests/')
@@ -1,3 +1,3 @@
1
1
  module RubyTdd
2
- VERSION = "0.2.0"
2
+ VERSION = "0.2.1"
3
3
  end
data/tests/second.test.rb CHANGED
@@ -2,4 +2,8 @@ require './lib/ruby_tdd'
2
2
 
3
3
  test_case('second test', Proc.new {
4
4
  2 == 2
5
+ })
6
+
7
+ test_case('...and third', Proc.new {
8
+ 3 == 3
5
9
  })
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: ruby_tdd
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.0
4
+ version: 0.2.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - August Alexandersson