require "test/unit" require "nitro/utils/http" class TC_HttpUtils < Test::Unit::TestCase # :nodoc: all def setup end def teardown end def test_time_to_string r = N::HttpUtils.time_to_string(Time.now) assert_match(/GMT/, r) end end