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