summaryrefslogtreecommitdiff
path: root/spec/rubyspec/core/time/wednesday_spec.rb
diff options
context:
space:
mode:
Diffstat (limited to 'spec/rubyspec/core/time/wednesday_spec.rb')
-rw-r--r--spec/rubyspec/core/time/wednesday_spec.rb11
1 files changed, 0 insertions, 11 deletions
diff --git a/spec/rubyspec/core/time/wednesday_spec.rb b/spec/rubyspec/core/time/wednesday_spec.rb
deleted file mode 100644
index 8e836e3e02..0000000000
--- a/spec/rubyspec/core/time/wednesday_spec.rb
+++ /dev/null
@@ -1,11 +0,0 @@
-require File.expand_path('../../../spec_helper', __FILE__)
-
-describe "Time#wednesday?" do
- it "returns true if time represents Wednesday" do
- Time.local(2000, 1, 5).wednesday?.should == true
- end
-
- it "returns false if time doesn't represent Wednesday" do
- Time.local(2000, 1, 1).wednesday?.should == false
- end
-end