aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/test/string_questioneer_test.rb
diff options
context:
space:
mode:
Diffstat (limited to 'activesupport/test/string_questioneer_test.rb')
-rw-r--r--activesupport/test/string_questioneer_test.rb15
1 files changed, 0 insertions, 15 deletions
diff --git a/activesupport/test/string_questioneer_test.rb b/activesupport/test/string_questioneer_test.rb
deleted file mode 100644
index 51a7e399e7..0000000000
--- a/activesupport/test/string_questioneer_test.rb
+++ /dev/null
@@ -1,15 +0,0 @@
-require 'abstract_unit'
-
-class StringQuestioneerTest < Test::Unit::TestCase
- def test_match
- assert ActiveSupport::StringQuestioneer.new("production").production?
- end
-
- def test_miss
- assert !ActiveSupport::StringQuestioneer.new("production").development?
- end
-
- def test_missing_question_mark
- assert_raises(NoMethodError) { ActiveSupport::StringQuestioneer.new("production").production }
- end
-end \ No newline at end of file