Last active
December 10, 2015 08:58
-
-
Save jcoglan/4410634 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| require './config/environment' | |
| require 'capybara/dsl' | |
| require 'terminus' | |
| Capybara.app = Blarg::Application | |
| Capybara.current_driver = :terminus | |
| Terminus.start_phantomjs |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| require 'spec_helper' | |
| describe Blarg do | |
| include Capybara::DSL | |
| it 'says wtf' do | |
| visit '/' | |
| page.should have_text('WTF') | |
| end | |
| end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment