mirror of
https://github.com/teamcapybara/capybara.git
synced 2022-11-09 12:08:07 -05:00
14 lines
315 B
Ruby
14 lines
315 B
Ruby
|
require File.expand_path('spec_helper', File.dirname(__FILE__))
|
||
|
|
||
|
shared_examples_for 'driver' do
|
||
|
|
||
|
describe '#get' do
|
||
|
it "should fetch a response" do
|
||
|
@driver.get('/')
|
||
|
@driver.body.should == 'Hello world!'
|
||
|
@driver.get('/foo')
|
||
|
@driver.body.should == 'Another World'
|
||
|
end
|
||
|
end
|
||
|
|
||
|
end
|