Sha256: 0470ad2b08e212f868a438fe0df446071c57090f914ea6cca51a92f0b7cd3af5

Contents?: true

Size: 547 Bytes

Versions: 44

Compression:

Stored size: 547 Bytes

Contents

require File.expand_path('../../test_helper', __FILE__)
require 'mocha/inspect'

class DateTimeInspectTest < Test::Unit::TestCase

  def test_should_use_include_date_in_seconds
    time = Time.now
    assert_equal "#{time.inspect} (#{time.to_f} secs)", time.mocha_inspect
  end

  def test_should_use_to_s_for_date
    date = Date.new(2006, 1, 1)
    assert_equal date.to_s, date.mocha_inspect
  end

  def test_should_use_to_s_for_datetime
    datetime = DateTime.new(2006, 1, 1)
    assert_equal datetime.to_s, datetime.mocha_inspect
  end

end

Version data entries

44 entries across 36 versions & 3 rubygems

Version Path
mocha-0.11.3 test/unit/date_time_inspect_test.rb
mocha-0.11.2 test/unit/date_time_inspect_test.rb
mocha-0.11.1 test/unit/date_time_inspect_test.rb
mocha-0.11.0 test/unit/date_time_inspect_test.rb