Files
community.general/test
willthames 40a44ce6ea Ensure test_command tests are actually correct
Using
```
assert 'changed' in result
```
doesn't actually check if something is changed, which is presumably
the reason for the assertion. What is actually needed is
```
assert result.get('changed')
```
which checks that changed is set and not False. Tests still pass after
this change
2013-12-03 12:03:39 +10:00
..
2013-01-15 17:34:38 -08:00
2013-09-07 16:34:22 -04:00
2013-02-23 12:50:18 -05:00
2013-02-05 14:49:59 +01:00
2012-06-18 00:13:12 +02:00
2012-09-17 18:31:49 +02:00