2021-11-18 15:44:09 +01:00
|
|
|
# coding: utf-8
|
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
require 'test/unit'
|
|
|
|
|
2022-02-15 17:06:19 +01:00
|
|
|
require 'rpl'
|
2021-11-18 15:44:09 +01:00
|
|
|
|
2021-11-23 13:00:42 +01:00
|
|
|
class TestLanguageTimeDate < Test::Unit::TestCase
|
2021-11-18 15:44:09 +01:00
|
|
|
def test_time
|
|
|
|
now = Time.now.to_s
|
2022-02-10 14:50:59 +01:00
|
|
|
interpreter = Rpl.new
|
2022-02-09 13:38:32 +01:00
|
|
|
interpreter.run 'time'
|
2021-11-18 15:44:09 +01:00
|
|
|
|
2022-01-26 18:30:51 +01:00
|
|
|
assert_equal [{ value: now, type: :string }],
|
2022-02-09 13:38:32 +01:00
|
|
|
interpreter.stack
|
2021-11-18 15:44:09 +01:00
|
|
|
end
|
|
|
|
|
|
|
|
def test_date
|
|
|
|
now = Date.today.to_s
|
2022-02-10 14:50:59 +01:00
|
|
|
interpreter = Rpl.new
|
2022-02-09 13:38:32 +01:00
|
|
|
interpreter.run 'date'
|
2021-11-18 15:44:09 +01:00
|
|
|
|
2022-01-26 18:30:51 +01:00
|
|
|
assert_equal [{ value: now, type: :string }],
|
2022-02-09 13:38:32 +01:00
|
|
|
interpreter.stack
|
2021-11-18 15:44:09 +01:00
|
|
|
end
|
|
|
|
|
|
|
|
def test_ticks
|
2022-02-10 14:50:59 +01:00
|
|
|
interpreter = Rpl.new
|
2022-02-09 13:38:32 +01:00
|
|
|
interpreter.run 'ticks'
|
2021-11-18 15:44:09 +01:00
|
|
|
|
|
|
|
# TODO: better test, but how?
|
|
|
|
assert_equal :numeric,
|
2022-02-09 13:38:32 +01:00
|
|
|
interpreter.stack[0][:type]
|
2021-11-18 15:44:09 +01:00
|
|
|
end
|
|
|
|
end
|