diff options
| author | kaniini <nenolod@gmail.com> | 2019-03-03 16:00:49 +0000 |
|---|---|---|
| committer | kaniini <nenolod@gmail.com> | 2019-03-03 16:00:49 +0000 |
| commit | ace4231628ad1af08c8696fb7fe6983549f62631 (patch) | |
| tree | c310e7065122b6c3a6e5a07d0f3eeaad1f2ef546 /test/fixtures | |
| parent | 6c6a2dbfdd7ae4043633c3201693c5c49538ef84 (diff) | |
| parent | f2452d5700afc48284638ae2cd1bff4886571d8c (diff) | |
| download | pleroma-ace4231628ad1af08c8696fb7fe6983549f62631.tar.gz pleroma-ace4231628ad1af08c8696fb7fe6983549f62631.zip | |
Merge branch 'features/bio_rel_me' into 'develop'
Add rel=me to the User bio
Closes #423
See merge request pleroma/pleroma!813
Diffstat (limited to 'test/fixtures')
| -rw-r--r-- | test/fixtures/rel_me_anchor.html | 14 | ||||
| -rw-r--r-- | test/fixtures/rel_me_link.html | 14 | ||||
| -rw-r--r-- | test/fixtures/rel_me_null.html | 13 |
3 files changed, 41 insertions, 0 deletions
diff --git a/test/fixtures/rel_me_anchor.html b/test/fixtures/rel_me_anchor.html new file mode 100644 index 000000000..5abcce129 --- /dev/null +++ b/test/fixtures/rel_me_anchor.html @@ -0,0 +1,14 @@ +<!DOCTYPE html> +<html> + <head> + <meta charset="utf-8"/> + <title>Blog</title> + </head> + <body> + <article> + <h1>Lorem ipsum</h1> + <p>Lorem ipsum dolor sit ameph, …</p> + <a rel="me" href="https://social.example.org/users/lain">lain’s account</a> + </article> + </body> +</html> diff --git a/test/fixtures/rel_me_link.html b/test/fixtures/rel_me_link.html new file mode 100644 index 000000000..b9ff18f6e --- /dev/null +++ b/test/fixtures/rel_me_link.html @@ -0,0 +1,14 @@ +<!DOCTYPE html> +<html> + <head> + <meta charset="utf-8"/> + <title>Blog</title> + <link rel="me" href="https://social.example.org/users/lain"/> + </head> + <body> + <article> + <h1>Lorem ipsum</h1> + <p>Lorem ipsum dolor sit ameph, …</p> + </article> + </body> +</html> diff --git a/test/fixtures/rel_me_null.html b/test/fixtures/rel_me_null.html new file mode 100644 index 000000000..57d424b80 --- /dev/null +++ b/test/fixtures/rel_me_null.html @@ -0,0 +1,13 @@ +<!DOCTYPE html> +<html> + <head> + <meta charset="utf-8"/> + <title>Blog</title> + </head> + <body> + <article> + <h1>Lorem ipsum</h1> + <p>Lorem ipsum dolor sit ameph, …</p> + </article> + </body> +</html> |
