aboutsummaryrefslogtreecommitdiffstats
path: root/spec/rubyspec/core/time/shared/asctime.rb
blob: d09666686369803b0e8d3aedc9d050b15e22b0c3 (plain)
1
2
3
4
5
6
describe :time_asctime, shared: true do
  it "returns a canonical string representation of time" do
    t = Time.now
    t.send(@method).should == t.strftime("%a %b %e %H:%M:%S %Y")
  end
end