2013-02-25 19:05:37 -05:00
|
|
|
require 'helper'
|
2011-10-26 01:27:07 -04:00
|
|
|
|
|
|
|
describe OmniAuth::Form do
|
2014-01-15 23:00:46 -05:00
|
|
|
describe '.build' do
|
|
|
|
it 'yields the instance when called with a block and argument' do
|
|
|
|
OmniAuth::Form.build { |f| expect(f).to be_kind_of(OmniAuth::Form) }
|
2011-10-26 01:27:07 -04:00
|
|
|
end
|
|
|
|
|
2014-01-15 23:00:46 -05:00
|
|
|
it 'evaluates in the instance when called with a block and no argument' do
|
|
|
|
OmniAuth::Form.build { |f| expect(f.class).to eq(OmniAuth::Form) }
|
2011-10-26 01:27:07 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2014-01-15 23:00:46 -05:00
|
|
|
describe '#initialize' do
|
|
|
|
it 'sets the form action to the passed :url option' do
|
2012-10-10 04:32:55 -04:00
|
|
|
expect(OmniAuth::Form.new(:url => '/awesome').to_html).to be_include("action='/awesome'")
|
2011-10-26 01:27:07 -04:00
|
|
|
end
|
|
|
|
|
2014-01-15 23:00:46 -05:00
|
|
|
it 'sets an H1 tag from the passed :title option' do
|
2012-10-10 04:32:55 -04:00
|
|
|
expect(OmniAuth::Form.new(:title => 'Something Cool').to_html).to be_include('<h1>Something Cool</h1>')
|
2011-10-26 01:27:07 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|