請指導如何使用RSpec禁用以下測試方法之一。我使用Selenuim WebDriver + RSpec組合來運行測試。如何忽略或跳過使用RSpec的測試方法?
require 'rspec'
require 'selenium-webdriver'
describe 'Automation System' do
before(:each) do
###
end
after(:each) do
@driver.quit
end
it 'Test01' do
#positive test case
end
it 'Test02' do
#negative test case
end
end
謝謝..它的工作原理! – 2014-12-04 08:41:35