Files
neocities/tests/ext_tests.rb
T
2025-08-13 00:10:05 -05:00

10 lines
210 B
Ruby

# frozen_string_literal: true
require_relative './environment.rb'
describe Time do
describe 'ago' do
it 'should return the modified value' do
_(Time.now.ago).must_equal 'just now'
end
end
end