spec/manns_spec.rb in hoe-manns-1.6.2 vs spec/manns_spec.rb in hoe-manns-2.0.0
- old
+ new
@@ -2,45 +2,30 @@
require File.join(File.dirname(__FILE__), '..', 'lib/hoe/manns')
require File.join(File.dirname(__FILE__), '..', 'spec/spec_helper')
require 'fileutils'
describe 'Hoe::Manns' do
- # def self.update_gemfile_lock_method
- # puts 'Updating Gemfile.lock'.colour(:yellow)
- # system('bundle update')
- # puts 'Updated Gemfile.lock'.colour(:green)
- # end
describe 'update_gemfile_lock_method' do
it 'creates a new Gemfile.lock' do
FileUtils.rm(File.join(File.dirname(__FILE__), '..', 'Gemfile.lock'))
Hoe::Manns.update_gemfile_lock_method
- avail = false
avail = File.exist?(File.join(File.dirname(__FILE__), '..',
'Gemfile.lock'))
- expect(avail) == true
+ expect(avail)
end
end
describe 'remove_pre_gemspec' do
it 'removes the old gemspec' do
FileUtils.touch('hoe-manns.gemspec')
Hoe::Manns.remove_pre_gemspec_method
gemspec = Dir.glob('*.gemspec').empty?
- expect(gemspec) == true
+ expect(gemspec)
end
end
- describe 'get projectname' do
- it 'gets the projectname' do
- projectname = Hoe::Manns.get_projectname
- expect(projectname) == ''
- end
- end
-
describe 'clean_pkg' do
it 'cleans the pkg' do
Hoe::Manns.clean_pkg_method
end
end
end
-
-