mirror of
https://github.com/neocities/neocities.git
synced 2025-08-21 08:34:24 +02:00
10 lines
No EOL
210 B
Ruby
10 lines
No EOL
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 |