spec/configuration_spec.rb in active_git-0.0.7 vs spec/configuration_spec.rb in active_git-0.0.8
- old
+ new
@@ -11,11 +11,11 @@
after :each do
ActiveGit.configuration.working_path = @working_path
ActiveGit.configuration.bare_path = @bare_path
ActiveGit.configuration.logger = @logger
end
-
+
it 'default sync_batch_size' do
ActiveGit.configuration.sync_batch_size.should eq 10000
end
it 'set sync_batch_size' do
@@ -57,7 +57,7 @@
logger = Logger.new($stdout)
ActiveGit.configuration.logger.should_not eq logger
ActiveGit.configuration.logger = logger
ActiveGit.configuration.logger.should eq logger
end
-
+
end