@include describe("The decimal-to-binary function") {
  @include it("should convert a base ten number to base two") {
    @include should(expect(decimal-to-binary(42)), to(be(101010)));
  }
}
