mirror of
https://github.com/foo-dogsquared/asciidoctor-foodogsquared-extensions.git
synced 2025-01-30 22:57:56 +00:00
Gabriel Arazas
de9f3a0e9c
Also restructured how they're named in the filesystem and the class names as well.
38 lines
1.2 KiB
Ruby
38 lines
1.2 KiB
Ruby
# frozen_string_literal: true
|
|
|
|
describe FDroidInlineMacro do
|
|
it 'should create a FDroid link' do
|
|
input = 'fdroid:org.moire.ultrasonic[]'
|
|
|
|
expected = <<~RESULT
|
|
<a href="https://f-droid.org/en/packages/org.moire.ultrasonic">Ultrasonic</a>
|
|
RESULT
|
|
|
|
actual = (Asciidoctor.convert input).tr_s '\n', '\n'
|
|
(expect actual).to include expected.chomp
|
|
end
|
|
|
|
it 'should create a FDroid link with replaced caption' do
|
|
input = 'fdroid:org.moire.ultrasonic[a Subsonic client]'
|
|
|
|
expected = <<~RESULT
|
|
<a href="https://f-droid.org/en/packages/org.moire.ultrasonic">a Subsonic client</a>
|
|
RESULT
|
|
|
|
actual = (Asciidoctor.convert input).tr_s '\n', '\n'
|
|
(expect actual).to include expected.chomp
|
|
end
|
|
|
|
it 'should fail to create a link due to non-existent app' do
|
|
input = 'fdroid:com.example.NonExistentAppOrSomething[]'
|
|
|
|
expect { Asciidoctor.convert input }.to raise_error StandardError
|
|
end
|
|
|
|
it 'should fail to create a link due to non-existent app even with replaced caption' do
|
|
input = 'fdroid:com.example.NonExistentAppOrSomething[non-existent app]'
|
|
|
|
expect { Asciidoctor.convert input }.to raise_error StandardError
|
|
end
|
|
end
|