Fix weirdly indented code

This commit is contained in:
Tijmen Brommet 2013-03-02 00:48:49 +01:00
parent eaef66a423
commit ba04e72a99
1 changed files with 11 additions and 13 deletions

View File

@ -17,21 +17,21 @@ describe "Dynamic Oneboxer" do
@dummy_onebox_url = "http://dummy2.localhost/dummy-object" @dummy_onebox_url = "http://dummy2.localhost/dummy-object"
end end
context 'find onebox for url' do context 'find onebox for url' do
it 'returns blank with an unknown url' do it 'returns blank with an unknown url' do
Oneboxer.onebox_for_url('http://asdfasdfasdfasdf.asdf').should be_blank Oneboxer.onebox_for_url('http://asdfasdfasdfasdf.asdf').should be_blank
end end
it 'returns something when matched' do it 'returns something when matched' do
Oneboxer.onebox_for_url(@dummy_onebox_url).should be_present Oneboxer.onebox_for_url(@dummy_onebox_url).should be_present
end end
it 'returns an instance of our class when matched' do it 'returns an instance of our class when matched' do
Oneboxer.onebox_for_url(@dummy_onebox_url).kind_of?(DummyDynamicOnebox).should be_true Oneboxer.onebox_for_url(@dummy_onebox_url).kind_of?(DummyDynamicOnebox).should be_true
end end
end end
end end
@ -181,5 +181,3 @@ describe Oneboxer do
end end