Zeroise.php 311 B

1234567891011121314
  1. <?php
  2. /**
  3. * @group formatting
  4. */
  5. class Tests_Formatting_Zeroise extends WP_UnitTestCase {
  6. function test_pads_with_leading_zeroes() {
  7. $this->assertSame( '00005', zeroise( 5, 5 ) );
  8. }
  9. function test_does_nothing_if_input_is_already_longer() {
  10. $this->assertSame( '5000000', zeroise( 5000000, 2 ) );
  11. }
  12. }