summaryrefslogtreecommitdiff
path: root/test/rake/test_rake_dsl.rb
diff options
context:
space:
mode:
Diffstat (limited to 'test/rake/test_rake_dsl.rb')
-rw-r--r--test/rake/test_rake_dsl.rb40
1 files changed, 0 insertions, 40 deletions
diff --git a/test/rake/test_rake_dsl.rb b/test/rake/test_rake_dsl.rb
deleted file mode 100644
index ad52f760b6..0000000000
--- a/test/rake/test_rake_dsl.rb
+++ /dev/null
@@ -1,40 +0,0 @@
-require File.expand_path('../helper', __FILE__)
-
-class TestRakeDsl < Rake::TestCase
-
- def setup
- super
- Rake::Task.clear
- end
-
- def test_namespace_command
- namespace "n" do
- task "t"
- end
- refute_nil Rake::Task["n:t"]
- end
-
- def test_namespace_command_with_bad_name
- ex = assert_raises(ArgumentError) do
- namespace 1 do end
- end
- assert_match(/string/i, ex.message)
- assert_match(/symbol/i, ex.message)
- end
-
- def test_namespace_command_with_a_string_like_object
- name = Object.new
- def name.to_str
- "bob"
- end
- namespace name do
- task "t"
- end
- refute_nil Rake::Task["bob:t"]
- end
-
- def test_no_commands_constant
- assert ! defined?(Commands), "should not define Commands"
- end
-
-end