@function be-greater-than($this) { $actual: actual(); $when: false; @if type-of($actual) == "number" { $when: $actual > $this; } @else { $when: error("type", "The `be-greater-than` matcher is only for numbers"); } @return should("be greater than", $this, $when); }