39 lines
1 KiB
Ruby
39 lines
1 KiB
Ruby
describe QA::Factory::Product do
|
|
let(:factory) do
|
|
QA::Factory::Base.new
|
|
end
|
|
|
|
let(:attributes) do
|
|
{ test: QA::Factory::Product::Attribute.new(:test, proc { 'returned' }) }
|
|
end
|
|
|
|
let(:product) { spy('product') }
|
|
|
|
before do
|
|
allow(QA::Factory::Base).to receive(:attributes).and_return(attributes)
|
|
end
|
|
|
|
describe '.populate!' do
|
|
it 'returns a fabrication product and define factory attributes as its methods' do
|
|
expect(described_class).to receive(:new).and_return(product)
|
|
|
|
result = described_class.populate!(factory) do |instance|
|
|
instance.something = 'string'
|
|
end
|
|
|
|
expect(result).to be product
|
|
expect(result.test).to eq('returned')
|
|
end
|
|
end
|
|
|
|
describe '.visit!' do
|
|
it 'makes it possible to visit fabrication product' do
|
|
allow_any_instance_of(described_class)
|
|
.to receive(:current_url).and_return('some url')
|
|
allow_any_instance_of(described_class)
|
|
.to receive(:visit).and_return('visited some url')
|
|
|
|
expect(subject.visit!).to eq 'visited some url'
|
|
end
|
|
end
|
|
end
|