Created
September 13, 2012 15:42
-
-
Save shepmaster/3715190 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
# This is a test helper class | |
class UI | |
attr_reader :page | |
def initialize(page) | |
@page = page | |
end | |
def title | |
page.text "//div[@id='cboxTitle']" | |
end | |
end |
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
context "some context" | |
it "displays the title of the document" do | |
ui.title.should match(/My awesome title/) | |
end | |
def ui | |
UI.new(page) | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment