capybara-webkit/spec/integration/driver_spec.rb

22 lines
565 B
Ruby
Raw Normal View History

2011-02-26 22:02:00 +00:00
require 'spec_helper'
require 'capybara/driver/webkit'
describe Capybara::Driver::Webkit do
before do
@driver = Capybara::Driver::Webkit.new(TestApp)
end
# TODO: select options
# it_should_behave_like "driver"
# TODO: bug with drag and drop
# it_should_behave_like "driver with javascript support"
it_should_behave_like "driver with cookies support"
2011-02-26 22:02:00 +00:00
# Can't support:
# it_should_behave_like "driver with header support"
# it_should_behave_like "driver with status code support"
# it_should_behave_like "driver with frame support"
end