mirror of
https://github.com/neocities/neocities.git
synced 2026-05-26 17:55:08 +00:00
10 lines
210 B
Ruby
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 |