null+****@clear*****
null+****@clear*****
2012年 6月 6日 (水) 13:38:13 JST
Haruka Yoshihara 2012-06-06 13:38:13 +0900 (Wed, 06 Jun 2012)
New Revision: ff2a17319b75f383a2ec35ba38fe1e0c46cbc6ca
Log:
test: remove needless "command" keyword from test names
Modified files:
test/test-executor.rb
Modified: test/test-executor.rb (+2 -2)
===================================================================
--- test/test-executor.rb 2012-06-06 13:34:41 +0900 (d27e484)
+++ test/test-executor.rb 2012-06-06 13:38:13 +0900 (e8bd436)
@@ -67,7 +67,7 @@ class TestExecutor < Test::Unit::TestCase
assert_equal(expected_url, actual_url)
end
- def test_command_with_argument_name
+ def test_with_argument_name
command = "select --table Sites"
actual_url = convert(command)
expected_url = build_url("select", "table" => "Sites")
@@ -75,7 +75,7 @@ class TestExecutor < Test::Unit::TestCase
assert_equal(expected_url, actual_url)
end
- def test_command_without_arguments
+ def test_without_arguments
command = "dump"
actual_url = convert(command)
expected_url = build_url(command, {})