Skip to content

Instantly share code, notes, and snippets.

@raldred
Created April 6, 2009 09:42
Show Gist options
  • Save raldred/90695 to your computer and use it in GitHub Desktop.
Save raldred/90695 to your computer and use it in GitHub Desktop.
require 'firewatir'
require 'database_cleaner'
DatabaseCleaner.strategy = :truncation
Watir::Browser.default = "firefox"
Before do
# truncate your tables here, since you can't use transactional fixtures*
DatabaseCleaner.clean
@browser ||= Watir::Browser.new
end
After do
@browser.close
@browser = nil
# truncate your tables here, since you can't use transactional fixtures*
DatabaseCleaner.clean
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment