Sha256: eb87cc4d257e9c5b4d7f5ddae355e870dcf806c40d7d76c04482d8f9df3e655c

Contents?: true

Size: 286 Bytes

Versions: 1

Compression:

Stored size: 286 Bytes

Contents

require 'watir-webdriver'

def mock_browser_for_watir
  watir_browser = double('watir')
  watir_browser.stub(:is_a?).with(Watir::Browser).and_return(true)
  watir_browser
end

class TestDefinition
  include Fluent

  url_is 'http://localhost:4567'
  title_is 'Test App'
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
fluent-0.1.0 spec/mock_app.rb