This commit is contained in:
erwanlr
2018-01-30 19:59:41 +00:00
parent 9c7188a312
commit 1499b07176
4 changed files with 112 additions and 3 deletions

View File

@@ -134,6 +134,13 @@ describe 'WpVersion::Findable' do
@fixture = '/3.3.2.html'
@expected = '3.3.2'
end
context 'when version >= 4.7' do
it 'returns nil' do
@fixture = '/4.7.2.html'
@expected = nil
end
end
end
describe '::find_from_links_opml' do