Sha256: 502aa2e130e40040b5739213bc59012f83989dd78e5512094d76fac0f5a7a3bc
Contents?: true
Size: 1.2 KB
Versions: 1
Compression:
Stored size: 1.2 KB
Contents
require 'spec_helper' require 'mock_app' class TestFactory include Fluent::Factory attr_accessor :driver end class DefinitionTest include Fluent url_is 'http://localhost:9292' end describe Fluent::Factory do before(:each) do @factory = TestFactory.new @factory.driver = mock_browser_for_watir end it 'should create a new definition object and view it, using on_view' do @factory.driver.should_receive(:goto) @factory.on_view DefinitionTest do |page| page.should be_instance_of DefinitionTest end end it 'should create a new definition object, using on' do @factory.driver.should_not_receive(:goto) @factory.on DefinitionTest do |page| page.should be_instance_of DefinitionTest end end it 'should set a reference to be used outside the factory' do active = @factory.on DefinitionTest current = @factory.instance_variable_get '@active' current.should === active end it 'should create a new definition based on a string' do @factory.driver.should_receive(:goto) @factory.on_view "DefinitionTest" do |page| page.should be_instance_of DefinitionTest end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
fluent-0.4.0 | spec/factory_spec.rb |