logo
  • 教程列表
  • SO官方文檔
  • 測試 Rails 應用程式
    • 單元測試
    • 請求測試
  1. StackOverflow 文件
  2. Ruby on Rails 教程
  3. 測試 Rails 應用程式
  4. 單元測試

單元測試

Created: November-22, 2018

單元測試單獨測試應用程式的各個部分。通常,被測單元是一個類或模組。

let(:gift) { create :gift }

describe '#find' do
  subject { described_class.find(user, Time.zone.now.to_date) }
  it { is_expected.to eq gift }
end

資源

這種測試儘可能直接和具體。

  • 請求測試
  • 測試 Rails 應用程式

Copyright © 2018. All right reserved

tastones.com 备案号:鲁ICP备18045372号-1

  • 關於本站
  • 免責聲明