Skip to content

Instantly share code, notes, and snippets.

@seth-macpherson
Created September 13, 2012 23:49
Show Gist options
  • Save seth-macpherson/3718693 to your computer and use it in GitHub Desktop.
Save seth-macpherson/3718693 to your computer and use it in GitHub Desktop.
Example Integration Test
require './test/selenium_test_helper'
class ExampleAdminTest < ActionController::IntegrationTest
# assemble basic test data via FactoryGirl, etc...
setup :prep_test_data, :visit_admin
test 'basic application operations' do
click_link "Show Archived Positions"
assert page.has_content?("Wooden Widget Maker")
end
# ..... lots more tests
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment