Commit d6aee5f14746bf38fbfb3483d8fb13a38488c56c

Authored by Diego Camarinha
Committed by Paulo Meireles
1 parent 6397f791

Inserting a unit test to remove project from service

plugins/mezuro/test/unit/mezuro_plugin/project_content_test.rb
... ... @@ -39,4 +39,8 @@ class ProjectContentTest < Test::Unit::TestCase
39 39 @content.send :send_project_to_service
40 40 end
41 41  
  42 + should 'remove project from service' do
  43 + Kalibro::Client::ProjectClient.expects(:remove).with(@project.name)
  44 + @content.send :remove_project_from_service
  45 + end
42 46 end
... ...