Created
April 10, 2011 20:39
-
-
Save mculp/912700 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
| Failure/Error: click_button 'submit' | |
| Encoding::CompatibilityError: | |
| incompatible encoding regexp match (UTF-8 regexp with ASCII-8BIT string) | |
| # ./spec/integration/searches_spec.rb:16:in `block (2 levels) in <top (required)>' |
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 SearchesController do | |
| it "should do something" do | |
| visit searches_path | |
| page.fill_in 'search_name', :with => 'oak' | |
| click_button 'submit' | |
| end | |
| end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment