Skip to content

Commit

Permalink
Cut fillmurray
Browse files Browse the repository at this point in the history
  • Loading branch information
palewire authored Dec 30, 2023
1 parent 601b60f commit 7e2c79b
Show file tree
Hide file tree
Showing 3 changed files with 1 addition and 38 deletions.
11 changes: 1 addition & 10 deletions docs/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -60,14 +60,6 @@ One provider is [placekitten.com](https://placekitten.com/)
<img src="https://placekitten.com/200/200">


Another is [fillmurray.com](http://www.fillmurray.com/).

```html+django
{% fillmurray 600 200 %}
```

<img src="http://www.fillmurray.com/600/200">

### Pangrams

A pangram is a phrase that includes every letter of an alphabet. It is useful when testing font implementations.
Expand Down Expand Up @@ -111,8 +103,7 @@ Here is the complete list of available languages.

### L.A. Times ipsum

A set of objects with boilerplate text, URLs and other attributes common to news. Used by the Los Angeles Times Data Desk to greek
its documentation and pages under development.
A set of objects with boilerplate text, URLs and other attributes common to news.

The library can generate ``Story``, ``Image``, ``RelatedItem`` and ``Quote`` objects.

Expand Down
15 changes: 0 additions & 15 deletions greeking/fillmurray.py

This file was deleted.

13 changes: 0 additions & 13 deletions greeking/tests.py
Original file line number Diff line number Diff line change
Expand Up @@ -70,19 +70,6 @@ def testGreekComments(self):
for k, v in list(comment_dict.items()):
self.assertEqual(v, match[k])

def testFillMuray(self):
"""
Tests the tag for pulling Bill Murray images.
"""
t1 = "{% load greeking_tags %}{% fillmurray 200 200 %}"
ctx, out = self.render(t1)
self.assertEqual(out, '<img src="http://www.fillmurray.com/200/200/"/>')
self.assertRaises(
TemplateSyntaxError,
self.render,
"{% load greeking_tags %}{% fillmurray foobar %}",
)

def testPlaceKittens(self):
"""
Tests the tag for pulling placekitten images.
Expand Down

0 comments on commit 7e2c79b

Please sign in to comment.