@include describe("The not operator") {
  @include it("should return correct results") {
    @include should(expect(bw-not(42)), to(be(-43)));
    @include should(expect(bw-not(-42)), to(be(43)));
  }
}
