Sha256: 977262f65dd5115ea0af1600cac4aad9ff1ef8c21591f0ae83186541a3f6854b
Contents?: true
Size: 560 Bytes
Versions: 12
Compression:
Stored size: 560 Bytes
Contents
require 'spec_helper' describe Symbiont do let(:watir_browser) { mock_browser_for_watir } let(:watir_definition) { DefinitionTest.new(watir_browser) } context "a definition using watir-webdriver" do it "should return a watir platform object" do watir_definition.platform.should be_kind_of Symbiont::Platforms::WatirWebDriver::PlatformObject end end context "an unrecognized browser" do it "should raise an exception" do expect { DefinitionTest.new(:unknown_browser) }.to raise_error end end end
Version data entries
12 entries across 12 versions & 1 rubygems