diff options
author | hsbt <hsbt@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2014-02-21 01:53:38 +0000 |
---|---|---|
committer | hsbt <hsbt@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2014-02-21 01:53:38 +0000 |
commit | 569172765302d6b60a64e6499ba95973cd756ea3 (patch) | |
tree | 247c9dad7cd42a8b6925c4dfee629acd26518977 | |
parent | d691a28d914e7e5152b7dc3f47da1baaf684fbfb (diff) | |
download | ruby-569172765302d6b60a64e6499ba95973cd756ea3.tar.gz |
* test/monitor/test_monitor.rb: remove unused variabels.
* test/resolv/test_dns.rb: ditto.
* test/rexml/test_functions.rb: ditto.
* test/rss/test_setup_maker_itunes.rb: ditto.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@45067 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-rw-r--r-- | ChangeLog | 7 | ||||
-rw-r--r-- | test/monitor/test_monitor.rb | 2 | ||||
-rw-r--r-- | test/resolv/test_dns.rb | 4 | ||||
-rw-r--r-- | test/rexml/test_functions.rb | 1 | ||||
-rw-r--r-- | test/rss/test_setup_maker_itunes.rb | 1 |
5 files changed, 10 insertions, 5 deletions
@@ -1,3 +1,10 @@ +Fri Feb 21 10:39:33 2014 SHIBATA Hiroshi <shibata.hiroshi@gmail.com> + + * test/monitor/test_monitor.rb: remove unused variabels. + * test/resolv/test_dns.rb: ditto. + * test/rexml/test_functions.rb: ditto. + * test/rss/test_setup_maker_itunes.rb: ditto. + Fri Feb 21 09:48:56 2014 Eric Wong <e@80x24.org> * ext/socket/ancdata.c (bsock_sendmsg_internal): only retry on error diff --git a/test/monitor/test_monitor.rb b/test/monitor/test_monitor.rb index 8591570b70..1d70222b44 100644 --- a/test/monitor/test_monitor.rb +++ b/test/monitor/test_monitor.rb @@ -83,7 +83,7 @@ class TestMonitor < Test::Unit::TestCase def test_try_enter queue1 = Queue.new queue2 = Queue.new - th = Thread.start { + Thread.start { queue1.deq @monitor.enter queue2.enq(nil) diff --git a/test/resolv/test_dns.rb b/test/resolv/test_dns.rb index 07396fb177..82f37f9e6a 100644 --- a/test/resolv/test_dns.rb +++ b/test/resolv/test_dns.rb @@ -38,7 +38,7 @@ class TestResolvDNS < Test::Unit::TestCase dns.getresources("foo.example.org", Resolv::DNS::Resource::IN::A) } } - msg, (af, client_port, _, client_address) = u.recvfrom(4096) + msg, (_, client_port, _, client_address) = u.recvfrom(4096) id, word2, qdcount, ancount, nscount, arcount = msg.unpack("nnnnnn") qr = (word2 & 0x8000) >> 15 opcode = (word2 & 0x7800) >> 11 @@ -65,7 +65,7 @@ class TestResolvDNS < Test::Unit::TestCase assert_operator(rest, :start_with?, name) rest = rest[name.length..-1] assert_equal(4, rest.length) - qtype, qclass = rest.unpack("nn") + qtype, _ = rest.unpack("nn") assert_equal(1, qtype) # A assert_equal(1, qtype) # IN id = id diff --git a/test/rexml/test_functions.rb b/test/rexml/test_functions.rb index 082d772e23..2b14e0a6ad 100644 --- a/test/rexml/test_functions.rb +++ b/test/rexml/test_functions.rb @@ -83,7 +83,6 @@ class FunctionsTester < Test::Unit::TestCase # examples from http://www.w3.org/TR/xpath#function-substring doc = Document.new('<test string="12345" />') - d = Document.new("<a b='1'/>") #puts XPath.first(d, 'node()[0 + 1]') #d = Document.new("<a b='1'/>") #puts XPath.first(d, 'a[0 mod 0]') diff --git a/test/rss/test_setup_maker_itunes.rb b/test/rss/test_setup_maker_itunes.rb index 509d94f13b..246fecf4c0 100644 --- a/test/rss/test_setup_maker_itunes.rb +++ b/test/rss/test_setup_maker_itunes.rb @@ -13,7 +13,6 @@ module RSS duration_components = [0, 4, 5] explicit = true keywords = ["salt", "pepper", "shaker", "exciting"] - new_feed_url = "http://newlocation.com/example.rss" owner = {:name => "John Doe", :email => "john.doe@example.com"} subtitle = "A show about everything" summary = "All About Everything is a show about " + |