Sha256: 0133f29a9847a7033e3f85572954e4656b984ad88cff6c4898cae565a2a546b9
Contents?: true
Size: 622 Bytes
Versions: 33
Compression:
Stored size: 622 Bytes
Contents
gem 'capybara', :group => [:development, :test] after_bundler do create_file "spec/support/capybara.rb", <<-RUBY require 'capybara/rails' require 'capybara/rspec' RUBY create_file "spec/requests/home_spec.rb", <<-RUBY require 'spec_helper' describe 'visiting the homepage' do before do visit '/' end it 'should have a body' do page.should have_css('body') end end RUBY end __END__ name: Capybara description: "Use the Capybara acceptance testing libraries with RSpec." author: mbleigh requires: [rspec] run_after: [rspec] exclusive: acceptance_testing category: testing tags: [acceptance]
Version data entries
33 entries across 33 versions & 6 rubygems