Skip to content

Instantly share code, notes, and snippets.

@rberger
Created December 6, 2013 07:13
Show Gist options
  • Save rberger/7819800 to your computer and use it in GitHub Desktop.
Save rberger/7819800 to your computer and use it in GitHub Desktop.
Failure when trying to run tests for thor-scmversion
➜ thor-scmversion git:(267fbf1) ✗ rake spec
/Users/rberger/.rvm/rubies/ruby-1.9.3-p429/bin/ruby -S rspec ./spec/lib/thor-scmversion/git_version_spec.rb ./spec/lib/thor-scmversion/prerelease_spec.rb ./spec/lib/thor-scmversion/scm_version_spec.rb
You are using WebMock 1.16.0. VCR 2.8.0 has been tested against WebMock >= 1.8.0, < 1.16, and you are using a newer version. If you experience VCR issues, consider downgrading WebMock as it may fix it.
Run options: include {:focus=>true}
All examples were filtered out; ignoring {:focus=>true}
........*.......................FFFFFFFF.........Unicode clients require a unicode enabled server.
FUnicode clients require a unicode enabled server.
FUnicode clients require a unicode enabled server.
FUnicode clients require a unicode enabled server.
FUnicode clients require a unicode enabled server.
FUnicode clients require a unicode enabled server.
FUnicode clients require a unicode enabled server.
FUnicode clients require a unicode enabled server.
FUnicode clients require a unicode enabled server.
FUnicode clients require a unicode enabled server.
FUnicode clients require a unicode enabled server.
FUnicode clients require a unicode enabled server.
FUnicode clients require a unicode enabled server.
FUnicode clients require a unicode enabled server.
FUnicode clients require a unicode enabled server.
FUnicode clients require a unicode enabled server.
FUnicode clients require a unicode enabled server.
FUnicode clients require a unicode enabled server.
FUnicode clients require a unicode enabled server.
FUnicode clients require a unicode enabled server.
F
Pending:
ThorSCMVersion::Prerelease#method_missing
# Figure out why this doesn't work. Works in irb.
# ./spec/lib/thor-scmversion/prerelease_spec.rb:25
Failures:
1) ThorSCMVersion::GitVersion behaves like scmversion #bump! should bump minor
Failure/Error: subject.bump!(:minor).to_s.should == '1.3.0'
RuntimeError:
Version: 1.3.3-beta.3+build.2 is less than or equal to the existing version.
Shared Example Group: "scmversion" called from ./spec/lib/thor-scmversion/scm_version_spec.rb:101
# ./lib/thor-scmversion/scm_version.rb:103:in `bump!'
# ./spec/lib/thor-scmversion/scm_version_spec.rb:26:in `block (4 levels) in <module:ThorSCMVersion>'
2) ThorSCMVersion::GitVersion behaves like scmversion #bump! should bump patch
Failure/Error: subject.bump!(:patch).to_s.should == '1.2.4'
RuntimeError:
Version: 1.2.4-beta.3+build.2 is less than or equal to the existing version.
Shared Example Group: "scmversion" called from ./spec/lib/thor-scmversion/scm_version_spec.rb:101
# ./lib/thor-scmversion/scm_version.rb:103:in `bump!'
# ./spec/lib/thor-scmversion/scm_version_spec.rb:29:in `block (4 levels) in <module:ThorSCMVersion>'
3) ThorSCMVersion::GitVersion behaves like scmversion #bump! should bump build
Failure/Error: subject.bump!(:build).to_s.should == '1.2.3-beta.3+build.3'
RuntimeError:
Version: 1.2.3-beta.3+build.3 is less than or equal to the existing version.
Shared Example Group: "scmversion" called from ./spec/lib/thor-scmversion/scm_version_spec.rb:101
# ./lib/thor-scmversion/scm_version.rb:103:in `bump!'
# ./spec/lib/thor-scmversion/scm_version_spec.rb:57:in `block (4 levels) in <module:ThorSCMVersion>'
4) ThorSCMVersion::GitVersion behaves like scmversion #bump! should bump auto should respect a default level of bump
Failure/Error: subject.bump!(:auto, default: :patch).to_s.should == '1.2.4'
RuntimeError:
Version: 1.2.4-beta.3+build.2 is less than or equal to the existing version.
Shared Example Group: "scmversion" called from ./spec/lib/thor-scmversion/scm_version_spec.rb:101
# ./lib/thor-scmversion/scm_version.rb:103:in `bump!'
# ./lib/thor-scmversion/git_version.rb:50:in `auto_bump'
# ./lib/thor-scmversion/scm_version.rb:79:in `bump!'
# ./spec/lib/thor-scmversion/scm_version_spec.rb:33:in `block (5 levels) in <module:ThorSCMVersion>'
5) ThorSCMVersion::GitVersion behaves like scmversion #bump! should bump prerelease with explicit type
Failure/Error: subject.bump!(:prerelease, prerelease_type: 'someth').to_s.should == '1.2.3-someth.1'
RuntimeError:
Version: 1.2.3-someth.1+build.2 is less than or equal to the existing version.
Shared Example Group: "scmversion" called from ./spec/lib/thor-scmversion/scm_version_spec.rb:101
# ./lib/thor-scmversion/scm_version.rb:103:in `bump!'
# ./spec/lib/thor-scmversion/scm_version_spec.rb:39:in `block (6 levels) in <module:ThorSCMVersion>'
6) ThorSCMVersion::GitVersion behaves like scmversion #bump! should bump prerelease with explicit type with no prerelease on previous version
Failure/Error: subject.bump!(:prerelease, prerelease_type: 'someth').to_s.should == '1.2.4-someth.1'
RuntimeError:
Version: 1.2.4-someth.1+build.2 is less than or equal to the existing version.
Shared Example Group: "scmversion" called from ./spec/lib/thor-scmversion/scm_version_spec.rb:101
# ./lib/thor-scmversion/scm_version.rb:103:in `bump!'
# ./spec/lib/thor-scmversion/scm_version_spec.rb:43:in `block (6 levels) in <module:ThorSCMVersion>'
7) ThorSCMVersion::GitVersion behaves like scmversion #bump! should bump prerelease with default type
Failure/Error: subject.bump!(:prerelease).to_s.should == '1.2.3-beta.4'
RuntimeError:
Version: 1.2.3-beta.4+build.2 is less than or equal to the existing version.
Shared Example Group: "scmversion" called from ./spec/lib/thor-scmversion/scm_version_spec.rb:101
# ./lib/thor-scmversion/scm_version.rb:103:in `bump!'
# ./spec/lib/thor-scmversion/scm_version_spec.rb:48:in `block (6 levels) in <module:ThorSCMVersion>'
8) ThorSCMVersion::GitVersion behaves like scmversion #bump! should bump prerelease with default type with no prerelease on previous version
Failure/Error: subject.bump!(:prerelease).to_s.should == '1.2.4-alpha.1'
RuntimeError:
Version: 1.2.4-alpha.1+build.2 is less than or equal to the existing version.
Shared Example Group: "scmversion" called from ./spec/lib/thor-scmversion/scm_version_spec.rb:101
# ./lib/thor-scmversion/scm_version.rb:103:in `bump!'
# ./spec/lib/thor-scmversion/scm_version_spec.rb:52:in `block (6 levels) in <module:ThorSCMVersion>'
9) ThorSCMVersion::P4Version behaves like scmversion should take major minor and patch segments on initialization
Failure/Error: described_class.new('1', '2', '3').to_s.should == '1.2.3'
NoMethodError:
undefined method `gsub' for nil:NilClass
Shared Example Group: "scmversion" called from ./spec/lib/thor-scmversion/scm_version_spec.rb:123
# ./lib/thor-scmversion/p4_version.rb:76:in `depot_path'
# ./lib/thor-scmversion/p4_version.rb:93:in `initialize'
# ./spec/lib/thor-scmversion/scm_version_spec.rb:6:in `new'
# ./spec/lib/thor-scmversion/scm_version_spec.rb:6:in `block (2 levels) in <module:ThorSCMVersion>'
10) ThorSCMVersion::P4Version behaves like scmversion should optionally take a prerelease
Failure/Error: described_class.new('1', '2', '3', Prerelease.new('alpha', 1)).to_s.should == '1.2.3-alpha.1'
NoMethodError:
undefined method `gsub' for nil:NilClass
Shared Example Group: "scmversion" called from ./spec/lib/thor-scmversion/scm_version_spec.rb:123
# ./lib/thor-scmversion/p4_version.rb:76:in `depot_path'
# ./lib/thor-scmversion/p4_version.rb:93:in `initialize'
# ./spec/lib/thor-scmversion/scm_version_spec.rb:9:in `new'
# ./spec/lib/thor-scmversion/scm_version_spec.rb:9:in `block (2 levels) in <module:ThorSCMVersion>'
11) ThorSCMVersion::P4Version behaves like scmversion should take a build number
Failure/Error: described_class.new('1', '2', '3', nil, '2').to_s.should == '1.2.3+build.2'
NoMethodError:
undefined method `gsub' for nil:NilClass
Shared Example Group: "scmversion" called from ./spec/lib/thor-scmversion/scm_version_spec.rb:123
# ./lib/thor-scmversion/p4_version.rb:76:in `depot_path'
# ./lib/thor-scmversion/p4_version.rb:93:in `initialize'
# ./spec/lib/thor-scmversion/scm_version_spec.rb:13:in `new'
# ./spec/lib/thor-scmversion/scm_version_spec.rb:13:in `block (3 levels) in <module:ThorSCMVersion>'
12) ThorSCMVersion::P4Version behaves like scmversion should take a build number and a prerelease
Failure/Error: described_class.new('1', '2', '3', Prerelease.new('beta', 3), '2').to_s.should == '1.2.3-beta.3+build.2'
NoMethodError:
undefined method `gsub' for nil:NilClass
Shared Example Group: "scmversion" called from ./spec/lib/thor-scmversion/scm_version_spec.rb:123
# ./lib/thor-scmversion/p4_version.rb:76:in `depot_path'
# ./lib/thor-scmversion/p4_version.rb:93:in `initialize'
# ./spec/lib/thor-scmversion/scm_version_spec.rb:16:in `new'
# ./spec/lib/thor-scmversion/scm_version_spec.rb:16:in `block (3 levels) in <module:ThorSCMVersion>'
13) ThorSCMVersion::P4Version behaves like scmversion #bump! should bump major
Failure/Error: subject { described_class.new('1', '2', '3', Prerelease.new('beta', 3), '2') }
NoMethodError:
undefined method `gsub' for nil:NilClass
Shared Example Group: "scmversion" called from ./spec/lib/thor-scmversion/scm_version_spec.rb:123
# ./lib/thor-scmversion/p4_version.rb:76:in `depot_path'
# ./lib/thor-scmversion/p4_version.rb:93:in `initialize'
# ./spec/lib/thor-scmversion/scm_version_spec.rb:20:in `new'
# ./spec/lib/thor-scmversion/scm_version_spec.rb:20:in `block (3 levels) in <module:ThorSCMVersion>'
# ./spec/lib/thor-scmversion/scm_version_spec.rb:23:in `block (4 levels) in <module:ThorSCMVersion>'
14) ThorSCMVersion::P4Version behaves like scmversion #bump! should bump minor
Failure/Error: subject { described_class.new('1', '2', '3', Prerelease.new('beta', 3), '2') }
NoMethodError:
undefined method `gsub' for nil:NilClass
Shared Example Group: "scmversion" called from ./spec/lib/thor-scmversion/scm_version_spec.rb:123
# ./lib/thor-scmversion/p4_version.rb:76:in `depot_path'
# ./lib/thor-scmversion/p4_version.rb:93:in `initialize'
# ./spec/lib/thor-scmversion/scm_version_spec.rb:20:in `new'
# ./spec/lib/thor-scmversion/scm_version_spec.rb:20:in `block (3 levels) in <module:ThorSCMVersion>'
# ./spec/lib/thor-scmversion/scm_version_spec.rb:26:in `block (4 levels) in <module:ThorSCMVersion>'
15) ThorSCMVersion::P4Version behaves like scmversion #bump! should bump patch
Failure/Error: subject { described_class.new('1', '2', '3', Prerelease.new('beta', 3), '2') }
NoMethodError:
undefined method `gsub' for nil:NilClass
Shared Example Group: "scmversion" called from ./spec/lib/thor-scmversion/scm_version_spec.rb:123
# ./lib/thor-scmversion/p4_version.rb:76:in `depot_path'
# ./lib/thor-scmversion/p4_version.rb:93:in `initialize'
# ./spec/lib/thor-scmversion/scm_version_spec.rb:20:in `new'
# ./spec/lib/thor-scmversion/scm_version_spec.rb:20:in `block (3 levels) in <module:ThorSCMVersion>'
# ./spec/lib/thor-scmversion/scm_version_spec.rb:29:in `block (4 levels) in <module:ThorSCMVersion>'
16) ThorSCMVersion::P4Version behaves like scmversion #bump! should bump build
Failure/Error: subject { described_class.new('1', '2', '3', Prerelease.new('beta', 3), '2') }
NoMethodError:
undefined method `gsub' for nil:NilClass
Shared Example Group: "scmversion" called from ./spec/lib/thor-scmversion/scm_version_spec.rb:123
# ./lib/thor-scmversion/p4_version.rb:76:in `depot_path'
# ./lib/thor-scmversion/p4_version.rb:93:in `initialize'
# ./spec/lib/thor-scmversion/scm_version_spec.rb:20:in `new'
# ./spec/lib/thor-scmversion/scm_version_spec.rb:20:in `block (3 levels) in <module:ThorSCMVersion>'
# ./spec/lib/thor-scmversion/scm_version_spec.rb:57:in `block (4 levels) in <module:ThorSCMVersion>'
17) ThorSCMVersion::P4Version behaves like scmversion #bump! should bump auto should respect a default level of bump
Failure/Error: subject { described_class.new('1', '2', '3', Prerelease.new('beta', 3), '2') }
NoMethodError:
undefined method `gsub' for nil:NilClass
Shared Example Group: "scmversion" called from ./spec/lib/thor-scmversion/scm_version_spec.rb:123
# ./lib/thor-scmversion/p4_version.rb:76:in `depot_path'
# ./lib/thor-scmversion/p4_version.rb:93:in `initialize'
# ./spec/lib/thor-scmversion/scm_version_spec.rb:20:in `new'
# ./spec/lib/thor-scmversion/scm_version_spec.rb:20:in `block (3 levels) in <module:ThorSCMVersion>'
# ./spec/lib/thor-scmversion/scm_version_spec.rb:33:in `block (5 levels) in <module:ThorSCMVersion>'
18) ThorSCMVersion::P4Version behaves like scmversion #bump! should bump prerelease with explicit type
Failure/Error: subject { described_class.new('1', '2', '3', Prerelease.new('beta', 3), '2') }
NoMethodError:
undefined method `gsub' for nil:NilClass
Shared Example Group: "scmversion" called from ./spec/lib/thor-scmversion/scm_version_spec.rb:123
# ./lib/thor-scmversion/p4_version.rb:76:in `depot_path'
# ./lib/thor-scmversion/p4_version.rb:93:in `initialize'
# ./spec/lib/thor-scmversion/scm_version_spec.rb:20:in `new'
# ./spec/lib/thor-scmversion/scm_version_spec.rb:20:in `block (3 levels) in <module:ThorSCMVersion>'
# ./spec/lib/thor-scmversion/scm_version_spec.rb:39:in `block (6 levels) in <module:ThorSCMVersion>'
19) ThorSCMVersion::P4Version behaves like scmversion #bump! should bump prerelease with explicit type with no prerelease on previous version
Failure/Error: subject { described_class.new('1', '2', '3', Prerelease.new('beta', 3), '2') }
NoMethodError:
undefined method `gsub' for nil:NilClass
Shared Example Group: "scmversion" called from ./spec/lib/thor-scmversion/scm_version_spec.rb:123
# ./lib/thor-scmversion/p4_version.rb:76:in `depot_path'
# ./lib/thor-scmversion/p4_version.rb:93:in `initialize'
# ./spec/lib/thor-scmversion/scm_version_spec.rb:20:in `new'
# ./spec/lib/thor-scmversion/scm_version_spec.rb:20:in `block (3 levels) in <module:ThorSCMVersion>'
# ./spec/lib/thor-scmversion/scm_version_spec.rb:42:in `block (6 levels) in <module:ThorSCMVersion>'
20) ThorSCMVersion::P4Version behaves like scmversion #bump! should bump prerelease with default type
Failure/Error: subject { described_class.new('1', '2', '3', Prerelease.new('beta', 3), '2') }
NoMethodError:
undefined method `gsub' for nil:NilClass
Shared Example Group: "scmversion" called from ./spec/lib/thor-scmversion/scm_version_spec.rb:123
# ./lib/thor-scmversion/p4_version.rb:76:in `depot_path'
# ./lib/thor-scmversion/p4_version.rb:93:in `initialize'
# ./spec/lib/thor-scmversion/scm_version_spec.rb:20:in `new'
# ./spec/lib/thor-scmversion/scm_version_spec.rb:20:in `block (3 levels) in <module:ThorSCMVersion>'
# ./spec/lib/thor-scmversion/scm_version_spec.rb:48:in `block (6 levels) in <module:ThorSCMVersion>'
21) ThorSCMVersion::P4Version behaves like scmversion #bump! should bump prerelease with default type with no prerelease on previous version
Failure/Error: subject { described_class.new('1', '2', '3', Prerelease.new('beta', 3), '2') }
NoMethodError:
undefined method `gsub' for nil:NilClass
Shared Example Group: "scmversion" called from ./spec/lib/thor-scmversion/scm_version_spec.rb:123
# ./lib/thor-scmversion/p4_version.rb:76:in `depot_path'
# ./lib/thor-scmversion/p4_version.rb:93:in `initialize'
# ./spec/lib/thor-scmversion/scm_version_spec.rb:20:in `new'
# ./spec/lib/thor-scmversion/scm_version_spec.rb:20:in `block (3 levels) in <module:ThorSCMVersion>'
# ./spec/lib/thor-scmversion/scm_version_spec.rb:51:in `block (6 levels) in <module:ThorSCMVersion>'
22) ThorSCMVersion::P4Version behaves like scmversion #from_tag should create a version object from a tag
Failure/Error: v = described_class.from_tag('1.2.3')
NoMethodError:
undefined method `gsub' for nil:NilClass
Shared Example Group: "scmversion" called from ./spec/lib/thor-scmversion/scm_version_spec.rb:123
# ./lib/thor-scmversion/p4_version.rb:76:in `depot_path'
# ./lib/thor-scmversion/p4_version.rb:93:in `initialize'
# ./lib/thor-scmversion/scm_version.rb:47:in `new'
# ./lib/thor-scmversion/scm_version.rb:47:in `from_tag'
# ./spec/lib/thor-scmversion/scm_version_spec.rb:63:in `block (3 levels) in <module:ThorSCMVersion>'
23) ThorSCMVersion::P4Version behaves like scmversion #from_tag should create a version object from a tag with a prerelease
Failure/Error: v = described_class.from_tag('1.2.3-alpha.1')
NoMethodError:
undefined method `gsub' for nil:NilClass
Shared Example Group: "scmversion" called from ./spec/lib/thor-scmversion/scm_version_spec.rb:123
# ./lib/thor-scmversion/p4_version.rb:76:in `depot_path'
# ./lib/thor-scmversion/p4_version.rb:93:in `initialize'
# ./lib/thor-scmversion/scm_version.rb:47:in `new'
# ./lib/thor-scmversion/scm_version.rb:47:in `from_tag'
# ./spec/lib/thor-scmversion/scm_version_spec.rb:70:in `block (3 levels) in <module:ThorSCMVersion>'
24) ThorSCMVersion::P4Version behaves like scmversion #reset_for should reset for major
Failure/Error: subject { described_class.new('1', '2', '3', Prerelease.new, '4') }
NoMethodError:
undefined method `gsub' for nil:NilClass
Shared Example Group: "scmversion" called from ./spec/lib/thor-scmversion/scm_version_spec.rb:123
# ./lib/thor-scmversion/p4_version.rb:76:in `depot_path'
# ./lib/thor-scmversion/p4_version.rb:93:in `initialize'
# ./spec/lib/thor-scmversion/scm_version_spec.rb:78:in `new'
# ./spec/lib/thor-scmversion/scm_version_spec.rb:78:in `block (3 levels) in <module:ThorSCMVersion>'
# ./spec/lib/thor-scmversion/scm_version_spec.rb:85:in `block (4 levels) in <module:ThorSCMVersion>'
25) ThorSCMVersion::P4Version behaves like scmversion #reset_for should reset for minor
Failure/Error: subject { described_class.new('1', '2', '3', Prerelease.new, '4') }
NoMethodError:
undefined method `gsub' for nil:NilClass
Shared Example Group: "scmversion" called from ./spec/lib/thor-scmversion/scm_version_spec.rb:123
# ./lib/thor-scmversion/p4_version.rb:76:in `depot_path'
# ./lib/thor-scmversion/p4_version.rb:93:in `initialize'
# ./spec/lib/thor-scmversion/scm_version_spec.rb:78:in `new'
# ./spec/lib/thor-scmversion/scm_version_spec.rb:78:in `block (3 levels) in <module:ThorSCMVersion>'
# ./spec/lib/thor-scmversion/scm_version_spec.rb:85:in `block (4 levels) in <module:ThorSCMVersion>'
26) ThorSCMVersion::P4Version behaves like scmversion #reset_for should reset for patch
Failure/Error: subject { described_class.new('1', '2', '3', Prerelease.new, '4') }
NoMethodError:
undefined method `gsub' for nil:NilClass
Shared Example Group: "scmversion" called from ./spec/lib/thor-scmversion/scm_version_spec.rb:123
# ./lib/thor-scmversion/p4_version.rb:76:in `depot_path'
# ./lib/thor-scmversion/p4_version.rb:93:in `initialize'
# ./spec/lib/thor-scmversion/scm_version_spec.rb:78:in `new'
# ./spec/lib/thor-scmversion/scm_version_spec.rb:78:in `block (3 levels) in <module:ThorSCMVersion>'
# ./spec/lib/thor-scmversion/scm_version_spec.rb:85:in `block (4 levels) in <module:ThorSCMVersion>'
27) ThorSCMVersion::P4Version behaves like scmversion #reset_for should reset for prerelease
Failure/Error: subject { described_class.new('1', '2', '3', Prerelease.new, '4') }
NoMethodError:
undefined method `gsub' for nil:NilClass
Shared Example Group: "scmversion" called from ./spec/lib/thor-scmversion/scm_version_spec.rb:123
# ./lib/thor-scmversion/p4_version.rb:76:in `depot_path'
# ./lib/thor-scmversion/p4_version.rb:93:in `initialize'
# ./spec/lib/thor-scmversion/scm_version_spec.rb:78:in `new'
# ./spec/lib/thor-scmversion/scm_version_spec.rb:78:in `block (3 levels) in <module:ThorSCMVersion>'
# ./spec/lib/thor-scmversion/scm_version_spec.rb:85:in `block (4 levels) in <module:ThorSCMVersion>'
28) ThorSCMVersion::P4Version behaves like scmversion #reset_for should reset for build
Failure/Error: subject { described_class.new('1', '2', '3', Prerelease.new, '4') }
NoMethodError:
undefined method `gsub' for nil:NilClass
Shared Example Group: "scmversion" called from ./spec/lib/thor-scmversion/scm_version_spec.rb:123
# ./lib/thor-scmversion/p4_version.rb:76:in `depot_path'
# ./lib/thor-scmversion/p4_version.rb:93:in `initialize'
# ./spec/lib/thor-scmversion/scm_version_spec.rb:78:in `new'
# ./spec/lib/thor-scmversion/scm_version_spec.rb:78:in `block (3 levels) in <module:ThorSCMVersion>'
# ./spec/lib/thor-scmversion/scm_version_spec.rb:85:in `block (4 levels) in <module:ThorSCMVersion>'
Finished in 32.38 seconds
69 examples, 28 failures, 1 pending
Failed examples:
rspec ./spec/lib/thor-scmversion/scm_version_spec.rb:25 # ThorSCMVersion::GitVersion behaves like scmversion #bump! should bump minor
rspec ./spec/lib/thor-scmversion/scm_version_spec.rb:28 # ThorSCMVersion::GitVersion behaves like scmversion #bump! should bump patch
rspec ./spec/lib/thor-scmversion/scm_version_spec.rb:56 # ThorSCMVersion::GitVersion behaves like scmversion #bump! should bump build
rspec ./spec/lib/thor-scmversion/scm_version_spec.rb:32 # ThorSCMVersion::GitVersion behaves like scmversion #bump! should bump auto should respect a default level of bump
rspec ./spec/lib/thor-scmversion/scm_version_spec.rb:38 # ThorSCMVersion::GitVersion behaves like scmversion #bump! should bump prerelease with explicit type
rspec ./spec/lib/thor-scmversion/scm_version_spec.rb:41 # ThorSCMVersion::GitVersion behaves like scmversion #bump! should bump prerelease with explicit type with no prerelease on previous version
rspec ./spec/lib/thor-scmversion/scm_version_spec.rb:47 # ThorSCMVersion::GitVersion behaves like scmversion #bump! should bump prerelease with default type
rspec ./spec/lib/thor-scmversion/scm_version_spec.rb:50 # ThorSCMVersion::GitVersion behaves like scmversion #bump! should bump prerelease with default type with no prerelease on previous version
rspec ./spec/lib/thor-scmversion/scm_version_spec.rb:5 # ThorSCMVersion::P4Version behaves like scmversion should take major minor and patch segments on initialization
rspec ./spec/lib/thor-scmversion/scm_version_spec.rb:8 # ThorSCMVersion::P4Version behaves like scmversion should optionally take a prerelease
rspec ./spec/lib/thor-scmversion/scm_version_spec.rb:12 # ThorSCMVersion::P4Version behaves like scmversion should take a build number
rspec ./spec/lib/thor-scmversion/scm_version_spec.rb:15 # ThorSCMVersion::P4Version behaves like scmversion should take a build number and a prerelease
rspec ./spec/lib/thor-scmversion/scm_version_spec.rb:22 # ThorSCMVersion::P4Version behaves like scmversion #bump! should bump major
rspec ./spec/lib/thor-scmversion/scm_version_spec.rb:25 # ThorSCMVersion::P4Version behaves like scmversion #bump! should bump minor
rspec ./spec/lib/thor-scmversion/scm_version_spec.rb:28 # ThorSCMVersion::P4Version behaves like scmversion #bump! should bump patch
rspec ./spec/lib/thor-scmversion/scm_version_spec.rb:56 # ThorSCMVersion::P4Version behaves like scmversion #bump! should bump build
rspec ./spec/lib/thor-scmversion/scm_version_spec.rb:32 # ThorSCMVersion::P4Version behaves like scmversion #bump! should bump auto should respect a default level of bump
rspec ./spec/lib/thor-scmversion/scm_version_spec.rb:38 # ThorSCMVersion::P4Version behaves like scmversion #bump! should bump prerelease with explicit type
rspec ./spec/lib/thor-scmversion/scm_version_spec.rb:41 # ThorSCMVersion::P4Version behaves like scmversion #bump! should bump prerelease with explicit type with no prerelease on previous version
rspec ./spec/lib/thor-scmversion/scm_version_spec.rb:47 # ThorSCMVersion::P4Version behaves like scmversion #bump! should bump prerelease with default type
rspec ./spec/lib/thor-scmversion/scm_version_spec.rb:50 # ThorSCMVersion::P4Version behaves like scmversion #bump! should bump prerelease with default type with no prerelease on previous version
rspec ./spec/lib/thor-scmversion/scm_version_spec.rb:62 # ThorSCMVersion::P4Version behaves like scmversion #from_tag should create a version object from a tag
rspec ./spec/lib/thor-scmversion/scm_version_spec.rb:69 # ThorSCMVersion::P4Version behaves like scmversion #from_tag should create a version object from a tag with a prerelease
rspec ./spec/lib/thor-scmversion/scm_version_spec.rb:84 # ThorSCMVersion::P4Version behaves like scmversion #reset_for should reset for major
rspec ./spec/lib/thor-scmversion/scm_version_spec.rb:84 # ThorSCMVersion::P4Version behaves like scmversion #reset_for should reset for minor
rspec ./spec/lib/thor-scmversion/scm_version_spec.rb:84 # ThorSCMVersion::P4Version behaves like scmversion #reset_for should reset for patch
rspec ./spec/lib/thor-scmversion/scm_version_spec.rb:84 # ThorSCMVersion::P4Version behaves like scmversion #reset_for should reset for prerelease
rspec ./spec/lib/thor-scmversion/scm_version_spec.rb:84 # ThorSCMVersion::P4Version behaves like scmversion #reset_for should reset for build
Coverage report generated for RSpec to /Users/rberger/work/rivermeadow/thor-scmversion/coverage. 230 / 311 LOC (73.95%) covered.
/Users/rberger/.rvm/rubies/ruby-1.9.3-p429/bin/ruby -S rspec ./spec/lib/thor-scmversion/git_version_spec.rb ./spec/lib/thor-scmversion/prerelease_spec.rb ./spec/lib/thor-scmversion/scm_version_spec.rb failed
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment