summaryrefslogtreecommitdiff
path: root/src/Propellor/Property.hs
diff options
context:
space:
mode:
Diffstat (limited to 'src/Propellor/Property.hs')
-rw-r--r--src/Propellor/Property.hs3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/Propellor/Property.hs b/src/Propellor/Property.hs
index 24494654..0728932e 100644
--- a/src/Propellor/Property.hs
+++ b/src/Propellor/Property.hs
@@ -103,6 +103,9 @@ trivial p = adjustProperty p $ \satisfy -> do
then return NoChange
else return r
+doNothing :: Property
+doNothing = property "noop property" noChange
+
-- | Makes a property that is satisfied differently depending on the host's
-- operating system.
--