diff options
| -rw-r--r-- | tests/Tests/Readers/Org.hs | 4 | 
1 files changed, 4 insertions, 0 deletions
| diff --git a/tests/Tests/Readers/Org.hs b/tests/Tests/Readers/Org.hs index 39c40cd45..3a26861f0 100644 --- a/tests/Tests/Readers/Org.hs +++ b/tests/Tests/Readers/Org.hs @@ -212,6 +212,10 @@ tests =            "[[sunset.png][dusk.svg]]" =?>            (para $ link "sunset.png" "" (image "dusk.svg" "" "")) +      , "Image link with non-image target" =: +          "[[http://example.com][logo.png]]" =?> +          (para $ link "http://example.com" "" (image "logo.png" "" "")) +        , "Plain link" =:            "Posts on http://zeitlens.com/ can be funny at times." =?>            (para $ spcSep [ "Posts", "on" | 
