neocities/tests/ext_tests.rb
2022-08-10 14:31:36 -05:00

9 lines
No EOL
180 B
Ruby

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