squealer 2.1.1 → 2.2.0

Sign up to get free protection for your applications and to get access to all the features.
data/lib/squealer/time.rb DELETED
@@ -1,5 +0,0 @@
1
- class Time
2
- def to_s
3
- strftime("%Y-%m-%d %H:%M:%S %Z")
4
- end
5
- end
@@ -1,10 +0,0 @@
1
- require 'spec_helper'
2
-
3
- describe Time do
4
-
5
- describe "#to_s" do
6
- it "uses a MySQL compliant format" do
7
- Time.gm(2000,"Jan",31).to_s.should == "2000-01-31 00:00:00 UTC"
8
- end
9
- end
10
- end