test/manns_spec.rb in hoe-manns-1.0.0 vs test/manns_spec.rb in hoe-manns-1.0.1
- old
+ new
@@ -1,9 +1,11 @@
-require 'spec_helper'
+require 'rspec'
+require 'digest'
require File.expand_path(File.join(File.dirname(__FILE__), '../lib/hoe/manns'))
+require File.expand_path(File.join(File.dirname(__FILE__), 'spec_helper'))
-describe 'Hoe:Manns' do
+describe 'Hoe::Manns' do
describe 'update_gemfile_lock_method' do
before do
@checksumgemlock = Digest::SHA2.hexdigest(File.read('Gemfile.lock'))
end
@@ -37,18 +39,19 @@
it 'updates the .index' do
Hoe::Manns.update_index_method
end
end
- describe 'copy_manuals' do
- it 'copies the manuals' do
- Hoe::Manns.copy_manuals_method
- end
- end
+ # describe 'copy_manuals' do
+ # it 'copies the manuals' do
+ # Hoe::Manns.copy_manuals_method
+ # end
+ # end
describe 'clean_pkg' do
it 'cleans the pkg' do
Hoe::Manns.clean_pkg_method
-
end
end
end
+
+