2
我正在使用如何設置測試狀態中測試單元成功
gem 'test-unit'
Github上鍊接了一個試驗:https://github.com/test-unit/test-unit
以及使用
gem 'ci_reporter'
Github上Link報告:https://github.com/ci-reporter/ci_reporter
Class Sample
def test_sample
# code
notify "Notification message"
end
end
測試單元寶石具有以下狀態:
pending
omission
notification
pass
error
failure
的C記者寶石有以下狀態:
Success
Failure
我正在使用測試單元通知狀態進行了抽樣檢測。
使用ci-reporter gem生成報告時,它會顯示具有故障狀態的通知消息。
附參考
我需要證明與通知信息中的成功狀態報告。怎麼做?
您是否嘗試過在通知後返回'0'或'1'? – Bala 2014-11-04 09:15:49
@Bala是試過了。但沒有工作。 – karan 2014-11-04 10:04:56