Sha256: 9f345b2c16a72305c938db0390dae98f332629ab48e7b0c8254312093d6b748f
Contents?: true
Size: 747 Bytes
Versions: 268
Compression:
Stored size: 747 Bytes
Contents
#!/usr/bin/env bats @test 'April 25th, 2011' { run bash gigasecond.sh '2011-04-25Z' [ "$status" -eq 0 ] [ "$output" == 'Thu Jan 1 01:46:40 UTC 2043' ] } @test 'June 13th, 1977' { run bash gigasecond.sh '1977-06-13Z' [ "$status" -eq 0 ] [ "$output" == 'Thu Feb 19 01:46:40 UTC 2009' ] } @test 'July 19th, 1959' { run bash gigasecond.sh '1959-07-19Z' [ "$status" -eq 0 ] [ "$output" == 'Wed Mar 27 01:46:40 UTC 1991' ] } @test 'Time specified' { run bash gigasecond.sh '2015-01-24 22:00:00Z' [ "$status" -eq 0 ] [ "$output" == 'Tue Oct 2 23:46:40 UTC 2046' ] } @test 'Time with day rollover' { run bash gigasecond.sh '2015-01-24 23:59:59Z' [ "$status" -eq 0 ] [ "$output" == 'Wed Oct 3 01:46:39 UTC 2046' ] }
Version data entries
268 entries across 268 versions & 1 rubygems