23 lines
		
	
	
		
			473 B
		
	
	
	
		
			Factor
		
	
	
			
		
		
	
	
			23 lines
		
	
	
		
			473 B
		
	
	
	
		
			Factor
		
	
	
USING: calendar crontab kernel tools.test ;
 | 
						|
 | 
						|
{
 | 
						|
    T{ timestamp
 | 
						|
        { year 2018 }
 | 
						|
        { month 3 }
 | 
						|
        { day 9 }
 | 
						|
        { hour 12 }
 | 
						|
        { minute 23 }
 | 
						|
        { gmt-offset T{ duration { hour -8 } } }
 | 
						|
    }
 | 
						|
} [
 | 
						|
    "23 0-20/2 * * *" parse-cronentry
 | 
						|
    T{ timestamp
 | 
						|
        { year 2018 }
 | 
						|
        { month 3 }
 | 
						|
        { day 9 }
 | 
						|
        { hour 12 }
 | 
						|
        { minute 6 }
 | 
						|
        { gmt-offset T{ duration { hour -8 } } }
 | 
						|
    } [ next-time-after ] keep
 | 
						|
] unit-test
 |