summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog7
-rw-r--r--test/monitor/test_monitor.rb2
-rw-r--r--test/resolv/test_dns.rb4
-rw-r--r--test/rexml/test_functions.rb1
-rw-r--r--test/rss/test_setup_maker_itunes.rb1
5 files changed, 10 insertions, 5 deletions
diff --git a/ChangeLog b/ChangeLog
index 1e95deb350..d650c8af2f 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -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 " +